From 20b6eaab921f924d9de97d1c72b7c2cdbb6cb907 Mon Sep 17 00:00:00 2001 From: luseverin <91593121+luseverin@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:23:23 +0100 Subject: [PATCH 1/5] Add files via upload Scripts to reproduce results from the publication: Projections and uncertainties of winter windstorm damage in Europe in a changing climate --- .../1_load_process_data.ipynb | 1787 + .../2_damage_calc.ipynb | 68420 ++++++++++++++++ .../3_uncertainty-sensitivity_analyses.ipynb | 1408 + .../README.md | 49 + .../SL_bias_corr.py | 229 + .../constants.py | 67 + .../data/_metadata_countries_v1_2.csv | 251 + .../data/emdat_EU_1960_2022_ETC.xlsx | Bin 0 -> 39710 bytes .../functions_projUncWS.py | 180 + 9 files changed, 72391 insertions(+) create mode 100644 2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb create mode 100644 2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb create mode 100644 2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb create mode 100644 2024_03_winterstorms_projections_Europe/README.md create mode 100644 2024_03_winterstorms_projections_Europe/SL_bias_corr.py create mode 100644 2024_03_winterstorms_projections_Europe/constants.py create mode 100644 2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv create mode 100644 2024_03_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx create mode 100644 2024_03_winterstorms_projections_Europe/functions_projUncWS.py diff --git a/2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb b/2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb new file mode 100644 index 0000000..8fc7bbf --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb @@ -0,0 +1,1787 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "0714aa7b-70f7-4cc4-ac8b-ab7af7e6fbab", + "metadata": {}, + "source": [ + "# Projections and uncertainties of future winter windstorm damage in Europe \n", + "## Notebook 1: Data Processing\n", + "\n", + "This notebook loads, preprocesses, and bias corrects the data required to reproduce the results from the publication Projections and uncertainties of future winter windstorm damage in Europe. Data is taken from the ETH data archive which is linked to the ESGF catalogue, but is not available to the public. However the code can be adapted to any other data archive containing CMIP6 files under netcdf format. Parts of the code has been taken and adapted from the package CASanalysis (https://github.com/islasimpson/CASanalysis) to read the netcdf, and from https://github.com/samluethi/HeatMortality2021/blob/main/Data_preparation/bias_correction.py for the bias-correction." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "empty-texas", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:57:53.733979Z", + "iopub.status.busy": "2023-01-08T13:57:53.733438Z", + "iopub.status.idle": "2023-01-08T13:57:56.139956Z", + "shell.execute_reply": "2023-01-08T13:57:56.139077Z", + "shell.execute_reply.started": "2023-01-08T13:57:53.733830Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#load libraries\n", + "import importlib\n", + "import pandas as pd\n", + "import xarray as xr\n", + "import numpy as np\n", + "import datetime as dt\n", + "from numpy import nan\n", + "from constants import *\n", + "import sys\n", + "import warnings\n", + "import math\n", + "import os\n", + "import cftime\n", + "from glob import glob\n", + "from timeit import default_timer as timer # try to measure time\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "5e2c17e2-ae0b-4537-998d-406d01e800c9", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:04:52.292987Z", + "iopub.status.busy": "2023-01-08T14:04:52.292498Z", + "iopub.status.idle": "2023-01-08T14:04:52.316144Z", + "shell.execute_reply": "2023-01-08T14:04:52.315579Z", + "shell.execute_reply.started": "2023-01-08T14:04:52.292923Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# define functions\n", + "def read_sfc(filepath, datestart, dateend):\n", + " \"\"\"Read in a time slice of a surface field from datestart to dateend.\n", + " Try using datetime64 and if that doesn't work decode times manually.\n", + " Args:\n", + " filepath (string) = directory where files are located\n", + " datestart (string) = start date for time slice\n", + " dateend (string) = end date for time slice\n", + " \"\"\"\n", + "\n", + " #First try opening and doing the select assuming everything is working ok with the time axis\n", + " try:\n", + " dat = \\\n", + " xr.open_mfdataset\\\n", + " (filepath, coords=\"minimal\", join=\"override\", decode_times=True, use_cftime=True).\\\n", + " sel(time=slice(datestart, dateend))\n", + " try:\n", + " dat=dat.rename({\"longitude\":\"lon\", \"latitude\":\"lat\"}) #problematic coord names\n", + " print(\"changing longitude --> lon, latitude --> lat\")\n", + " except: pass\n", + "\n", + " except:\n", + " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\", decode_times = False)\n", + " try:\n", + " dat=dat.rename({\"longitude\":\"lon\", \"latitude\":\"lat\"}) #problematic coord names\n", + " except: pass\n", + "\n", + " dat = xr.decode_cf(dat, use_cftime = True)\n", + " dat = dat.sel(time=slice(datestart, dateend))\n", + " datetimeindex = dat.indexes['time'].to_datetimeindex()\n", + " dat['time'] = datetimeindex\n", + " print(\"Something's wierd about the time axis, decoding manually\")\n", + "\n", + " return dat\n", + "\n", + "def read_field_v0(filepath, datestart, dateend,latmin,latmax,plev):\n", + " \"\"\"Read in a time slice from datestart to dateend and calculate the zonal mean.\n", + " Try using datetime64 and if that doesn't work decode times manually.\n", + " Args:\n", + " filepath (string) = path to files e.g., \"/path/to/files/*.nc\"\n", + " datestart (string) = start date for time slice\n", + " dateend (string) = end date for time slice\n", + " \"\"\"\n", + "\n", + " try:\n", + " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", + " decode_times=True, use_cftime=True)\n", + "\n", + " except:\n", + " \n", + " print(\"Something's wierd about the time axis, decoding manually\")\n", + " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", + " decode_times=False)\n", + "\n", + " dat=xr.decode_cf(dat, use_cftime=True)\n", + " datetimeindex=dat.indexes['time'].to_datetimeindex()\n", + " dat['time'] = datetimeindex\n", + " \n", + " dat=dat.sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),plev=plev)\n", + " return dat\n", + "\n", + "def read_field(filepath, datestart, dateend,latmin,latmax,lonmin,lonmax,plev):\n", + " \"\"\"Read in a time slice from datestart to dateend and calculate the zonal mean.\n", + " Try using datetime64 and if that doesn't work decode times manually.\n", + " Args:\n", + " filepath (string) = path to files e.g., \"/path/to/files/*.nc\"\n", + " datestart (string) = start date for time slice\n", + " dateend (string) = end date for time slice\n", + " \"\"\"\n", + "\n", + " try:\n", + " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", + " decode_times=True, use_cftime=True).\\\n", + " sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax))\n", + " \n", + " if len(plev) == 1:\n", + " dat = dat.sel(plev=plev,method=\"nearest\", tolerance=1) #avoid issue for models with inaccurate plevs\n", + " else:\n", + " dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method=\"nearest\" is not implemented for slices\n", + "\n", + " except:\n", + " print(\"Something's wierd about the time axis, decoding manually\")\n", + " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", + " decode_times=False)\n", + " \n", + " dat=xr.decode_cf(dat, use_cftime=True)\n", + " \n", + " dat=dat.sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax))\n", + " if len(plev) == 1:\n", + " dat = dat.sel(plev=plev,method=\"nearest\", tolerance=1) #avoid issue for models with inaccurate plevs\n", + " else:\n", + " dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method=\"nearest\" is not implemented for slices\n", + "\n", + " datetimeindex=dat.indexes['time'].to_datetimeindex()\n", + " dat['time'] = datetimeindex\n", + "\n", + " return dat\n", + "\n", + "def get_lat_lon_res(ds):\n", + " \"\"\"Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. \n", + " Args:\n", + " ds (xr.dataset or xr.dataarry) = input dataset from which average lat and lon resolutions must be calculated\n", + " Ouputs:\n", + " latres, lonres = average latitudinal and longitudinal resolutions\n", + " \"\"\"\n", + " lat = ds.coords['lat']\n", + " lon = ds.coords['lon']\n", + " difflat = lat - lat.shift(lat=1)\n", + " latres = difflat.mean().to_numpy()\n", + " difflon = lon - lon.shift(lon=1)\n", + " lonres = difflon.mean().to_numpy()\n", + " return latres, lonres\n", + "\n", + "def def_domain(ds,min_lat,max_lat,min_lon,max_lon):\n", + " \"\"\"Function that takes xr.dataset or xr.dataarry and box coordinates from a domain and crops the dataset or datarray to \n", + " the domain defined by the box coordinates.\n", + " Args:\n", + " ds (xr.dataset or xr.dataarry) = input dataset which lat and lon needs to be cropped\n", + " min_lat, max_lat = minimum and maximum latitudinal coordinates\n", + " min_lon, max_lon = minimum and maximum longitudinal coordinates\n", + " Ouputs:\n", + " ds = xr.dataset or xr.dataarry cropped to the input domain\n", + " \"\"\"\n", + " LatIndexer, LonIndexer = 'lat', 'lon'\n", + " ds = ds.loc[{LatIndexer: slice(min_lat, max_lat),\n", + " LonIndexer: slice(min_lon, max_lon)}]\n", + " return ds\n", + "\n", + "def norm_lon(ds):\n", + " \"\"\"Function that takes xr.dataset or xr.dataarry and normalizes its longitude coordinate\n", + " Args:\n", + " ds (xr.dataset or xr.dataarry) = input dataset which lon coordinates needs to be normalized\n", + " \n", + " Ouputs:\n", + " ds = xr.dataset or xr.dataarry with normalized lon coordinates\n", + " \"\"\"\n", + " ds.coords['lon'] = (ds.coords['lon'] + 180) % 360 - 180\n", + " return ds.sortby(ds.lon)\n", + "\n", + "def get_ONDJFM_day(ds, months=[1,2,3,10,11,12],timedim=\"day\"):\n", + " \"\"\"Function that takes xr.dataset or xr.dataarry and months of the year and returns a dataset corresponding to\n", + " the specified months\n", + " Args:\n", + " ds (xr.dataset or xr.dataarry) = input dataset from which monthly data needs to be selected\n", + " months = months which are requested, in ordinal format (1=January, 2=February, ...,12=December)\n", + " timedim = name of the temporal coordinate of the dataset\n", + " \n", + " Ouputs:\n", + " ds = xr.dataset or xr.dataarry corresponding to the months selected\n", + " \"\"\"\n", + " return ds.isel({timedim:ds[timedim].dt.month.isin(months)})\n", + "\n", + "def make_fn(addlist,basename=\"\",sep=\"_\",filetype=''):\n", + " return sep.join(addlist)+sep+basename+filetype" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "b9d8a13c-f1a6-426b-8c39-8da28dfd9c37", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:04:54.099460Z", + "iopub.status.busy": "2023-01-08T14:04:54.099084Z", + "iopub.status.idle": "2023-01-08T14:04:54.105098Z", + "shell.execute_reply": "2023-01-08T14:04:54.104203Z", + "shell.execute_reply.started": "2023-01-08T14:04:54.099411Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#setup folders and folder variables. \n", + "# All these variables need to be defined correctly for the code to work.\n", + "# The strings in these variables should point to existing folders on your computer.\n", + "project_folder = '/home/lseverino/MT/scripts MTP'\n", + "data_folder = '/home/lseverino/MT/scripts MTP/data/' #this folder will contain the netcdf files downloaded by this script\n", + "results_folder = '/home/lseverino/MT/scripts MTP/results2/' #this folder will contain results (e.g. climada impact data) \n", + " # produced by this script\n", + "file_identifier = '_v01' # this string is added to all files written by this code" + ] + }, + { + "cell_type": "markdown", + "id": "143c95f9-6df6-4b65-bd34-a0b01f4c9e3a", + "metadata": {}, + "source": [ + "## Check available data in the ETH data archive" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "vocational-keeping", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:57:56.478772Z", + "iopub.status.busy": "2023-01-08T13:57:56.478421Z", + "iopub.status.idle": "2023-01-08T13:57:56.485557Z", + "shell.execute_reply": "2023-01-08T13:57:56.484644Z", + "shell.execute_reply.started": "2023-01-08T13:57:56.478727Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## constants\n", + "#paths from cmip6 data for each experiments\n", + "histpath=\"/net/atmos/data/cmip6/historical/\"\n", + "ssp119path=\"/net/atmos/data/cmip6/ssp119/\"\n", + "ssp126path=\"/net/atmos/data/cmip6/ssp126/\"\n", + "ssp245path=\"/net/atmos/data/cmip6/ssp245/\"\n", + "ssp370path=\"/net/atmos/data/cmip6/ssp370/\"\n", + "ssp585path=\"/net/atmos/data/cmip6/ssp585/\"\n", + "\n", + "scenlist = [\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"]\n", + "pathlist = [histpath,ssp126path,ssp245path,ssp370path,ssp585path]\n", + "pathdic = {\"historical\":histpath,\"ssp126\":ssp126path,\"ssp245\":ssp245path,\"ssp370\":ssp370path,\"ssp585\":ssp585path}\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "political-cassette", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:57:57.075535Z", + "iopub.status.busy": "2023-01-08T13:57:57.075204Z", + "iopub.status.idle": "2023-01-08T13:58:07.336690Z", + "shell.execute_reply": "2023-01-08T13:58:07.335913Z", + "shell.execute_reply.started": "2023-01-08T13:57:57.075492Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## check available data\n", + "#select data\n", + "tres = \"day/\" #daily data\n", + "var=\"sfcWindmax\" #select surface wind max variable\n", + "\n", + "# iterate within each subdir and get names and numbers of available members\n", + "dicscen = dict()\n", + "models_df = pd.DataFrame(columns=scenlist)\n", + "for ind,scen in enumerate(scenlist):\n", + " path = pathlist[ind]\n", + " dicscen[scen] = dict()\n", + " for subdir in os.scandir(path+tres+var):\n", + " #models_rcp85[subdir.name]=[]\n", + " dicscen[scen][subdir.name] = [len(os.listdir(subdir))]\n", + " dicscen[scen][subdir.name].append(os.listdir(subdir))\n", + " models_df.loc[subdir.name,scenlist[ind]] = len(os.listdir(subdir))\n", + "models_df.loc[\"total\",:] = models_df.count(axis=0)\n", + "nmems_hist = dicscen['historical']\n", + "nmems_ssp585 = dicscen['ssp585']\n", + "#turn dicts into pd DataFrames\n", + "nmems_hist_df = pd.DataFrame(nmems_hist, index=[\"hist\",\"memnames\"])\n", + "nmems_ssp585_df = pd.DataFrame(nmems_ssp585, index=[\"ssp585\",\"memnames\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "d5a49fc1-138d-44d2-9746-e3efab109494", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:58:11.874020Z", + "iopub.status.busy": "2023-01-08T13:58:11.873684Z", + "iopub.status.idle": "2023-01-08T13:58:11.889727Z", + "shell.execute_reply": "2023-01-08T13:58:11.889174Z", + "shell.execute_reply.started": "2023-01-08T13:58:11.873976Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
historicalssp126ssp245ssp370ssp585
ACCESS-CM222222
ACCESS-ESM1-54040404040
AWI-CM-1-1-MR51151
AWI-ESM-1-1-LR1NaNNaNNaNNaN
BCC-CSM2-MR11111
BCC-ESM11NaNNaN3NaN
CMCC-CM2-HR41NaNNaNNaNNaN
CMCC-CM2-SR5111111
CMCC-ESM211111
CNRM-CM6-1-HR11111
CNRM-CM6-1306666
CNRM-ESM2-11051035
CanESM55050505050
EC-Earth3-AerChem2NaNNaN3NaN
EC-Earth3-CC3NaN1NaN1
EC-Earth3-Veg-LR33333
EC-Earth3-Veg97868
EC-Earth32334333
FGOALS-f3-L3NaNNaNNaNNaN
FGOALS-g354454
GFDL-CM41NaN1NaN1
GFDL-ESM43111NaN
GISS-E2-1-G21211
HadGEM3-GC31-LL515NaN4
HadGEM3-GC31-MM41NaNNaN4
INM-CM4-811111
INM-CM5-0101151
IPSL-CM6A-LR33611117
KACE-1-0-G33333
MIROC-ES2L3110301010
MIROC6505050350
MPI-ESM-1-2-HAM3NaNNaN3NaN
MPI-ESM1-2-HR1022102
MPI-ESM1-2-LR3030303030
MRI-ESM2-0125556
NESM3522NaN2
NorCPM130NaNNaNNaNNaN
SAM0-UNICON1NaNNaNNaNNaN
UKESM1-0-LL18198198
GISS-E2-2-G2NaNNaNNaNNaN
total4029302930
\n", + "
" + ], + "text/plain": [ + " historical ssp126 ssp245 ssp370 ssp585\n", + "ACCESS-CM2 2 2 2 2 2\n", + "ACCESS-ESM1-5 40 40 40 40 40\n", + "AWI-CM-1-1-MR 5 1 1 5 1\n", + "AWI-ESM-1-1-LR 1 NaN NaN NaN NaN\n", + "BCC-CSM2-MR 1 1 1 1 1\n", + "BCC-ESM1 1 NaN NaN 3 NaN\n", + "CMCC-CM2-HR4 1 NaN NaN NaN NaN\n", + "CMCC-CM2-SR5 11 1 1 1 1\n", + "CMCC-ESM2 1 1 1 1 1\n", + "CNRM-CM6-1-HR 1 1 1 1 1\n", + "CNRM-CM6-1 30 6 6 6 6\n", + "CNRM-ESM2-1 10 5 10 3 5\n", + "CanESM5 50 50 50 50 50\n", + "EC-Earth3-AerChem 2 NaN NaN 3 NaN\n", + "EC-Earth3-CC 3 NaN 1 NaN 1\n", + "EC-Earth3-Veg-LR 3 3 3 3 3\n", + "EC-Earth3-Veg 9 7 8 6 8\n", + "EC-Earth3 23 3 43 3 3\n", + "FGOALS-f3-L 3 NaN NaN NaN NaN\n", + "FGOALS-g3 5 4 4 5 4\n", + "GFDL-CM4 1 NaN 1 NaN 1\n", + "GFDL-ESM4 3 1 1 1 NaN\n", + "GISS-E2-1-G 2 1 2 1 1\n", + "HadGEM3-GC31-LL 5 1 5 NaN 4\n", + "HadGEM3-GC31-MM 4 1 NaN NaN 4\n", + "INM-CM4-8 1 1 1 1 1\n", + "INM-CM5-0 10 1 1 5 1\n", + "IPSL-CM6A-LR 33 6 11 11 7\n", + "KACE-1-0-G 3 3 3 3 3\n", + "MIROC-ES2L 31 10 30 10 10\n", + "MIROC6 50 50 50 3 50\n", + "MPI-ESM-1-2-HAM 3 NaN NaN 3 NaN\n", + "MPI-ESM1-2-HR 10 2 2 10 2\n", + "MPI-ESM1-2-LR 30 30 30 30 30\n", + "MRI-ESM2-0 12 5 5 5 6\n", + "NESM3 5 2 2 NaN 2\n", + "NorCPM1 30 NaN NaN NaN NaN\n", + "SAM0-UNICON 1 NaN NaN NaN NaN\n", + "UKESM1-0-LL 18 19 8 19 8\n", + "GISS-E2-2-G 2 NaN NaN NaN NaN\n", + "total 40 29 30 29 30" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "models_df" + ] + }, + { + "cell_type": "markdown", + "id": "758e0873-d0c9-4e0b-8664-8a0ecb605808", + "metadata": {}, + "source": [ + "## Load daily sfcWindmax data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "3d3c8d2e-419c-4a94-9066-b4b5529f4b46", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:58:16.239358Z", + "iopub.status.busy": "2023-01-08T13:58:16.238964Z", + "iopub.status.idle": "2023-01-08T13:58:16.245927Z", + "shell.execute_reply": "2023-01-08T13:58:16.245109Z", + "shell.execute_reply.started": "2023-01-08T13:58:16.239316Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## select variables\n", + "#selvar = 'sfcWindmax'\n", + "var = 'sfcWindmax'\n", + "tres = 'day'\n", + "\n", + "#spatial domain, in degrees\n", + "min_lat=30\n", + "max_lat=75\n", + "min_lon=-30\n", + "max_lon=30\n", + "\n", + "#select scenarios\n", + "selscen = ['historical','ssp126','ssp245','ssp370','ssp585']\n", + "\n", + "#max number of members to download\n", + "nmems_max = 3\n", + "\n", + "#members to consider: r=realization, i=initialization, p=physics, f=forcing\n", + "rlist = [1,2,3] #pick first 3 realizations by default\n", + "memnamelist = [\"r\"+str(ri)+\"i1p1f1\" for ri in rlist] # use i=1, p=1, and f=1 as default\n", + "\n", + "## choose base name to save data\n", + "bnSWM = 'SWM_br_day_EU_winE' " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "neural-lawyer", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:58:17.495396Z", + "iopub.status.busy": "2023-01-08T13:58:17.495004Z", + "iopub.status.idle": "2023-01-08T13:58:17.598399Z", + "shell.execute_reply": "2023-01-08T13:58:17.597932Z", + "shell.execute_reply.started": "2023-01-08T13:58:17.495355Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## select dates\n", + "#consider ONJDFM: start in D, finishes in M, adjust to have same number of days in both periods\n", + "ybegp = 1980 ; monbegp = 10 ; yendp = 2010 ; monendp = 3 ; daybegp = 1 ; dayendp = 30# dates for Past period, only takes 30th \n", + "#ybegf = 2070 ; monbegf = 1 ; yendf = 2099 ; monendf = 12 ; daybegf = 1 ; dayendf = 31# dates for Future period\n", + "ybegf = 2070 ; monbegf = 10 ; yendf = 2100 ; monendf = 3 ; daybegf = 1 ; dayendf = 30# otherwise dont have the same length\n", + "\n", + "# total number of months (used for checking)\n", + "nmonthsp = (yendp-ybegp-1)*12 + (12-monbegp+1) + monendp\n", + "nmonthsf = (yendf-ybegf-1)*12 + (12-monbegf+1) + monendf\n", + "\n", + "# set up date names\n", + "dateformat ='%Y-%m-%d'\n", + "\n", + "datebegp=str(ybegp)+\"-\"+str(monbegp).zfill(2)+\"-\"+str(daybegp).zfill(2)\n", + "dateendp=str(yendp)+\"-\"+str(monendp).zfill(2)+\"-\"+str(dayendp).zfill(2)\n", + "datebegf=str(ybegf)+\"-\"+str(monbegf).zfill(2)+\"-\"+str(daybegf).zfill(2)\n", + "dateendf=str(yendf)+\"-\"+str(monendf).zfill(2)+\"-\"+str(dayendf).zfill(2)\n", + "\n", + "#set up daterange indexes\n", + "daysidp = xr.cftime_range(datebegp,dateendp,freq='D',calendar='standard')\n", + "daysidf = xr.cftime_range(datebegf,dateendf,freq='D',calendar='standard')\n", + "\n", + "#nb of days\n", + "ndaysp = len(daysidp)\n", + "ndaysf = len(daysidf)\n", + "\n", + "dayrangep = np.arange(1,ndaysp+1,1)\n", + "dayrangef = np.arange(1,ndaysf+1,1)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "russian-package", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:59:57.986064Z", + "iopub.status.busy": "2023-01-08T13:59:57.985641Z", + "iopub.status.idle": "2023-01-08T13:59:57.998927Z", + "shell.execute_reply": "2023-01-08T13:59:57.998355Z", + "shell.execute_reply.started": "2023-01-08T13:59:57.986012Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## select models\n", + "#take models that have at least 3 members per scenario\n", + "modlist = ['CanESM5','IPSL-CM6A-LR']\n", + "\n", + "#create pandas dataframe to save memnames\n", + "iterrows = [modlist_allscen+modlist_ssp585,[i for i in range(nmems_max)]]\n", + "rowid = pd.MultiIndex.from_product(iterrows,names=[\"model\",\"member\"])\n", + "memname_df = pd.DataFrame(index=rowid, columns=scenlist)\n", + "memnames_fn = \"memnames_SWM.csv\" #savename for csv\n", + "\n", + "#or load already saved csv\n", + "#memname_df = pd.read_csv(data_folder+memnames_fn,header=[0],index_col=[0,1])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "2df8d96e-4d62-4e62-b947-3a53e595d200", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:05:40.246723Z", + "iopub.status.busy": "2023-01-08T14:05:40.246341Z", + "iopub.status.idle": "2023-01-08T14:23:15.374824Z", + "shell.execute_reply": "2023-01-08T14:23:15.374111Z", + "shell.execute_reply.started": "2023-01-08T14:05:40.246674Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing historical for CanESM5 r1i1p1f1...\n", + "Processing historical for CanESM5 r2i1p1f1...\n", + "Processing historical for CanESM5 r3i1p1f1...\n", + "56.78150917496532\n", + "Processing ssp126 for CanESM5 r1i1p1f1...\n", + "Processing ssp126 for CanESM5 r2i1p1f1...\n", + "Processing ssp126 for CanESM5 r3i1p1f1...\n", + "180.84883580496535\n", + "Processing ssp245 for CanESM5 r1i1p1f1...\n", + "Processing ssp245 for CanESM5 r2i1p1f1...\n", + "Processing ssp245 for CanESM5 r3i1p1f1...\n", + "275.05035652406514\n", + "Processing ssp370 for CanESM5 r1i1p1f1...\n", + "Processing ssp370 for CanESM5 r2i1p1f1...\n", + "Processing ssp370 for CanESM5 r3i1p1f1...\n", + "367.2344959098846\n", + "Processing ssp585 for CanESM5 r1i1p1f1...\n", + "Processing ssp585 for CanESM5 r2i1p1f1...\n", + "Processing ssp585 for CanESM5 r3i1p1f1...\n", + "481.6006460310891\n", + "Processing historical for IPSL-CM6A-LR r1i1p1f1...\n", + "Processing historical for IPSL-CM6A-LR r2i1p1f1...\n", + "Processing historical for IPSL-CM6A-LR r3i1p1f1...\n", + "151.94626605371013\n", + "Processing ssp126 for IPSL-CM6A-LR r1i1p1f1...\n", + "Processing ssp126 for IPSL-CM6A-LR r2i1p1f1...\n", + "Processing ssp126 for IPSL-CM6A-LR r3i1p1f1...\n", + "257.0455407151021\n", + "Processing ssp245 for IPSL-CM6A-LR r1i1p1f1...\n", + "Processing ssp245 for IPSL-CM6A-LR r2i1p1f1...\n", + "Processing ssp245 for IPSL-CM6A-LR r3i1p1f1...\n", + "366.93790220702067\n", + "Processing ssp370 for IPSL-CM6A-LR r1i1p1f1...\n", + "Processing ssp370 for IPSL-CM6A-LR r2i1p1f1...\n", + "Processing ssp370 for IPSL-CM6A-LR r3i1p1f1...\n", + "466.1052633570507\n", + "Processing ssp585 for IPSL-CM6A-LR r1i1p1f1...\n", + "Processing ssp585 for IPSL-CM6A-LR r2i1p1f1...\n", + "Processing ssp585 for IPSL-CM6A-LR r3i1p1f1...\n", + "573.4868086921051\n" + ] + } + ], + "source": [ + "##open load and process ncdf\n", + "\n", + "for index, modname in enumerate(modlist):\n", + " start_time = timer()\n", + " #select nb of members to consider\n", + " if modname in modlist_allscen:\n", + " nmems = nmems_max #take nmems_max members at most\n", + " else:\n", + " nmems_av = models_df.loc[modname,['historical','ssp585']].min() #only consider members when available for both hist and ssp585\n", + " nmems = min(nmems_av,nmems_max) #take all members if below nmems_max, and nmems_max otherwise\n", + " \n", + " \n", + " for scen in selscen:\n", + " #select path\n", + " scenpath = pathdic[scen]\n", + " \n", + " #get nb of available members and their names\n", + " memdic = dicscen[scen][modname]\n", + " memnb = memdic[0]\n", + " memnames = memdic[1]\n", + " memout=np.arange(0,nmems) \n", + " mem_av = 0\n", + " \n", + " #pick the correct dates\n", + " if scen == 'historical':\n", + " datebeg = datebegp\n", + " dateend = dateendp\n", + " else: \n", + " datebeg = datebegf\n", + " dateend = dateendf\n", + " \n", + " for imem in range(nmems):\n", + " memname = memnamelist[imem]\n", + " if memname in memnames:\n", + " print(\"Processing \"+scen+\" for \"+modname+\" \"+memname+\"...\")\n", + " #count member actually available\n", + " mem_av = mem_av + 1\n", + " memname_df.loc[(modname,imem),scen] = memname\n", + " else:\n", + " print('Member: ' + memname + 'not available for model: '+modname+' and scen '+ scen)\n", + " continue\n", + "\n", + " scendir = glob(scenpath+tres+\"/\"+var+\"/\"+modname+\"/\"+memname+\"/*/\")\n", + " scendir = scendir[0]\n", + " \n", + " #read data \n", + " u=read_sfc(scendir+\"*.nc\", datebeg,dateend)\n", + " uread = u[var]\n", + " \n", + " # get days index as models can have different calendars\n", + " daysid = uread.time\n", + " ndays = len(daysid)\n", + " \n", + " #get grid spec (only if first member and keep same specs for following members)\n", + " if imem==0: \n", + " \n", + " #use source horizontal resolution of the first member, assuming all members have the same resolution\n", + " latout = uread.lat\n", + " lonout = uread.lon\n", + " \n", + " #initialize empty array\n", + " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]), \n", + " coords=[daysid, latout, lonout, memout],dims=['time','lat','lon','member'], name=scen)\n", + " \n", + " #write into da\n", + " uread = uread.rename({'time': 'time_o'}) #rename to avoid conflicts between indexing and indexed objects\n", + " \n", + " try:\n", + " uzmem.loc[dict(member=imem)]=uread\n", + " except IndexError:#if index error, interpolate on the grid of the target data array\n", + " lati = uzmem.lat\n", + " loni = uzmem.lon\n", + " uread = uread.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", + " uzmem.loc[dict(member=imem)]=uread\n", + "\n", + " \n", + " \n", + " #del objects to speed up things?\n", + " del u\n", + " del uread\n", + " \n", + " #skip rest if no members were found\n", + " if mem_av==0:\n", + " continue\n", + " \n", + " \n", + " ## processings\n", + " # normalize longitude\n", + " uzmemn = norm_lon(uzmem)\n", + " \n", + " #interpolate nans at 0deg longitude\n", + " if np.any(np.isnan(uzmemn.dropna(dim=\"time\",how='all'))):\n", + " print('interpolating nans...')\n", + " uzmemn = uzmemn.interpolate_na(dim=\"lon\", method=\"linear\")\n", + " \n", + " #crop to EU domain\n", + " Usfc_EU = def_domain(uzmemn,min_lat,max_lat,min_lon,max_lon)\n", + " \n", + " #set time indexes\n", + " dayrange = np.arange(1,ndays+1,1)\n", + " Usfc_EU = Usfc_EU.assign_coords({\"day\":(\"time\",dayrange)})\n", + " \n", + " #select winter months\n", + " Usfc_EU_win = get_ONDJFM_day(Usfc_EU,timedim=\"time\")\n", + "\n", + " \n", + " #swap dims to assemble files in the same dataset\n", + " \n", + " Usfc_EU_win = Usfc_EU_win.swap_dims({\"time\":\"day\"})\n", + " \n", + " #set time index as a data variable\n", + " Usfc_EU_win = Usfc_EU_win.reset_coords()\n", + " \n", + " if scen == 'historical':\n", + " timename = 'timep'\n", + " else:\n", + " timename = 'timef'\n", + " Usfc_EU_win = Usfc_EU_win.rename(time=timename)\n", + " \n", + " #save to netcdf\n", + " \n", + " try:# see if file exist and merge to it\n", + " \n", + " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnSWM+\".nc\",mode=\"a\")\n", + " except: #otherwise directly create the file\n", + " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnSWM+\".nc\")\n", + " \n", + " \n", + " time_delta_fut = timer() - start_time\n", + " print(time_delta_fut)\n", + " \n", + " \n", + "memname_df.to_csv(data_folder+memnames_fn)" + ] + }, + { + "cell_type": "markdown", + "id": "034141af-72c6-459d-84d9-8572d98f4214", + "metadata": {}, + "source": [ + "## Load U850" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "3546a6e5", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:28:39.874360Z", + "iopub.status.busy": "2023-01-08T14:28:39.873950Z", + "iopub.status.idle": "2023-01-08T14:28:52.127649Z", + "shell.execute_reply": "2023-01-08T14:28:52.126835Z", + "shell.execute_reply.started": "2023-01-08T14:28:39.874308Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#check available data\n", + "tres = \"Amon/\" #take monthly data\n", + "var=\"ua\" #select zonal wind\n", + "\n", + "dicscen = dict()\n", + "models_df = pd.DataFrame(columns=scenlist)\n", + "for ind,scen in enumerate(scenlist):\n", + " path = pathlist[ind]\n", + " dicscen[scen] = dict()\n", + " for subdir in os.scandir(path+tres+var):\n", + " #models_rcp85[subdir.name]=[]\n", + " dicscen[scen][subdir.name] = [len(os.listdir(subdir))]\n", + " dicscen[scen][subdir.name].append(os.listdir(subdir))\n", + " models_df.loc[subdir.name,scenlist[ind]] = len(os.listdir(subdir))\n", + "models_df.loc[\"total\",:] = models_df.count(axis=0)\n", + "nmems_hist = dicscen['historical']\n", + "nmems_ssp585 = dicscen['ssp585']" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "6116567a-9c3e-4a02-812a-9e32f30043d5", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:30:27.576017Z", + "iopub.status.busy": "2023-01-08T14:30:27.575722Z", + "iopub.status.idle": "2023-01-08T14:30:27.590006Z", + "shell.execute_reply": "2023-01-08T14:30:27.589436Z", + "shell.execute_reply.started": "2023-01-08T14:30:27.575979Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#get member names used for SWM \n", + "memname_df = pd.read_csv(data_folder+memnames_fn,header=[0],index_col=[0,1])\n", + "\n", + "#models which have at least 1 member for historical and ssp585\n", + "models_UA_1mem = models_df[['historical','ssp585']].where(models_df>=1)\n", + "\n", + "#keep same models used for SWM\n", + "models_UA = models_UA_1mem.reindex(modlist_ssp585+modlist_allscen)\n", + "modlist_UA = models_UA.index.tolist()\n", + "modlist = ['CanESM5','IPSL-CM6A-LR']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "61bb4fed", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:30:43.067370Z", + "iopub.status.busy": "2023-01-08T14:30:43.066999Z", + "iopub.status.idle": "2023-01-08T14:30:43.073388Z", + "shell.execute_reply": "2023-01-08T14:30:43.072583Z", + "shell.execute_reply.started": "2023-01-08T14:30:43.067327Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## select variables\n", + "#selvar = 'sfcWindmax'\n", + "var = 'ua'\n", + "tres = 'Amon'\n", + "\n", + "#spatial domain\n", + "min_lat=30\n", + "max_lat=75\n", + "min_lon=-30\n", + "max_lon=30\n", + "\n", + "plev = [85000] #pressure level\n", + "\n", + "#members\n", + "nmems_max = 1 #max number of members to consider\n", + "\n", + "#select scenarios\n", + "selscen = ['historical','ssp585']\n", + "\n", + "#normalization to a regular grid\n", + "norm=False\n", + "\n", + "#names to save files\n", + "bnU850 = 'U850_br_day_EU_winE' " + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "e797837f", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:31:02.320058Z", + "iopub.status.busy": "2023-01-08T14:31:02.319689Z", + "iopub.status.idle": "2023-01-08T14:31:59.597739Z", + "shell.execute_reply": "2023-01-08T14:31:59.597221Z", + "shell.execute_reply.started": "2023-01-08T14:31:02.320010Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processing historical for CanESM5 r1i1p1f1...\n", + "14.081292682792991\n", + "Processing ssp585 for CanESM5 r1i1p1f1...\n", + "21.117706035729498\n", + "Processing historical for IPSL-CM6A-LR r1i1p1f1...\n", + "interpolating nans...\n", + "21.89428939903155\n", + "Processing ssp585 for IPSL-CM6A-LR r1i1p1f1...\n", + "interpolating nans...\n", + "36.13658937579021\n" + ] + } + ], + "source": [ + "##open load and process ncdf\n", + "nmems = 1\n", + "memname_dl_UA = pd.DataFrame(index=modlist_UA)\n", + "\n", + "for index, modname in enumerate(modlist):\n", + " start_time = timer()\n", + " \n", + " for scen in selscen:\n", + " #select path\n", + " scenpath = pathdic[scen]\n", + " #get nb of available members and their names\n", + " memdic = dicscen[scen][modname]\n", + " memnb = memdic[0]\n", + " memnames = memdic[1]\n", + " memout=np.arange(0,nmems) \n", + " mem_av = 0\n", + " #select correct dates\n", + " if scen == 'historical':\n", + " datebeg = datebegp\n", + " dateend = dateendp\n", + " else: \n", + " datebeg = datebegf\n", + " dateend = dateendf\n", + " \n", + " for imem in range(nmems):\n", + " \n", + " memname = memname_df.loc[(modname,0),scen] #pick first members used for SWM data\n", + " \n", + " if memname in memnames:\n", + " print(\"Processing \"+scen+\" for \"+modname+\" \"+memname+\"...\")\n", + " #count member actually available\n", + " mem_av = mem_av + 1\n", + " memname_dl_UA.loc[modname,scen] = memname\n", + " else:\n", + " print('Member: ' + memname + 'not available for model: '+modname+' and scen '+ scen)\n", + " continue\n", + "\n", + " \n", + " scendir = glob(scenpath+tres+\"/\"+var+\"/\"+modname+\"/\"+memname+\"/*/\")\n", + " scendir = scendir[0]\n", + " try:\n", + " field = read_field(scendir+\"*.nc\", datebeg,dateend,min_lat,max_lat,None,None,plev)\n", + " \n", + " except ValueError:\n", + " #assume first file contains what we need\n", + " fpath = glob(scenpath+tres+var+\"/\"+modname+\"/\"+memname+\"/*//*.nc\")[0] \n", + " print(\"Look into: \"+fpath)\n", + " field = read_field(fpath,datebeg,dateend,min_lat,max_lat,None,None,plev)\n", + " \n", + " utemp = field[var]\n", + " \n", + " #get days, necessayry as models can have different calendars\n", + " daysid = utemp.time\n", + " ndays = len(daysid)\n", + " \n", + " #take mean over pressure\n", + " utemp = utemp.mean(dim='plev')\n", + " \n", + " #get grid spec (only if first member and keep same specs for following members)\n", + " if imem==0: \n", + " \n", + " #use source resolution\n", + " latout = utemp.lat\n", + " lonout = utemp.lon\n", + " \n", + " #initialize empty array\n", + " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]), \n", + " coords=[daysid, latout, lonout, memout],dims=['time','lat','lon','member'], name=scen)\n", + " \n", + " #read data\n", + " if norm: #interpolation if regridding/regularization\n", + " uread = utemp.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", + " \n", + " else: #slicing otherwise\n", + " uread = utemp\n", + " #uread = utemp.sel(lat=slice(minlato,maxlato),lon=slice(minlono,maxlono))\n", + " \n", + " #write into da\n", + " uread = uread.rename({'time': 'time_o'}) #rename to avoid conflicts between indexing and indexed objects\n", + " \n", + " try:\n", + " uzmem.loc[dict(member=imem)]=uread\n", + " except IndexError:#if index error, interpolate on the grid of the target data array\n", + " lati = uzmem.lat\n", + " loni = uzmem.lon\n", + " uread = uread.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", + " \n", + " \n", + " #del objects to speed up things?\n", + " del field\n", + " del utemp\n", + " del uread\n", + " \n", + " #skip rest if no members were found\n", + " if mem_av==0:\n", + " continue\n", + " \n", + " \n", + " ## processings\n", + " # normalize longitude\n", + " uzmemn = norm_lon(uzmem)\n", + " \n", + " #interpolate nans at 0deg longitude\n", + " if np.any(np.isnan(uzmemn.dropna(dim=\"time\",how='all'))):\n", + " print('interpolating nans...')\n", + " uzmemn = uzmemn.interpolate_na(dim=\"lon\", method=\"linear\")\n", + " \n", + " #crop to domain\n", + " Usfc_EU = def_domain(uzmemn,min_lat,max_lat,min_lon,max_lon)\n", + " \n", + " #set time indexes\n", + " dayrange = np.arange(1,ndays+1,1)\n", + " Usfc_EU = Usfc_EU.assign_coords({\"day\":(\"time\",dayrange)})\n", + " \n", + " #select winter months\n", + " Usfc_EU_win = get_ONDJFM_day(Usfc_EU,timedim=\"time\")\n", + " \n", + " #swap dims to assemble files in the same dataset \n", + " Usfc_EU_win = Usfc_EU_win.swap_dims({\"time\":\"day\"})\n", + " \n", + " #set time index as a data variable\n", + " Usfc_EU_win = Usfc_EU_win.reset_coords()\n", + " \n", + " if scen == 'historical':\n", + " timename = 'timep'\n", + " else:\n", + " timename = 'timef'\n", + " Usfc_EU_win = Usfc_EU_win.rename(time=timename)\n", + " \n", + " #save to netcdf\n", + " \n", + " try:# see if file exist and merge to it\n", + " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnU850+'.nc',mode=\"a\")\n", + " except: #otherwise directly create the file\n", + " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnU850+'.nc')\n", + " \n", + " \n", + " time_delta_fut = timer() - start_time\n", + " print(time_delta_fut)" + ] + }, + { + "cell_type": "markdown", + "id": "b299c713-ff4a-4fd3-be7c-6ca2c358e205", + "metadata": {}, + "source": [ + "## Load ERA5 WG10 data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "80c036bd-de73-4627-a643-c4637051aaa2", + "metadata": {}, + "outputs": [], + "source": [ + "import dask " + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "4de0c06b-a86f-4d1a-86ed-b62b431378c2", + "metadata": {}, + "outputs": [], + "source": [ + "## constants\n", + "#paths\n", + "pathin = \"/net/atmos/data/era5\" #input path for ERA5 data\n", + "#time index\n", + "ybegp = 1980 ; monbegp = 1 ; yendp = 2010 ; monendp = 12 ; daybegp = 1 ; dayendp = 31# dates for Past period, only takes 30th \n", + "\n", + "years = np.arange(ybegp,yendp+1)\n", + "months = [\"01\",\"02\",\"03\",\"10\",\"11\",\"12\"]\n", + "#lat lon\n", + "latout=np.linspace(-90,90,73)\n", + "lonout=np.linspace(0,357.5,144)\n", + "min_lat=30\n", + "max_lat=75\n", + "min_lon=-30\n", + "max_lon=30\n", + "\n", + "selvars = ['U10M','V10M']\n", + "data_vars = ['PS','MSL','TCC','U10M','V10M','SSTK','CI','D2M','T2M','TCW','TCWV','VIWVD','E',\n", + " 'MN2T','MX2T','SI','TTR','TTRC','WG10','LSP','CP','SF','SSHF','SLHF','BLH']\n", + "to_drop = ['PS','MSL','TCC','SSTK','CI','D2M','T2M','TCW','TCWV','VIWVD','E',\n", + " 'MN2T','MX2T','SI','TTR','TTRC','WG10','LSP','CP','SF','SSHF','SLHF','BLH']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "a1500de2-1e59-48a0-b2f1-c240acdd73d7", + "metadata": {}, + "outputs": [], + "source": [ + "#get pattern\n", + "pathlist = []\n", + "for yr in years:\n", + " for mn in months:\n", + " pathinvar = pathin+\"/\"+str(yr)+\"/\"+mn+'/B'+str(yr)+mn+'??_??'\n", + " pathlist+=glob(pathinvar)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "15930ce0-62af-4d92-8859-fead885bea45", + "metadata": {}, + "outputs": [], + "source": [ + "# preprocess\n", + "def def_domain(ds,min_lat=30,max_lat=75,min_lon=-30,max_lon=30):\n", + " ds.coords['lon'] = (ds.coords['lon'] + 180) % 360 - 180\n", + " ds.sortby(ds.lon)\n", + " LatIndexer, LonIndexer = 'lat', 'lon'\n", + " ds = ds.loc[{LatIndexer: slice(min_lat, max_lat),\n", + " LonIndexer: slice(min_lon, max_lon)}]\n", + " return ds\n", + "def get_ONDJFM_day(ds, months=[1,2,3,10,11,12]):\n", + " if \"time\" not in ds.dims:\n", + " ds = ds.swap_dims({\"day\":\"time\"}) \n", + " return ds.isel(time=ds.time.dt.month.isin(months))\n", + "\n", + "def norm_wind(ds):\n", + " u = ds['U10M']\n", + " v = ds['V10M']\n", + " return np.sqrt(u**2+v**2)\n", + "\n", + "def daily_max(ds):\n", + " return ds.resample(time=\"1D\").max()\n", + "\n", + "def preprocess(ds,**kwargs):\n", + " def def_domain(ds,min_lat=30,max_lat=75,min_lon=-30,max_lon=30):\n", + " ds.coords['lon'] = (ds.coords['lon'] + 180) % 360 - 180\n", + " ds.sortby(ds.lon)\n", + " LatIndexer, LonIndexer = 'lat', 'lon'\n", + " ds = ds.loc[{LatIndexer: slice(min_lat, max_lat),\n", + " LonIndexer: slice(min_lon, max_lon)}]\n", + " return ds\n", + " #drop useless var\n", + " ds = ds['WG10']\n", + " #slice domain\n", + " ds = def_domain(ds) \n", + " \n", + " return ds\n" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "4dfd236c-a7e0-4fde-aa06-a8f632f5af61", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "24167.72115666396\n" + ] + } + ], + "source": [ + "#open data set using mfdataset and preprocess\n", + "start_time = timer()\n", + "\n", + "ds = xr.open_mfdataset(pathlist, concat_dim=\"time\", combine=\"nested\",\n", + " data_vars='all', coords='minimal', compat='override',preprocess=preprocess,parallel=True)\n", + "\n", + "time_delta_fut = timer() - start_time\n", + "print(time_delta_fut) " + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "84a17313-bda8-47b1-843b-de97b9ae6758", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10824.226235975977\n" + ] + } + ], + "source": [ + "#resample to daily maxima\n", + "start_time = timer()\n", + "ds_sort = ds.sortby(ds.time)\n", + "ds_day = ds_sort.resample(time=\"1D\").max()\n", + "time_delta_fut = timer() - start_time\n", + "print(time_delta_fut) " + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "d6f414bf-c6d0-43e9-9fc6-62cd0959f42b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.33201643207576126\n" + ] + } + ], + "source": [ + "#get winter days\n", + "start_time = timer()\n", + "ds_day_winE = get_ONDJFM_day(ds_day, timedim=\"time\")\n", + "time_delta_fut = timer() - start_time\n", + "print(time_delta_fut) " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "231dec57-2956-4986-8469-624e9df0907e", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-06T17:13:27.576615Z", + "iopub.status.busy": "2023-01-06T17:13:27.576209Z", + "iopub.status.idle": "2023-01-06T17:13:27.594823Z", + "shell.execute_reply": "2023-01-06T17:13:27.593710Z", + "shell.execute_reply.started": "2023-01-06T17:13:27.576555Z" + } + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'ds_day_winE' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [13]\u001b[0m, in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m#save data under netcdf format\u001b[39;00m\n\u001b[1;32m 2\u001b[0m fnera5 \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mera5_WG10_br_day_EU_winE.nc\u001b[39m\u001b[38;5;124m'\u001b[39m \u001b[38;5;66;03m#savename\u001b[39;00m\n\u001b[0;32m----> 3\u001b[0m \u001b[43mds_day_winE\u001b[49m\u001b[38;5;241m.\u001b[39mto_netcdf(path\u001b[38;5;241m=\u001b[39mdata_folder\u001b[38;5;241m+\u001b[39mfnera5)\n", + "\u001b[0;31mNameError\u001b[0m: name 'ds_day_winE' is not defined" + ] + } + ], + "source": [ + "#save data under netcdf format\n", + "fnera5 = 'era5_WG10_br_day_EU_winE.nc' #savename\n", + "ds_day_winE.to_netcdf(path=data_folder+fnera5)" + ] + }, + { + "cell_type": "markdown", + "id": "ce79d4a9-4206-47e9-81d5-5219274e399a", + "metadata": {}, + "source": [ + "# Bias correction\n" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "dbca121a-684e-484f-b460-1b631cf79a52", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:34:41.677281Z", + "iopub.status.busy": "2023-01-08T14:34:41.676794Z", + "iopub.status.idle": "2023-01-08T14:34:41.685302Z", + "shell.execute_reply": "2023-01-08T14:34:41.684382Z", + "shell.execute_reply.started": "2023-01-08T14:34:41.677219Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#import bias correction module\n", + "from SL_bias_corr import *" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "f3b08dd2-c468-4d69-9833-0a20b3dc7c3c", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:34:47.545578Z", + "iopub.status.busy": "2023-01-08T14:34:47.545210Z", + "iopub.status.idle": "2023-01-08T14:34:47.552094Z", + "shell.execute_reply": "2023-01-08T14:34:47.551077Z", + "shell.execute_reply.started": "2023-01-08T14:34:47.545530Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#select climate models, used scenarios (historical, ssp585,...)\n", + "modlist = ['CanESM5','IPSL-CM6A-LR']\n", + "scen_used= ['historical','ssp585']\n", + "pastname = 'historical'\n", + "\n", + "bncmip6 = bnSWM #filename of the data to be bias-corrected\n", + "fnera5 = 'era5_WG10_br_day_EU_winE.nc' #filename of the control data for bias-correction\n", + "bnout = \"bias_corrWG10_\"+bncmip6 #filename of the output of the bias correction\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "37e196b6-2d35-40f4-b80d-d0efb39aa0e0", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T14:34:59.683688Z", + "iopub.status.busy": "2023-01-08T14:34:59.683405Z", + "iopub.status.idle": "2023-01-08T14:36:49.664231Z", + "shell.execute_reply": "2023-01-08T14:36:49.663395Z", + "shell.execute_reply.started": "2023-01-08T14:34:59.683651Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Time for bias correction model CanESM5 and scen historical: 8.866932092234492\n", + "Time for bias correction model CanESM5 and scen ssp585: 11.37633218523115\n", + "Time for bias correction model IPSL-CM6A-LR and scen historical: 30.782586419954896\n", + "Time for bias correction model IPSL-CM6A-LR and scen ssp585: 53.61053590895608\n" + ] + } + ], + "source": [ + "##Bias correction\n", + "#Loop over, scenarios, models and model members\n", + "#open netcdf and do preprocessing\n", + "#Use stack=True to stack model members on top of each other, set stack=False to consider each member separately.\n", + "#Use savehaz, saveimpcsv, saveimpmat to save hazards or/and imapcts.\n", + "\n", + "##parameters\n", + "savencdf = True\n", + "\n", + "#load era5 data\n", + "with xr.open_dataset(data_folder+fnera5) as era_ds:\n", + " era_da = era_ds['WG10']\n", + "\n", + "for modid, modname in enumerate(modlist):\n", + " \n", + " #read netcdf\n", + " fncmip6 = make_fn([modname],bncmip6,filetype=\".nc\")\n", + " \n", + " with xr.open_dataset(data_folder+fncmip6) as cmip_ds:\n", + " if modname == 'NESM3': #drop member r2i1p1f1 of NESM3 because faulty\n", + " cmip_ds = cmip_ds.drop_sel(member=1)\n", + " #get coordinates\n", + " latout = cmip_ds.lat\n", + " lonout = cmip_ds.lon\n", + " daysid = cmip_ds.day\n", + " memid = cmip_ds.member\n", + " \n", + " #select past and future period and get correct time coord\n", + " past_da = cmip_ds.swap_dims({\"day\":\"timep\"}).reset_coords()[pastname]\n", + " \n", + " fut_da = cmip_ds.swap_dims({\"day\":\"timef\"}).reset_coords().drop_vars([\"historical\",\"timep\",\"day\"])\n", + " \n", + " #convert calendars\n", + " past_da = past_da.convert_calendar('standard', dim='timep',align_on=\"year\")\n", + " past_tid = past_da.timep\n", + "\n", + " fut_da = fut_da.convert_calendar('standard', dim='timef',align_on=\"year\")\n", + " fut_tid = fut_da.timef\n", + " \n", + " #regrid era5 to the gcm's res\n", + " era_qt_rg = era_da.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": 'extrapolate'}) #regridded era5\n", + " \n", + " #initiate dict to store data\n", + " da_dict = dict()\n", + " \n", + " for scen in scen_used:\n", + " start_time = timer() #start counting time\n", + " last_time = start_time\n", + " \n", + " ncdfw = cmip_ds[[pastname,scen]] #select scen\n", + " \n", + " #initialize empty array\n", + " da_scen = xr.DataArray(np.zeros([ daysid.size, latout.size, lonout.size, memid.size]), \n", + " coords=[daysid, latout, lonout, memid],dims=['time','lat','lon','member'], name=scen)\n", + " \n", + " ##bias correction\n", + " \n", + " #iterate over lat and lon\n", + " for ilat in latout:\n", + " for ilon in lonout:\n", + " ncdfw_df = ncdfw.sel(lat=ilat,lon=ilon).to_dataframe().drop(['lat','lon'],axis=1).unstack()\n", + "\n", + " dat_mod = ncdfw_df[pastname].copy()\n", + " dat_mod_all = ncdfw_df[scen].copy()\n", + " \n", + " #correct time index\n", + " dat_mod.index = past_tid\n", + " dat_mod_all.index = fut_tid\n", + " \n", + " #keep only date format\n", + " dat_mod.index = dat_mod.index.date\n", + " dat_mod_all.index = dat_mod_all.index.date\n", + " \n", + " #select obs gridpoint\n", + " dat_obs = era_qt_rg.sel(lat=ilat,lon=ilon).to_dataframe().drop(['lat','lon'],axis=1)['WG10']\n", + " \n", + " #reindex GCM time data on obs time data\n", + " dat_mod = dat_mod.reindex(dat_obs.index.date).dropna()\n", + " \n", + " dat_mod_all_corrected = bias_correct_ensemble(dat_mod, dat_obs, dat_mod_all, minq=0.001, maxq=1.000, incq=0.001)\n", + " \n", + " da_scen.loc[dict(lat=ilat,lon=ilon)] = dat_mod_all_corrected\n", + " \n", + " da_dict[scen] = da_scen \n", + " timef = timer()\n", + " time_delta_past3 = timef - start_time\n", + " print(\"Time for bias correction model \"+modname+\" and scen \"+scen+\": \"+str(time_delta_past3))\n", + " \n", + " \n", + " #create dataset\n", + " bias_corr_ds = xr.Dataset(da_dict)\n", + "\n", + " #keep correct time coordinates as variables\n", + " bias_corr_ds = bias_corr_ds.rename(time=\"day\")\n", + " bias_corr_ds = bias_corr_ds.assign_coords({\"timep\":(\"day\",past_tid.data)}).reset_coords()\n", + " bias_corr_ds = bias_corr_ds.assign_coords({\"timef\":(\"day\",fut_tid.data)}).reset_coords()\n", + " \n", + " ##save files\n", + " if savencdf:\n", + " bias_corr_ds.to_netcdf(path=data_folder+modname+\"_\"+bnout+'.nc')\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "164fc4ae-b958-444a-ae55-5948c173bb1f", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:.conda-climada_env]", + "language": "python", + "name": "conda-env-.conda-climada_env-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb b/2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb new file mode 100644 index 0000000..9a395df --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb @@ -0,0 +1,68420 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "f72867cf-6e16-4443-9edb-397b29036ea5", + "metadata": { + "tags": [] + }, + "source": [ + "# Projections and uncertainties of future winter windstorm damage in Europe \n", + "## Notebook 2: Damage Calculation\n", + "This notebook compute the damages projections of the publication Projections and uncertainties of future winter windstorm damage in Europe. The hazard data must be pre-processed beforehand using the notebook 1. The CLIMADA package needs to be installed. See tutorial on https://github.com/CLIMADA-project/climada_python/blob/main/doc/guide/Guide_Installation.ipynb for guidance to install CLIMADA. See tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/1_main_climada.ipynb for guidance to use CLIMADA. Exposure data is loaded using LitPop (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb)." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "7a231da9-666d-42d5-928b-7c43b0a5badf", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:17.712943Z", + "iopub.status.busy": "2023-01-09T13:21:17.712469Z", + "iopub.status.idle": "2023-01-09T13:21:24.702376Z", + "shell.execute_reply": "2023-01-09T13:21:24.701628Z", + "shell.execute_reply.started": "2023-01-09T13:21:17.712809Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/dask/dataframe/_pyarrow_compat.py:17: FutureWarning: Minimal version of pyarrow will soon be increased to 14.0.1. You are using 12.0.1. Please consider upgrading.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "#import xarray as xr\n", + "import numpy as np\n", + "#import copy as cp\n", + "import pandas as pd\n", + "import cartopy.crs as ccrs\n", + "from timeit import default_timer as timer\n", + "from os import mkdir, remove, rmdir\n", + "\n", + "from climada.engine import Impact, ImpactCalc\n", + "from climada.entity import ImpactFunc,ImpactFuncSet\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "380745ba-2457-4ce1-96d1-1ee62fe3e264", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:24.703945Z", + "iopub.status.busy": "2023-01-09T13:21:24.703770Z", + "iopub.status.idle": "2023-01-09T13:21:24.709688Z", + "shell.execute_reply": "2023-01-09T13:21:24.709183Z", + "shell.execute_reply.started": "2023-01-09T13:21:24.703918Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "##function definition\n", + "#from functions import *\n", + "#from climada_functions import *\n", + "from constants import *\n", + "from SL_bias_corr import *\n", + "idx = pd.IndexSlice" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "02f038a8-40aa-4900-9275-9cec87405659", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:24.710542Z", + "iopub.status.busy": "2023-01-09T13:21:24.710400Z", + "iopub.status.idle": "2023-01-09T13:21:24.719377Z", + "shell.execute_reply": "2023-01-09T13:21:24.718919Z", + "shell.execute_reply.started": "2023-01-09T13:21:24.710522Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#setup folders and folder variables.\n", + "# All these variables need to be defined correctly for the code to work.\n", + "# The strings in these variables should point to existing folders on your computer.\n", + "project_folder = '/Users/lseverino/Documents/Publi MT/Model code Proj.-unc.-WS-damage'\n", + "data_folder = project_folder+'/data/' #this folder will contain the netcdf files downloaded by this script\n", + "results_folder = project_folder+'/results/' #this folder will contain results (e.g. climada impact data)\n", + " # produced by this script\n", + "file_identifier = '_v01' # this string is added to all files written by this code" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "26fdf83a-0f12-4ec1-9f84-924fff37a70f", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:24.720475Z", + "iopub.status.busy": "2023-01-09T13:21:24.720291Z", + "iopub.status.idle": "2023-01-09T13:21:24.731336Z", + "shell.execute_reply": "2023-01-09T13:21:24.730960Z", + "shell.execute_reply.started": "2023-01-09T13:21:24.720453Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#plotting params\n", + "import matplotlib as mpl\n", + "import matplotlib.colors as mcolors\n", + "#plt.style.use('tableau-colorblind10')\n", + "SMALL_SIZE = 16\n", + "MEDIUM_SIZE = 18\n", + "BIGGER_SIZE = 24\n", + "mpl.rcParams['axes.titleweight'] = 'bold'\n", + "mpl.rcParams['axes.titlesize'] = MEDIUM_SIZE\n", + "mpl.rcParams['axes.titlelocation'] = 'left'\n", + "mpl.rcParams['axes.labelsize'] = MEDIUM_SIZE\n", + "mpl.rcParams['axes.labelweight'] = 'bold'\n", + "mpl.rcParams['xtick.labelsize'] = SMALL_SIZE\n", + "mpl.rcParams['ytick.labelsize'] = SMALL_SIZE\n", + "mpl.rcParams['legend.fontsize'] = SMALL_SIZE\n", + "tab_cols = mcolors.TABLEAU_COLORS\n", + "clist = mpl.rcParams['axes.prop_cycle']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fe51a302", + "metadata": {}, + "outputs": [], + "source": [ + "## Define functions\n", + "def set_centroids(da,stack=True,haztype='WS',timeres=\"day\",plot=False, printout=False):\n", + " '''Function which takes a xarray.DataArray as an input and returns a climada.hazard object, with centroids corresponding to\n", + " latitude and longitude of the DataArray.'''\n", + "\n", + " period = da.name\n", + " lat = da.lat\n", + " lon = da.lon\n", + "\n", + " # number of points\n", + " n_lat = len(lat)\n", + " n_lon = len(lon)\n", + "\n", + " #stack first members and time resolution, and then latitutde and longitude to obtain the event matrix\n", + " if stack:\n", + " events = da.stack(events=(\"member\",timeres)) #need to be of size n_ev * ncent = nmem*180 * ncent\n", + " nmem = len(da[\"member\"])\n", + " else:\n", + " events = da.rename({timeres:\"events\"})\n", + " nmem = 1\n", + " evmat = events.stack(cent=(\"lat\",\"lon\"))\n", + " #print('Evmat: '+str(evmat.shape))\n", + " n_ev = len(evmat[\"events\"])\n", + "\n", + " #intiate Hazard object, using Centroids.from_pix_bounds\n", + " haz = Hazard(haztype)\n", + "\n", + " #initiate lat and lon array for Centroids.from_lat_lon\n", + " lat_ar = lat.values.repeat(len(lon))\n", + " lon_ar = lon.values.reshape(1,n_lon).repeat(n_lat,axis=0).reshape(n_lon*n_lat)\n", + "\n", + " haz.centroids = Centroids.from_lat_lon(lat_ar,lon_ar)\n", + " haz.intensity = sparse.csr_matrix(evmat)\n", + " haz.units = 'm/s'\n", + " ev_id = np.arange(n_ev, dtype=int)\n", + " haz.event_id = ev_id\n", + " ev_names = events.coords[\"events\"].to_numpy().tolist()\n", + " #ev_names = pd.to_datetime(evmat.events,format='YYYY-MM-DD')\n", + " haz.event_name = ev_names\n", + " haz.orig = np.zeros(n_ev, bool)\n", + " haz.frequency = np.ones(n_ev)/(nmem*30)\n", + " haz.fraction = haz.intensity.copy()\n", + " haz.fraction.data.fill(1)\n", + " haz.centroids.set_meta_to_lat_lon()\n", + " haz.centroids.set_geometry_points()\n", + " haz.check()\n", + " if printout:\n", + " print('Lat resolution original: '+str(-latreso)+' ,rounded: '+str(-latres)+\n", + " '\\nLon resolution original: '+str(lonreso)+' ,rounded: '+str(lonres))\n", + " print('lat: '+str(n_lat)+', lon: '+str(n_lon))\n", + " print('Check centroids borders:', haz.centroids.total_bounds)\n", + " if plot:\n", + " haz.centroids.plot()\n", + "\n", + " return haz\n", + "\n", + "def sel_reg_exp(reg_ids,exp):\n", + " \"\"\"function that takes a list of country ISO codes reg_ids and a CLIMADA LitPop exposure\n", + " object exp as inputs and returns a copy of the exposure object with only the regions selected in reg_ids\"\"\"\n", + " sel_exp = cp.deepcopy(exp)\n", + " sel_exp.gdf = sel_exp.gdf.where(sel_exp.gdf['region_id'].isin(reg_ids)).dropna()\n", + " return sel_exp\n", + "\n", + "def get_lat_lon_res(ds):\n", + " '''Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. '''\n", + " lat = ds.coords['lat']\n", + " lon = ds.coords['lon']\n", + " difflat = lat - lat.shift(lat=1)\n", + " latres = difflat.mean().to_numpy()\n", + " difflon = lon - lon.shift(lon=1)\n", + " lonres = difflon.mean().to_numpy()\n", + " return latres, lonres\n", + "\n", + "def make_fn(addlist,basename=\"\",sep=\"_\",filetype=''):\n", + " \"\"\"Function to facilitate the creation of file names that takes a list of\n", + " strings addlist, a string basename, a string sep and a string filetype\n", + " as input and returns the string consisting of the keywords from addlist separated\n", + " by the sep separator and concatenated with the string basename and the string filetype\"\"\"\n", + " return sep.join(addlist)+sep+basename+filetype\n", + "\n", + "#each impact function gets a preprocessing function to prepare the hazard data\n", + "def mask_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000):\n", + " '''Function taking a dateset as an input, and returning it with the values below the quantile q at each grid cell\n", + " masked. The mask is computed for each gridcell for the past period. Fields for which less than cutarea is above the\n", + " quantile are dropped'''\n", + "\n", + " Upast = ds[pastname]\n", + " Ufut = ds[futname]\n", + " if stack:\n", + " Upast = Upast.stack(real=(\"member\",timeres))\n", + " Ufut = Ufut.stack(real=(\"member\",timeres))\n", + " dim=\"real\"\n", + " else:\n", + " dim = timeres\n", + "\n", + " Upast_qt = Upast.quantile(q,dim=dim)\n", + " U_mask_past = Upast.where(Upast>Upast_qt)\n", + " U_mask_fut = Ufut.where(Ufut>Upast_qt)\n", + "\n", + " #mask values below threshold\n", + " if mask_abs:\n", + " U_mask_past = U_mask_past.where(U_mask_past>=mask_abs)\n", + " U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs)\n", + "\n", + " latres, lonres = get_lat_lon_res(ds)\n", + " gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km\n", + " threshold = round(cutarea/gcarea)\n", + "\n", + " U_mask_past = U_mask_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", + " U_mask_fut = U_mask_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", + "\n", + " #unstack and assemble\n", + " U_mask_past = U_mask_past.unstack().fillna(0)\n", + " U_mask_fut = U_mask_fut.unstack().fillna(0)\n", + " if futname != pastname:\n", + " U_mask_fut.name = futname\n", + " U_mask = xr.combine_by_coords([U_mask_past, U_mask_fut]).fillna(0)\n", + " else:\n", + " U_mask = U_mask_past\n", + "\n", + " return U_mask\n", + "\n", + "def scale_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000):\n", + " '''Same as mask_qt but scaling by the q quantile.'''\n", + " Upast = ds[pastname]\n", + " Ufut = ds[futname]\n", + "\n", + " if stack:\n", + " Upast = Upast.stack(real=(\"member\",timeres))\n", + " Ufut = Ufut.stack(real=(\"member\",timeres))\n", + " dim = \"real\"\n", + " else:\n", + " dim = timeres\n", + "\n", + " Upast_qt = Upast.quantile(q,dim=dim)\n", + " U_mask_past = Upast.where(Upast>Upast_qt)\n", + " U_mask_fut = Ufut.where(Ufut>Upast_qt)\n", + " #mask values below threshold\n", + " if mask_abs:\n", + " U_mask_past = U_mask_past.where(U_mask_past>=mask_abs)\n", + " U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs)\n", + "\n", + " U_scaled_past = (U_mask_past-Upast_qt)/Upast_qt\n", + " U_scaled_fut = (U_mask_fut-Upast_qt)/Upast_qt\n", + "\n", + " latres, lonres = get_lat_lon_res(ds)\n", + " gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km\n", + " threshold = round(cutarea/gcarea)\n", + "\n", + " U_scaled_past = U_scaled_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", + " U_scaled_fut = U_scaled_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", + "\n", + " #unstack and assemble\n", + " U_scaled_past = U_scaled_past.unstack().fillna(0)\n", + " U_scaled_fut = U_scaled_fut.unstack().fillna(0)\n", + " if futname != pastname:\n", + " U_scaled_fut.name = futname\n", + " U_scaled = xr.combine_by_coords([U_scaled_past, U_scaled_fut]).fillna(0)\n", + " else:\n", + " U_scaled = U_scaled_past\n", + " return U_scaled\n", + "\n", + "#put processing funcs in a dict\n", + "pp_func_dic ={}\n", + "pp_func_dic['Sw2010'] = mask_qt\n", + "pp_func_dic['CubEOT'] = scale_qt\n" + ] + }, + { + "cell_type": "markdown", + "id": "374acd21-51c6-4cd9-83be-72e679d1dd62", + "metadata": {}, + "source": [ + "## Prepare exposure data\n", + "LitPop data needs to be downloaded for each countries and for each parameterization. A .csv file for the metadata needs to be downloaded from https://www.research-collection.ethz.ch/handle/20.500.11850/331316 and stored in the data_folder. Follow LitPop tutorial for more information: https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "cd5a27bf-d4f4-4b4a-bc62-692044795f8f", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:30.124928Z", + "iopub.status.busy": "2023-01-09T13:21:30.124495Z", + "iopub.status.idle": "2023-01-09T13:21:30.145187Z", + "shell.execute_reply": "2023-01-09T13:21:30.144436Z", + "shell.execute_reply.started": "2023-01-09T13:21:30.124876Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#list European countries considered for this study\n", + "EU_countries = ['Andorra', 'Albania', 'Austria', 'Belgium', 'Bulgaria', 'Belarus', 'Czechia', 'Germany',\n", + " 'Denmark', 'Estonia', 'Finland', 'France', 'Greece', 'Hungary', 'Italy', 'Liechtenstein', 'Lithuania',\n", + " 'Luxembourg', 'Latvia', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Romania',\n", + " 'Sweden', 'Slovenia', 'Slovakia', 'San Marino', 'Ukraine', 'Bosnia and Herzegovina', 'Croatia', 'Moldova',\n", + " 'Monaco', 'Montenegro', 'Serbia', 'Spain', 'Switzerland', 'United Kingdom of Great Britain and Northern Ireland', 'Vatican City State', 'Ireland',\n", + " 'Moldova, Republic of', 'Macedonia, the former Yugoslav Republic of']# Kosovo not available in LitPop\n", + "\n", + "#load litpop metadata\n", + "ltpop_info = pd.read_csv(data_folder+'_metadata_countries_v1_2.csv',sep=',')\n", + "ctrs_metadata = ltpop_info[ltpop_info[\"country_name\"].isin(EU_countries)][[\"country_name\",\"region_id\",\"iso3\"]]\n", + "#ctrs_iso3 = ctrs_metadata.iso3.tolist() #\n", + "ctrs_regids = ctrs_metadata.region_id.tolist()\n", + "\n", + "#Create a custom polygon for cropping\n", + "min_lat=30\n", + "max_lat=75\n", + "min_lon=-30\n", + "max_lon=30\n", + "\n", + "from shapely.geometry import Polygon\n", + "\n", + "polygon = Polygon([(min_lon, min_lat), (min_lon, max_lat), (max_lon, max_lat), (max_lon, min_lat), (min_lon, min_lat)])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f9795221-8048-47ce-85bc-0ced1a73d4be", + "metadata": { + "collapsed": true, + "execution": { + "iopub.execute_input": "2023-01-08T15:25:52.208273Z", + "iopub.status.busy": "2023-01-08T15:25:52.207982Z", + "iopub.status.idle": "2023-01-08T15:27:22.752951Z", + "shell.execute_reply": "2023-01-08T15:27:22.752264Z", + "shell.execute_reply.started": "2023-01-08T15:25:52.208240Z" + }, + "jupyter": { + "outputs_hidden": true + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-20 15:32:03,386 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:32:03,581 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:32:19,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,114 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,675 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,682 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:19,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,103 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:22,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,547 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,575 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,582 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,609 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:24,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:25,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:25,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:27,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,219 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,291 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,333 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:29,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:31,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:31,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:31,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:31,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:32,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:34,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:34,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,062 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:35,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:36,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,372 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,886 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,894 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:38,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:39,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,457 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:41,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:46,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,557 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,686 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,693 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:48,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:49,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:51,307 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:32:51,483 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:32:53,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:32:59,225 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:32:59,407 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:33:05,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:07,350 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:33:09,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,103 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:09,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,525 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,726 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:11,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:12,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:12,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,290 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,540 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,591 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,819 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,954 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:13,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:18,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:22,700 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:33:22,866 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:33:24,676 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:33:30,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:30,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,481 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:31,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:33,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:33,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:33,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "94.88532624999971\n", + "2024-03-20 15:33:38,303 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:33:38,488 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:33:55,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:55,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,756 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,897 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:57,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:58,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:58,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:58,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:59,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:59,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:33:59,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:00,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,746 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:02,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:04,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,071 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,077 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:05,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,785 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:07,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:08,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,909 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:10,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,773 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:11,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,954 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:13,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,559 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,591 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,751 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,786 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:14,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:15,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,626 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:17,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:21,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:21,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:21,801 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:21,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:22,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:22,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:23,891 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:23,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:23,904 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:23,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:23,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:24,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:26,875 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:34:27,318 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:34:28,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:34,860 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:34:35,016 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:34:40,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:42,633 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:34:44,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,756 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,762 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:44,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:46,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:47,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,874 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,893 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:48,991 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:49,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,626 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:53,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:34:58,037 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:34:58,223 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:34:59,974 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:35:05,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:05,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,581 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,586 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:06,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:08,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:08,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:08,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "95.13195658400036\n", + "2024-03-20 15:35:13,378 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:35:13,557 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:35:29,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,764 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,789 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:29,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:31,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:32,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:34,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:35,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:35,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:37,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,115 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,407 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:39,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,154 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,300 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:42,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:44,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,341 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:45,432 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:46,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,204 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:48,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,000 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,380 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,468 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:49,691 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,601 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:51,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:56,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:58,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:35:59,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:01,151 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:01,350 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:36:02,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:08,841 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:08,997 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:36:14,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:16,483 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:18,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:18,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,525 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,555 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,818 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,840 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,883 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:20,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:21,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,107 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,407 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,503 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,682 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,945 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:22,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:23,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:27,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:32,067 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:32,222 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:36:33,978 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:39,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:39,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,642 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,732 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:40,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:42,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:42,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:36:42,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "93.96300625000003\n", + "2024-03-20 15:36:47,439 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:36:47,590 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:37:03,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:03,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:04,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:05,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,248 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:06,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,522 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:08,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:09,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:09,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:11,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,541 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,568 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:13,601 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:14,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:16,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:17,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,546 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,609 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:19,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,399 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:20,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,468 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,598 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:22,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,248 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,432 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,523 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,686 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,693 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,710 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,717 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,874 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:23,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,850 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,902 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,976 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:25,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:26,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,492 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,507 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:30,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:32,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,015 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:33,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:35,674 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:37:35,838 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:37:37,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:43,428 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:37:43,854 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:37:49,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:51,395 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:37:53,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:53,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,598 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,932 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,956 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:55,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,071 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:56,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,368 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,387 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,709 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:57,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,003 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,241 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:37:58,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:02,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:07,402 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:38:07,567 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:38:09,392 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:38:15,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,166 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:15,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,209 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:16,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:18,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:18,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:18,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "95.5202155829993\n", + "2024-03-20 15:38:23,247 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:38:23,620 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:38:39,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:39,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:40,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,484 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,691 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:42,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,976 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:44,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,000 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:45,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:47,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,764 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,882 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,920 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,986 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:49,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,028 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:50,643 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,838 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,849 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:52,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:53,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,941 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:55,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,849 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:56,986 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:57,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,909 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,919 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,939 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:58,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,702 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,767 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:38:59,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,150 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:00,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,426 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,495 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,523 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,642 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:02,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:06,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:07,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:07,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:07,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:07,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:07,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,166 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,333 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,526 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:09,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:10,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:12,095 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:39:12,284 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:39:13,957 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:20,903 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:39:21,064 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:39:26,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:28,828 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:39:30,569 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:30,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:32,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,531 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:33,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,811 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,932 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:34,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,308 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,341 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,479 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,582 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:35,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,047 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:40,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:44,715 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:39:44,876 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:39:46,686 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:39:52,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:52,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:53,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:55,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:55,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:39:55,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "97.15769558300053\n", + "2024-03-20 15:39:59,953 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:40:00,221 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:40:16,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,701 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:16,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:18,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:19,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,378 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:21,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:22,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:22,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:24,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,368 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,509 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:26,565 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:27,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:29,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:30,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:32,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,291 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:33,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,380 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,431 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,535 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:35,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,615 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,630 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,773 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,811 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:36,886 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,901 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:38,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,219 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:39,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:43,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:49,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:49,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:49,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:49,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:49,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,300 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:50,957 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:40:52,962 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:40:53,170 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:40:54,834 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:00,804 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:41:01,265 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:41:07,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:09,020 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:41:10,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:10,991 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:12,956 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:12,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:12,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:12,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,505 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,547 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,752 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:13,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,817 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:14,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,018 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,399 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,484 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:15,751 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:19,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:19,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:19,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:19,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:19,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,107 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:20,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:24,508 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:41:24,660 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:41:26,427 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:41:32,025 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:32,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,204 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,209 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:33,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:35,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:35,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:35,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "99.82160608400045\n", + "2024-03-20 15:41:39,954 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:41:40,115 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:41:56,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,406 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,939 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:56,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:57,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,238 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:41:59,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,801 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:01,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:02,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:02,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,463 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:04,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,721 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,784 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:06,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:07,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,893 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:09,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:10,593 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,772 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,838 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,973 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:12,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,752 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:13,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:15,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,028 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,797 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:16,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,163 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:17,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,732 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,784 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:19,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:24,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,317 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,479 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,531 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,560 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:26,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:27,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:29,310 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:42:29,467 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:42:31,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:37,323 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:42:37,477 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:42:43,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:45,035 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:42:46,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,825 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:46,998 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:47,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:47,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:47,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:48,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,154 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,290 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,540 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:49,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:50,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,482 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,509 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,561 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,785 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:51,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,238 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:42:56,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:00,613 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:43:00,782 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:43:02,602 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:43:08,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:08,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:09,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:11,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:11,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:11,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "96.24178916700112\n", + "2024-03-20 15:43:16,087 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:43:16,253 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:43:32,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,835 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:32,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:34,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:35,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:37,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:38,163 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:38,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:40,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,529 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,584 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,803 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,825 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:42,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:43,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,482 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,575 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:45,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:46,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,581 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,834 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,904 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:48,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:49,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,883 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:51,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,541 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,560 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,709 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,839 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:52,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:53,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,305 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,443 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:55,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,710 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:43:59,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:01,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:01,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:01,900 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:01,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:01,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:02,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:04,928 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:05,159 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:44:06,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:12,805 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:12,967 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:44:18,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:20,405 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:22,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,150 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:22,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,324 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,767 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:24,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,003 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,018 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,047 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:25,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,443 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,651 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,840 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,850 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,868 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:26,975 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:27,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,372 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,463 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:31,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:36,259 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:36,456 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:44:38,217 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:43,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:43,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,845 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,868 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,881 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,941 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:44,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,062 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:45,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:47,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:47,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:44:47,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "95.63465799999904\n", + "2024-03-20 15:44:51,822 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:44:51,965 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:45:07,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:07,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:07,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:07,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,565 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:08,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:10,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:11,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:11,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:11,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,308 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:13,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:14,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:14,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:15,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:15,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:15,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:16,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:16,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:16,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:16,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:18,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:20,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:20,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:20,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:20,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:20,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:21,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,973 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:23,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:24,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,171 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:25,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,378 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,872 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,881 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,902 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:27,945 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,559 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,569 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,721 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:28,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,797 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,891 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,901 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,920 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:30,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:31,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:35,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:37,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:37,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:37,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:37,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:37,872 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:38,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:40,820 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:45:40,989 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:45:42,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:48,731 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:45:49,146 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:45:54,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:56,803 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:45:58,535 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,772 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:45:58,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:00,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,426 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,481 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:01,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,882 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,894 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,919 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:02,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,505 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,522 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,561 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,584 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:03,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,305 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:08,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:12,685 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:46:12,859 - climada.util.finance - WARNING - No data for country, using mean factor.\n", + "2024-03-20 15:46:14,627 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", + "2024-03-20 15:46:20,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:20,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,171 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:21,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:23,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:23,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "2024-03-20 15:46:23,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", + "96.2678586660004\n" + ] + } + ], + "source": [ + "#load the LitPop data\n", + "from climada.entity import LitPop\n", + "import geopandas as gpd\n", + "\n", + "#select values for the m and n LitPop parameters to generate exposure layers, different values of m and n are needed for the uncertainty and sensitivity analysis\n", + "mlist = [0.75,1,1.25]\n", + "nlist = [0.75,1,1.25]\n", + "##mlist = [1]\n", + "#nlist = [1]\n", + "\n", + "#mask exposure below a threshold, i.e. neglect exposure points where values is below exp_thres USD\n", + "exp_thres = 1\n", + "\n", + "#exposure resolution in arcseconds\n", + "res_exp = 600\n", + "\n", + "#savename for exposure file\n", + "expbn = \"_\".join([\"_cropped\"+str(exp_thres),\"res\"+str(res_exp)])+'.h5'\n", + "\n", + "for m in mlist:\n", + " for n in nlist:\n", + " start_time = timer()\n", + " exp_mn = LitPop.from_countries(ctrs_regids, res_arcsec=res_exp, exponents=[m, n]);\n", + " exp_mn.gdf = exp_mn.gdf.clip(polygon)\n", + " exp_mn.gdf.value = exp_mn.gdf.value.where(exp_mn.gdf.value > exp_thres)\n", + " #crop to polygon\n", + " poly_gdf = gpd.GeoDataFrame([1], geometry=[polygon], crs=exp_mn.gdf.crs)\n", + " exp_mn.gdf = exp_mn.gdf.dropna()\n", + "\n", + " #write to hdf5\n", + " expfn = \"_\".join([\"exp\",\"m\"+str(m).replace(\".\",\"-\"),\"n\"+str(n).replace(\".\",\"-\")])+expbn\n", + " try:\n", + " exp_mn.write_hdf5(results_folder+'exposure/'+expfn)\n", + "\n", + " except OSError:\n", + " mkdir(results_folder+'exposure/')\n", + " exp_mn.write_hdf5(results_folder+'exposure/'+expfn)\n", + "\n", + " time_delta_past = timer() - start_time\n", + " print(time_delta_past)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f3d6379d-9eeb-4754-93cf-ff6ff5820074", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:54.383008Z", + "iopub.status.busy": "2023-01-09T13:21:54.382686Z", + "iopub.status.idle": "2023-01-09T13:21:55.406363Z", + "shell.execute_reply": "2023-01-09T13:21:55.405868Z", + "shell.execute_reply.started": "2023-01-09T13:21:54.382974Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#load the saved exposure with base LitPop parametrization, n=1, m=1, for the damage calculation\n", + "from climada.entity import Exposures\n", + "\n", + "m=1\n", + "n=1\n", + "exp_thres=1\n", + "res_exp=600\n", + "expbn = \"_\".join([\"_cropped\"+str(exp_thres),\"res\"+str(res_exp)])+'.h5'\n", + "\n", + "expfn = \"_\".join([\"exp\",\"m\"+str(m).replace(\".\",\"-\"),\"n\"+str(n).replace(\".\",\"-\")])+expbn\n", + "exp = Exposures.from_hdf5(results_folder+'exposure/'+expfn)\n", + "exp.check()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "df13c639-1513-4b5e-a7fe-4043f634e650", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:21:57.361524Z", + "iopub.status.busy": "2023-01-09T13:21:57.361245Z", + "iopub.status.idle": "2023-01-09T13:21:57.379212Z", + "shell.execute_reply": "2023-01-09T13:21:57.378599Z", + "shell.execute_reply.started": "2023-01-09T13:21:57.361491Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "##Prepare country lists for regional damage assessment\n", + "#regions\n", + "BI = ['United Kingdom of Great Britain and Northern Ireland','Ireland']\n", + "IP = ['Spain', 'Portugal','Andorra']\n", + "WEU = ['France','Monaco','Netherlands','Luxembourg','Belgium']#'Kingdom of the Netherlands'\n", + "CEU = ['Switzerland','Germany','Liechtenstein','Czechia', 'Austria']#'Czech Republic'\n", + "SC = ['Denmark','Sweden','Finland','Norway','Estonia','Latvia','Lithuania']\n", + "MED = ['Italy','Albania','Bosnia and Herzegovina','Croatia','Montenegro','Malta','Greece','San Marino',\n", + " 'Slovenia','Macedonia, the former Yugoslav Republic of','Bulgaria','Serbia']#'Kosovo'\n", + "EEU = [ctr for ctr in EU_countries if ctr not in (BI+IP+WEU+CEU+SC+MED)] # eastern Europe\n", + "\n", + "#countries present in EM-Dat damage data, used for calibration\n", + "ctrEMDAT = ['United Kingdom of Great Britain and Northern Ireland','Ireland','Belgium', 'Switzerland', 'Spain',\n", + " 'France', 'Netherlands','Germany', 'Denmark', 'Ireland', 'Lithuania', 'Latvia', 'Poland','Sweden',\n", + " 'Austria', 'Czechia', 'Estonia', 'Norway', 'Belarus', 'Slovenia','Ukraine', 'Romania', 'Italy', 'Luxembourg',\n", + " 'Portugal']\n", + "\n", + "reg_ctrnames_dict = {'BI':BI, 'IP':IP, 'WEU':WEU , 'CEU':CEU, 'SC':SC, 'MED':MED,'EEU':EEU, 'EU':EU_countries, 'EMDAT':ctrEMDAT}\n", + "\n", + "#construct dict with region ids to select regional exposure\n", + "reg_ctrids_dict = {}\n", + "for reg,ctr_list in reg_ctrnames_dict.items():\n", + " #get region ids from litpop info file\n", + " reg_ids = ltpop_info['region_id'].where(ltpop_info['country_name'].isin(ctr_list)).dropna().tolist()\n", + " reg_ctrids_dict[reg] = reg_ids" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "cce40be1-f4c7-4ea0-8a10-531c914837ca", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T13:09:11.326104Z", + "iopub.status.busy": "2023-01-08T13:09:11.325786Z", + "iopub.status.idle": "2023-01-08T13:09:52.225547Z", + "shell.execute_reply": "2023-01-08T13:09:52.224837Z", + "shell.execute_reply.started": "2023-01-08T13:09:11.326068Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", + " return lib.intersects(a, b, **kwargs)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAADqcAAAfGCAYAAAAgb4WbAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOz9d5Bc+X3f/X5O7Nw9eQaDDOwCi805YXe5DGKmqEBRpmiLvKYkX/vqsVT1iLp+qhToa9UjlWS7xGsrmApX0aREUczkilzGzXm5eRe7SDOYgEmdw4n3jwYGOwgzSIOeBt6vqilMn3P6nG83ptPp3+f3NeI4jgUAAAAAAAAAAAAAAAAAAAAAAAAAAACcBrPTBQAAAAAAAAAAAAAAAAAAAAAAAAAAAKB7EE4FAAAAAAAAAAAAAAAAAAAAAAAAAADAaSOcCgAAAAAAAAAAAAAAAAAAAAAAAAAAgNNGOBUAAAAAAAAAAAAAAAAAAAAAAAAAAACnjXAqAAAAAAAAAAAAAAAAAAAAAAAAAAAAThvhVAAAAAAAAAAAAAAAAAAAAAAAAAAAAJw2wqkAAAAAAAAAAAAAAAAAAAAAAAAAAAA4bYRTAQAAAAAAAAAAAAAAAAAAAAAAAAAAcNoIpwIAAAAAAAAAAAAAAAAAAAAAAAAAAOC0EU4FAAAAAAAAAAAAAAAAAAAAAAAAAADAaSOcehG69957ZRjGSX8sy1Iul9O2bdv03ve+V//tv/03zc/Pn/Z+AAAAAAAAAAAAAAAAAADA2rB3794Txvn9zd/8zUm3/ff//t+fsO1LL7100m1vueWWJdt96EMfkiTt37//lOMTT/Xzq7/6q0v2fbJ9fPzjHz9pHWeyLQAAAAAAuLAIp15ioihStVrVvn379M1vflO/9mu/pm3btuk73/lOp0sDAAAAAAAAAAAAAAAAAABnYNu2bdqwYcOSZT/84Q9Puu0DDzxwWsuq1aqeeeaZJcvuvvvuc6gSAAAAAABcjAinQqVSST/7sz+rUqnU6VIAAAAAAAAAAAAAAAAAAMAZOD44erJw6vz8/Em7pJ4snPrQQw8pDMNljwEAAAAAAGB3ugBcGPv27ZMkhWGol19+Wb/yK7+ivXv3Lq6fm5vTfffdp5/92Z/tVIkAAAAAAAAAAAAAAAAAAOAM3X333frsZz+7eHnPnj2amprSyMjI4rIHH3xQcRyfcN2ThVOPD7fmcjldd911pzz+T//0T+u//tf/esr1+Xx+2foBAAAAAEB3Ipx6idiyZcvi79u3b1elUtHP/dzPLdlm//79F7YoAAAAAAAAAAAAAAAAAABwTu65554Tlj3wwAP6mZ/5mSWXj9qwYYPGx8clSQcPHtTBgwe1adOmk24rSXfeeacsyzrl8bPZ7JIxigAAAAAA4NJgdroAdIZhGCcs6+3t7UAlAAAAAAAAAAAAAAAAAADgbF155ZXq7+9fsuz47qdvvvxLv/RLKhQKJ13XarX0+OOPL7nu3XfffT7LBQAAAAAAFwnCqZeI/fv3a//+/XrjjTf0jW98Q7/5m7+5ZL1t23r3u9/doeoAAAAAAAAAAAAAAAAAAMDZMAxDd91115Jlbw6c1ut1Pf3004uX7733Xu3evXvx8ps7pT722GNqtVpL9kU4FQAAAAAAnAzh1EvE1q1btXXrVl122WV63/vep9dff31xnW3b+uM//mNt2rSpgxUCAAAAAAAAAAAAAAAAAICzcXyA9IUXXtDCwoIk6ZFHHlEQBJKkRCKhW265Rffcc8/itm8Opx7fcdV1Xd16663LHvuv//qvZRjGKX+KxeK53DQAAAAAALBGEU6FfvEXf1E/93M/1+kyAAAAAAAAAAAAAAAAAADAWXhz2FSSoijSgw8+KGlp+PSWW25RMplcsv3LL7+s2dlZSSeGU49uDwAAAAAAcDzCqdCf/Mmf6JZbbtHU1FSnSwEAAAAAAAAAAAAAAAAAAGfohhtuUDabXbLsaCj1zeHUox1Wb775ZqXT6cXlDz74oMIw1COPPLJkH8eHXgEAAAAAAI4inHqJiONYcRwriiJNTEzod3/3d5esf/nll/Urv/IrHaoOAAAAAAAAAAAAAAAAAACcLdu2dccddyxZ9sMf/lC+7+vRRx9dXHY0nOo4jm6//fbF5Q888ICefvppVavVJfs4uv1yfvqnf1r79u075U8+n1+yvWme29DVc70+AAAAAAA4P+xOF4ALyzAMrVu3Tv/pP/0nPfroo/ryl7+8uO6f/umfVCwW1dPT07kCAQAAAAAAAAAAAAAAAADAGbvnnnv07W9/e/HyU089pR/+8Ieq1+uS2qHOO++8c8n23/3udyW1g6yjo6NL9nf89qeSzWa1ZcuW067z+LCqJDWbzZNue7T2NysUCqd9LAAAAAAAsHqYPuoSdvnlly+5HEWR3njjjQ5VAwAAAAAAAAAAAAAAAAAAztbxXU6DINDv//7vL16+9tprlwQ777nnnsXfn3nmGX3jG99Ycv3jtz9fCoWCstnskmWnGru4d+/eE5Zt2LDhvNcEAAAAAADOHOHUS9hTTz11wjLLsjpQCQAAAAAAAAAAAAAAAAAAOBe33XabXNddsuxb3/rW4u/Hh1dvv/32xe3DMFzsonqq7c8XwzBO6Mj69NNPa8+ePSds+w//8A8nLLvrrrtWpS4AAAAAAHBm7E4XgAtj//79kqQ4jjU1NaW/+qu/0ve+970l26TTae3cubMD1QEAAAAAAAAAAAAAAAAAgHORTCZ1yy236KGHHjrp+uPDpqlUSjfffLMefvjh09r+VKrV6uIYxZNxXVejo6NLln3iE59YEpyNokhvfetb9bu/+7u6/vrrNT8/r7/927/V3/3d3y253jXXXKNbb731tOoCAAAAAACri3DqJWLr1q0rbvPv/t2/UyqVugDVAAAAAAAAAAAAAAAAAACA8+2ee+457XDq0e3PNZz6hS98QV/4whdOuf66667Ts88+u2TZhz70Ib3zne9cElA9dOiQfv7nf/6U+3EcR3/0R38kwzBOqy4AAAAAALC6zE4XgLXhIx/5iH7v936v02UAAAAAAAAAAAAAAAAAAICzdKpA6WWXXaaRkZETlt9zzz1ntP35YpqmPv/5z+tDH/rQaW0/MDCgL33pS6cdmAUAAAAAAKuPzqmXIMdxlM1mtXXrVt1222366Ec/qt27d3e6LAAAAAAAAAAAAAAAAAAAcA52794ty7IUhuGS5acKdZ7p9udTPp/X5z//eT366KP627/9Wz366KPav3+/yuWyXNdVf3+/rrvuOr3rXe/Sz//8zyufz696TQAAAAAA4PQZcRzHnS4CAAAAAAAAAAAAAAAAAAAAAAAAAAAA3cHsdAEAAAAAAAAAAAAAAAAAAAAAAAAAAADoHoRTAQAAAAAAAAAAAAAAAAAAAAAAAAAAcNoIpwIAAAAAAAAAAAAAAAAAAAAAAAAAAOC0EU4FAAAAAAAAAAAAAAAAAAAAAAAAAADAaSOcCgAAAAAAAAAAAAAAAAAAAAAAAAAAgNNGOBUAAAAAAAAAAAAAAAAAAAAAAAAALnH79u3Tn/3Zn+kXf/EXdd1118m2bRmGod/5nd855XWeeeYZ/dZv/Zbe8pa3aGBgQI7jaGhoSO95z3v0xS9+8QJWD+BCsztdAM6fZrMpz/M6XQYAAAAuAa7rKplMrrhdt71HPd3bBQAAAAAAAAAAAACd1m3fxwIAAABrycU6DvJ4Zzou8tOf/rQ+/elPn/b2b7zxhm688cbFy1u3btWWLVu0d+9e3Xfffbrvvvv0sY99TH/5l38p06THInCxIZx6kWg2myqkeuWp2elSAAAAcAkYGRnRvn37lj1h0Ww2tXVzVlOHwwtY2bk5ndsFAAAAAAAAAAAAAJ3GmEEAAADg3Fys4yCPd6bjIgcGBvT+979ft956q2655Rb9+Z//ub7whS+ccvs4jrVu3Tr96q/+qv7Nv/k3WrdunSQpiiL98R//sf7jf/yP+uu//mvdfPPN+uVf/uXzcpsArB2EUy8SnufJU1N36b2y5XS6HAAA0EF2j6UN7y3ISp18dqFD2bTWVesyJb082K/xnvziuiv/8FmNvCMnwzJUfrWhhacbirz4AlWObhHI14NT35DnecuerPA8T1OHQx14aovyubU/21W5EmnzTftXvF0AAAAAAAAAAAAA0GmnM2Zw6N6sctuTqh/y1Jrx1ZwN5c0GCmrRqXdsSMkRR303p2UlTY19fmGVbkFnbfyZHhmGoeILDQX1SEEtkj8fKH5T5iC/K6HBO3OSpIl/Kakx7neoWqAtMexocHdGdtLU2JeLCpd7LAPoeoYlDb4lp/R6R5ZrKg5jVfe2FPmx7Kwp7cgo1Qz05lFZlYythbyrwDYV2IYSv3dAQfX8PFdYaVP5KxJKDDpyC5acnKXIi1Q75CushIqjWFEoxWHcfj2NYsWRFn8UH7t8dJ0kZTe7StyQUS1n6dCGtCp5W6G9dKxZId1Ysb6c21p2ffz+ySWXN324V80pX4d/WD1h26F7s7JSpia/WV7xuBcFQ8puTSjRbynyY9XGfHlzwWlddcNP9CjRb6v4Ql1zj9VXudDz62IdB3m8sxkX+Ru/8RtLLn/uc59bdvsNGzbo9ddfVzqdXrLcNE398i//sl588UX96Z/+qf7sz/6McCpwESKcepGx5cg2CKcCAHApW39PQWZo6tDnSxrcnVX5laZqBz1N/d836u79YxqKpKTrSpIW+nplusfeO+TWpZTKJTX13bIqr/kyZcs0OnVLsGadYV45nzOVz1mrUwsAAAAAAAAAAAAAXMKWGzPYOhirf5erycer8haOpi4t2cby398GU1L9pUDr3lnQhncYWni2odZpBhTWCsM88tX2KfI4duTIsA21DtQV1mNJhiw50pvGSNRfiRRdZSg56GjLBwY190RN88/UT7nPJce3JBlS3F13G9a48LB0+Bt1bf5wr4ZvLpw0UAXg4tFzTUr9O7MqvtCQX/FkuYaSQ0mlRhyZjiHPMjW/Pq2FQkLVjK1qxpHvLA3Oba2Nr/i6fyqGLSWHHaXWOUqNOkoNO4rDWPVxX/5EqOLBuhqH/MWQ6dkqTnka//XLlyw7vmI7s/JBbHf59fFx75cae0L13ZxT8XFPUWvpgDgrcpTpd2VbjdN63b8YNPdFau47emON086kBIel3DpXmf5YJaPLJvJgHOR5s1Lo9Z3vfKf+9E//VK+99toFqgjAhUQ4FQAA4CKTGLBV2+8pqESavO/YzF11p/3Wz3zTJ+pNpbLsMJIdRYolGbahKIg18ra8mtPz8kvh8bsHzlikWFEXnKWLzvRsEwAAAAAAAAAAAACsYUc7pRnWmc9KXd3vaf6ZuvpuSCs54mj/38+fWzGGlBp1FAexWvOhYv/8fj+bGLKV2eQqs9lVcrAdpoijWI1JX7X9nsqvNBW96ZhT361owwcK2vTTPZr8dlnNqZOnSKe/W9GmD/fKMAz13ZhWbkdCxeebqrzWVOQtvQ25yxMq7EoqNXosHXPwnxfUOkxCFedP1IpVermp3uvTWni2Lr+89sdjADg7zWlfcRSr5+qUJCny269rc0/UVD/k6dX/cZVknL/OE6ZrKLXOUXJdO5CaHLBlWIaCRqTmpK+Zh6uq7Gmd8PrXrcqvNNV3S0abPtSr+SfrKr/aXFxXeqGhwpVJrX9fQdU3WgpqUbsj7GIn2FiK9KZlxy5HQXxJTU4x/1RdhV1JVfd5nS5l1XXLOMjjrYVxkc1m+/GVSqU6XAmA1UA4FQAA4CJjmIYS/e23eU7BUnZ7Qo0JX5FhyDdN1RxHB3oKGq7WNFKpyjdNBZYpI5Z6rkvLtA2Fre77AA0AAAAAAAAAAAAAwKXIsKT8FUlZCVNhK1JQi1Tb78kttDs7eWczMXUkzT1WU1iPNLg7q94bUlp4prG42sm3O7OdbjAuMWhrwwd6JLWDG5W9LfnFUHEs1fa35M2fWY2GYyi9wVFms6vMpoTstKmwGak25qn8cjuIarqGMptcDdyeUd9NaR36RmkxKOoXQx38pwWt+7G81n+gR4e+XFTzJCFSbyHU/JN19d2Y1uEHq0qvdzR4R0aDd2bkzYdqzQYKm+0h/73XpmSYx0JC9XFP3uwllE7BBbPwbF35nUkN7s5q4pvlla8AYM0zE0Y79PmmDFlzKtCBf1yQk7cUeVH7derNL7vnKZiaGLLVf0tG6Q2ODMOQXw3VmPRVfqWpxqQvv3hxNrgIm7EOfaWo3uvTGn5rTrmdCTXGfdXGPbUOB5r+TkX5XUkN3pVd8vp+uorPNzT7eO28T8ix1kRerDf+cq7TZWCN+8d//EdJ0u7duztcCYDVQDgVAACgS7i9lryFk5/oSa1zlN7oyu2zZDqGii+0vxDKXZ5Q/80ZSVL+wLhmMmmNVqo60NujRzf3nrCfHb/+mJweS958oPjiPKeEDgjjSGEXnGMLY0LZAAAAAAAAAAAAALqMIW38qV4l+m1FYSzDaE9q3ZjwVNnf7mAVB2f/hW3x+YbsrKn+WzPyiqFMx1BiwFbP1e0gZlCPpCN5jYlvlNSaOXkYs3U4UHVfS9mtCRmWocxGV9rUXtd/S1rFFxqafbim5Ro7OQVL6Y3t7qjpUUeGZag1H6j8alO1A56a0/4J1y+92JSVMbXux/La+BM9qh3wVHq5qfqYp7ARa/xrJW348R6NvDOvsS8sKGycWMDCM3WlN7oa3J3VwrN1HfzCgpKDjjJbXeWvSC5uF0ft6zYP+xr75+Jp38fAmYoDaebhqkbfVVBmi6va/ou/Wx1wMXJ6LOUuSyh/RVJO1lpcPv39isqvtLsM+sXwvIZDDVMqXJVSar0jJ2/JzpiyEqZa84EO/6Cq+iFPQeXSGUPVnA40+S9lZba46rk6pZ5rU+q/NSO/EiryYrVmAgWFSK3ZQDMPVCWz3ZHeMNvvt47en/mdyRP23XNNSj3XpPT6X8xe9AHVS0W3jIM83tFxkeXy0gktEomEEonEqh//W9/6lr70pS9Jkj75yU+u+vEAXHiEUwEAANY6Qxq+N6f8zqQOfb2k+tjSE8qma2j0vQXFUSwr0Z6ZNL3eUfmVpuafrCsOpYHbMiq0PBVankLDUDGVUK7Z0lCtvmRfhWtS7etvcFQf89ViBk8AAAAAAAAAAAAAANY00zEUh7FKL7Ynsg4qkXquS6nvhrTCVrRs4PN0zD9dV+7ypEbfVZAk+dVQpZfa3dTcXmtx0uzkoH1iONVsL0+NujLsY13Hpn9QUe2AJ8VSz9UpDdyRUWajq6AWtRvBmW8KftiSnbVk2u3bWZ/wNfNIVbUDpxegCWuRxr9SVGFXUoVdKa1/b0F+NVT5labKrzY1+e2yNv1UT7uD6leKCptL77A4kg59tai+WzLqvT6tvpvS8hZCJfqOBIJ1NKhiqHnY18Kz9ZMXApxHtX2eagc9De7Oqj4+r5ghPkDXSI44Grg9o9SIc9L18Sql3+yMqdH3FOT2Waof8lU/5CmsRfIWQtUOeuf8fqGb1fZ77aC/0W4Ukt2WkJU02iHerKWoFSuonfiew7Ck3I6E/Eqo/f97fvE+PPp/nBy0ZSUNBYRTsQZs3LhxyeXf/u3f1qc+9alVPebBgwf10Y9+VJL0H/7Df9A999yzqscD0BmEUwEAANYQt89SbntCds5S2IrUOhwo0W8rvzOpsBGpcFXyhHBqap0j0zG0/7MLWv/+gpycpdzlSc0/U1fhqpTCRiS/GsrJWtrXW9BkLivPtrVzZl4byhVFknyrPfOadXU7nGqnTek2qfRKQ4YMlV5pqDnFWWycnUixoi44e9kNNQIAAAAAAAAAAADAErF06GtFDb81r/QGV6ZryEqYmn2spqG7sorDWE6PdU5d16JWrP3/e052xlJYjxS9KWAx9Jb2MSa/XV7s3milDOWvSCo16io10h7TELYiNad8LfyoLhlqh1iPZDyKzzfUPOwrf0WyHUCNjnQhjdvB0DiM5Vci+aVQjSn/7LqPRe0uqqUXm0oM2MrvSqrn2pT6bkqrPu5r/pmG+m5Kq//WjA7/sHrC1eNQmnu0puKP6spscpUYcFQf91R5rSW/FMrKmO37xuN7Z1w4Mw9WtOnDfeq7Ma25xwlFA2udU7A0cFtG2W3HOhXGYaz5p+qq7m/Jmz9/HVIXGVJq1FF6vavClUlFfqyDX1iQN7cKx7oYxFJjwldjwl9ctOnDvYr8WMkhW625QPGb7jorZSqOpOobrSXh3uaUr/EvFS9c3bggumUc5PGO1jw2NqZ8Pr+4fLW7ps7Pz+s973mPZmdnde+99+q///f/vqrHA9A5hFMBAADWkNH3tMOljUlfyUFbvdekF9dZKbM9O+hxwkb72xrDlsa/UtTArRk5BUuRH6vnqtSSbQ/lc6ok2x8o9/X1aKhWU91x9MSGdYoNQzt/5ylJ7VnS1r+/R+kNrgzTUPbyhPb99RxfogAAAAAAAAAAAAAAsMb45UjjXy5KanfwWv++gvpvSR+5bGjDBwo6+E8LChtn/51/HEh+KZTM9iTaTo+l7BZXmc0JTX23rNZMoNyOhJLDjvI7kpKkxoSnuSdrakz4as0Gy3Zka04Hak6fGApdDa3ZQDMPVDX7SFXZbQkVrkxp6K6sJMlMmMteN2zEKr/akl5tLVkenUP4FzhbfjnSwrN19d2QVvnVdlAawNrw2p/ceuxCHGvLbFnbJ+b15leZ8mtNzT5aU1hfuQv4yWz9yI+WXZ9a72jw14aUqMQKElJp1NbhqxyFH88tbnPrwIEVj1MJksuuP9zMLr++nlt2vSS9vf+1ZdffmF25zicrW5dd33h0+Tol6WCt94RlcwdDDT3ra+NIr+I4ll+O5BcDGY6hRL+tsBZp4bnGivsGOi2fzy8Jp66marWq9773vXrppZd000036Stf+cqqh2EBdA7hVAAAgDUivcGRk2t3MD36pZGVMpS7LKnB3e0TI41J/4TrvfZr12vj3gOa/ZUrdTibObbiLmm85emyuXmtq9YkSZs//YKaU8f2MdVva/2PF3TPoddlp01ZP9snSQpbkRoTnrxiqOzWhKJmpDgkmAoAAAAAAAAAAAAAwFoWh9LEfWX135ZR4Yqk/Foo0zI0+u6CDn2zpKh5dt/9W2lTfTemF7ubvtnAbRnZmfZ4B78cauFHdRWfa6z5CbDjQKq81lLltZZ6b0hp4LasIv/sAkJApyw8U1d+R1KDd2U18fVSp8sBcBwzinTd2KxGizXVXFuJIFTTsbXwD4fVnApW6aDSwO0Z9V6bVi1p6NBNrhp9pk7aGQMrqmyyVNloKjkfK/lbc3J7LDk9ljKjbrsT7T/Pn/X7K+Bi1Gq19MEPflCPPfaYrrzySt13333K5VYOqQPoXoRTAQAAOiC7zZXhGKrsaclKmtrwgYLc3vZbs7kna4vbhY1YxecbMhxDA7dmVHqpecK+PMtSYBhK+ycGV6sJV8+uG9ZUtaYbJqdV2JVcEk5tzQUa/1JR696Zl5Vqz8s2/2xdsR8rOWQrOeKour+l+afriplcEWcpUqRu+PquO6oEAAAAAAAAAAAAgOVFXtzuDPpwVXEkJfptrf9AQVv+VZ/Gv1yUt3BmAwAym1wNvyMn02mHWhoTnmqHfAWVUIqlxJCt1kyg2gFPUas7wxkLzzRUH/fpPImuE4fS7GM1rfuxvNxe64wf3wBWV7bla12xPR4w4wU6nEvpmU2D2jY1sWrH7L8prZ6rUpp5qKrD/22QUOr5YBhq9hvyXjk2fnPbv+1X2IgJpl5CumUc5PEuZNVBEOjDH/6wvvvd72rbtm369re/rYGBgQt2fACdQTgVAADgAjJMad2788psSkiS8js9pYYdGZahiftKqo97io+bEK1wVVIDt2bUnPEV+Sc5kWEYaji2UicJp0rS+nJF107PSJJKLzdOWO8thDr4TwtKDjuys6Zq+701P3spAAAAAAAAAAAAAABY3tFJqFuzgQ58dl5bPtqv/tsymryvLEmys6byVyTlV0JVXm2ddB9m0tC6d+clSc3pQFP3lxVUlw5wr+w5+XW7TWtmlTrYAaustq+lsBkptyOpucdqK18BwAUxUqxpuFzToZ6MyilX5VRCc9nkqoZF3T5LvTekNfdkXcXnGwRTV1PcHg8KoC2OY3384x/XV77yFY2Ojur+++/X6Ohop8sCcAEQTgUAALiAMltcZTYldOgbJRmmNPruwrF1m1xFrViRH8srBooDycmbGro7J0mae7wunSIzWncc5VvesQXxkQ0NQ9PZjLyZOWnOU3Pq5F+kxKHUmDh5uBU4V2EcK4zXfuC5G2oEAAAAAAAAAAAAgLMRNmMFtVDZLQlt/FCP6gd99VydlOm2UxXVN2aWTKZtuoYG7sgovyMpwzTkV0Md+lrxhAm3AXReHEnNw4HcgtXpUgAcsWG+omvHZlVOuio0PU1HkfYN9az6cXuuSSmoRVp4tr7qx7qU2QVTpmuoMcmYy0tJt4yDPN6FqvlXfuVX9Pd///caGBjQ/fffr61bt16Q4wLoPMKpAAAAF0Dv9SnldiRlJU1Ffqz6mCfF0sJzdfVem5YkFa5MqXBlavE6Y18uyps79q3OSScxO7JsIp/TDZPT2rJQ1EQup90HxhQbhsYKecWSZjNpjUaRDFt8UQQAAAAAAAAAAAAAwCVo7J+LSgzaGrgto74b04vLZx6qLo4lSPTbyu1IKL8zKTNhyDAMNWd9TX6zzHgDYC2L48VxRAA6KzXq6LKxWR3sy+mFDf2667UJDZcbcoJQvr16IXLTMZS7LNkOpkYrb4+zt/497aYks49UO1wJsDoeeughffCDH1y8XK22/9Z/93d/V3/4h3+4uPyZZ57Rxo0b9cgjj+h//I//IUlKpVL6xV/8xVPu+8EHH1ydogF0DOFUAACAVZbZ4mrg9qwqrzdlJU25/bbSG11Ffiy/GOrwDyvqvT4tJ3/sxFNrLlBQDhX5seIwlmEZGn1vQVPfKcubD+XXQm14f4+cHkuZyWm9NNivA4W8ds3MadfM3OJ+NhdLMuNYThSpOevzRREAAAAAAAAAAAAAAJeoyIvVOORr7ItF2WlTQ/fmlNnoanB3VtnLErJcQ26vrciPZTqG6odaOvxATX4x7HTpAFbg9tqqj3udLgO4tBlSbkdCg7dnNZdN6sUN/ZJh6Iltw3rLK+PaNlPSq+v6Vu3wucsTMiyp9Epz1Y4BybAlp2CpftCTXyIFjIuT7/uam5s7YXm9Xle9fqwzcxi2Pye0Wq3FZWNjYxobG1v9IgGsGYRTAQAAVll2a0KSlBx2ZCVNmY6h9e8tnHTb/Z+dl18Opbh92UwYMqxj0xqOvD2/+HvYiLTwo7pGbzI0UKvru9u3aKyQ11CtrrTvazad0mQ+J8WxkkGgjX/21OrdSGAZkWJFR/+o17BuqBEAAAAAAAAAAAAAzlksBbVIC0/XFVRDxUF7fIKz3pHU7rw293hN80/XV9gRgLUgvcGRk7dUfpVAGtApyRFHw2/Jyu21Vd3b0tM3Dyk22uP+BioNOVGs/urqPUatjKm+m9Kq7fcU1ghMrqY4kBRLiUGiOJeabhkHebyzqfnee+9VHJ/+9c50ewAXF14RAQAAVtncEzV5xVCmLYWtWJXXW7IShrLbE+q/OSNJi91REwO2/NKxGUejVqxDXy9q/ft6Ttjv+FeK8hZCmbv71Nts6eZDk3pi/TpVkonFbdwgUF+jKSOO1YWfiQEAAAAAAAAAAAAAwCppTPpqTPqSJDtnKr+jX5JUeaNJMBXoAmaiPdao76aMWvOBmtNBp0sCLkmp9Y5G31NQaybQwX9aUGs2kP+T1uL6bLP9Whuaxql2ceYMKb3ekdNjy+2xlN3qKo6kww9Uzt8xcEqV11vK70jKTEoR8wIAAC5xhFMBAABWWVCNtPDM0i9twro0/3RdkRfLTpsqvtjQpg/1yi1YS7ZzCpbWvavdZTX0Ilmuubhu88/2ac+fzuhH64a1c2ZO66o1DdbqmslmlPZ8rS9XtH1+QUdPaR3stdWa4yQ0LrxIscIuSEd346xmAAAAAAAAAAAAAHA+WIn2eITxLxcXA6sA1ibTMdR3S1qFq1IyLUORF2nqfgJpwIU0+aVdkiS3GermB4sq9th68T0Div8f7dF6O37i8faGpjT89ryiza7qfzWpHbNj53zsxJCt4XtzSvTZikwpyErVQVPFnZaiT4zqzRHYQbe67L6KfmrF40Wxuez60VRp2fVVP7Hs+tOpY9zrW3EfK0lZK7+/ydjesusbR/+d8pTfkVRqxFVt//LXwcWjW8ZBHo9xkQBWG+FUAACATomk4nONxYuGaaj/1oyy2xMybEPzT9bUc01Kpt0+XRQ2YtXHmgrrsUzXUGPS19Bbsrp838HFfQzU67KjSNdPHV5yqL29PQrnZi7M7QIAAAAAAAAAAAAAAF3FTLTHJgT1qMOVAFhOdntCg3dmZLqm5p+qq/pGS34llHjoAh2x/ZWaQkt65dqcYmtpZ1SnYGno7qyS6xxNfaus1uy5NZawc6b6b80of3lSzWlfY2+31eozJOM8dmTFaTnaqToxaBNOBQBc8ginAgAArBFj/7yg7PaE+m/OSJJG3p5fXNdyTH33PeuXnEi66aVZFRaaS/bR02hpY2npTIhPrRvRTCaj7dqzitUDpxYp7orZt7qhRgAAAAAAAAAAAAA438yEocIVSYWtSH457HQ5AE7CKVgavCurzEZX1b0tzTxUVVAjkQp0khHF6pvxdGB7WoF7rLuo2ww1/NaccpcnFDYiTXy9pMbE2Xclt5KGem9Mq+eqlMJmpOkfVFR+pSnj/8icj5uBs+DNhYrjWG4PcZxLSbeMgzxeN9YMoLvwaggAALBGeAuh5p+sy+2xlN2akPGmmdSe3dF3wgxnL28tqJGwNDDn6WAhr52zc+pptU7Yb0+zqZnMsRNRpmsod1lCZsKUnTXl5CxNf7essMkHUAAAAAAAAAAAAAAALhXJdY4KVybbYxQM6fADVTF2HVhb0htd9d+SVmLQVlCJdOgbJdUP0qUPWCsiw1C+GMgIY8WWISuIdM2TZSU2upp5qKryK03FZznvg2FLPdem1Xt9SoqluSfrKj5fV3xuDVhxHhmkcQAAIJwKAACw1sw9UZeTs2TnLBXXpTRQamn7eEWDxabqCVuH+1JqJSzVU45e2t4rI5uQJFVdVyPVqjaW251TfzQ8pMvn5pX222ej8lck1XNNSk7BkmFJxpvCrlbKVNhk9lMAAAAAAAAAAAAAAC4FfTem1X9rRl4x0NwTNVVebTKpNbDGFK5KavCurBqHfE1/r6Lq3taqhdJM11ByxFEcxGrNBYpaPB8AK4lNQ69dk9VVz1S0+ztzaqQtJeuhYtPQoa8W5S2cbSq1Pdav/+a0rKSp4osNzT9dV8Tr9NpxpFFu7PN/AgAA4VQAAIA1xi+FGvtiUZI0+0dXauD5GQ2UWhooHemKureoJ3f1a6YvtXiddZWKds7Oqe44i8t2zczKjSK9ms1opFLR8L05Vd5oqba/JSdvKbstodZcoOkfVM7+RBhwGsI4Vhiv/RNx3VAjAAAAAAAAAAAAAJyL9CZXfTeklVrnaPbxmhaerne6JAAn0X9rRn03prXwo7pmH6mdt/3aGVPpja7cXkt21pKdbSesUsPHxhzFcSy/GCqoR0u6KcexFJRDtRZCNQ55i+ONUuscjb6voNiPVXqlqfq4175+LTpvdQNr1dxwQk/daWr9/qYcL9JCv6NSr628O39W+8tscTVwW0Zur63ya03NPVFTUOGxtNbkr0jIMAzVxuhkfSnplnGQx+vGmgF0F8KpAAAAa4SVNOT22wrrkbxSKDtj6tYXZhbXTwykVE07SjUDlbLukuuOVKtKhqGS4bGQqW9ZenFoUNOZjN75xl5JUmrEVm57QpEfa/6puuafrUucuwIAAAAAAAAAAAAA4KJlmFJ2W0K9N6SV6LfVmPI18Y2SagcJVABrjikNvyWn/M6kZh6uqvhc47zsNrs9ob4b288BcRTLL4fyK5G8hUCKJcOQ6uOeyq+2lByxlRiwZSfNJfswLEPJYUe5nUmZdlZ+OVRj2ldq2JFpG5JtqO+GtPpuSEuSoiCWXwrll0J5xSP/lgL5pVBhg6AMLh6b3mhocPrIa+qsrw0HJP1kr/b/7zn55WUG5xmSmTDkZCyl1jvKbU8oOeyoNuZp6v4FteZWqVUyzlnfjRnFUazKq61OlwIAQMcRTgUAAFgNppQedZRc58jJWAoakcqvNBXUI1lJQ73Xp2VnTBmmociLFNQj9V6bXry6XwllpUyZsfTKloJmexKqpJ32meCTeGZkRAP1unqbTaX8QMO1mjK+rx1z85rOZvX4+lHtvO91RV4sfyFUfcJXWCeVigsjUndkoLuhRgAAAAAAAAAAAAA4HbnLE0pvdGWnTSUGbVkJU7WDnmYeLKox6Z/z/u2MKRlS5MeyEsby4RsAp8XttTR4d1apYUeT95dVff3cQ0+GLY28I6/sloSq+1uaf7qu+rinqHXqcKhfCpcNXBmWlBp1ldnkKjFgy3AMRUGs1kygxrSvyqtN2TlLbsGS09P+N3d5QnbWlHFk7FPYio4FV0uhmocDNQ55isNTHhZYk5xWpIFpT3t2ZTQ7kpDbinT1U2XZ5eDk3YON9mt0z9UpJfptGVb7MREFsRqTvsa/WlTj0Lm/TmP1DOzOyMlaWniO7vOXmm4ZB3m8bqwZQHchnAoAAHCe5S5LqP/29gmIoB7JL4dKb3bVc02qPUvgm1T3tpTdlpBhtpdPfaesoBap9/q0MjlLknTF/pK+fdvoKYOpkiTD0Gwmo9A0tblYkhXHiiS91t8nSSqmUpp9qLYqtxcAAAAAAAAAAAAAAKwNVsbUyFtzSm9w1Zz25VcjLfyoodq+lryF00t9OQVLyeF258REvy2nYClqxgrqocJmLCtpKrPJXXKdqe+UVdlD9zDgbOR3JdV3Q1pO3pJfDjX+tZKa5yFELkmDd2WVXu9q4r6SavvPT7fkOJTqY57qY6fen7cQ6vjYlmFJTt6SU7Dk9hz5t2Aptd5V/82mIj9W7aCn2v6Wagc8RR7dVbF23bvhdUlSPGYrVlY7rp3Uzlw7Aha9kVVYNlW4OqXWTKCgHsm0DSUGbfVck1Kiz9bCsK2pQUde0lCQMFUrWIqtpeMDZ/f1LVvDOm/mnG9HEJkrbtOfWD6Eubc6sOz6YjO14jFMY/nHe8Jc+T3MC/Mjy65fny2tuA8vspZdP3BHWj1Xp+RXQs0+zHhMAAAkwqkAAADnldNjaeQdeTWmfU1+s6zWXCCpfXK1/5aMeq9vd0ctv9JU+bWmGhO+ht+aU35nUnEYL35R05wuafsnBmSYhp7e2afAPvVJoGyrpcA01XQc3TQxKTuO1bQsvTw4oOlsdvVvNLCCULFCrf0vDLqhRgAAAAAAAAAAAAA4lexWV0NvySkOYx36WlH18WXCbaaU2eQqOeLIkBTHkgwpPeooOeRIkrxSoNZsqOZ0U2bClJ02ZWdNxYEUx/FiB0RJah4OVvfGARepzBZXw2/JqTUfaOH5uoJqpPQGR6Yt1cfOLaCa3uCocEVK09+rnLdg6rmIw3Zo1VsIdXyky+21lNmSUHaLq5G35xVHsRoTvipvtFR5rUlHVaxdtSPj+jLHehMa76qq/ltJ9d+SWdLMIo5i1cc8TX+voqm/2nqhK8U5Gng8UO7atPxKpAOfm+90OeiAbhkHebxurBlAdyGcCgAAcB4FtUhBI5I3HywGU6X2ydXZR2uaffTE2bKq+1syXUOlFxuyMqZy2xMKapEmvlHSq5/apVbi1LNx9RebunVsVpL02PpRzadSGqrXlQxD3TA1re9sTcm3lp/NCwAAAAAAAAAAAAAAdC/DMTS0O6v8FUlV3mjp8A8rilqnHoSe3uRq6K5su0tjJVQcxpIhSYa8+UAT95VUP+Qr9k++j9Soo8ymHpVeamjh2br8cnTS7QCszEy0g2uJPluJPltxGCtsxeq/KaPmYV+V19vhzLB55sGS/tsyqk94Kr/aPN9ln3ft0GpdC8/UZWVMZTe7ymxNaOjurPpvzaj4fEOlFxp0U8WaE89YUiGU8abeE4YrTd1fkYyK3B5LZsJUHMTyq6Gis3gso/OGHg6UHYvlFUMd+PyCxFsfAAAWEU4FAAA4j2I/1t6NA9qWXtDYB65Qyz71263BWlVmHGtP/kh30/dJm+dK2jY9t7hNNF7SS5f3KJa0frqujZM11dKOnt/RI9ePtGWyurjtbYcmFEexZBqq7mtp/qm6Ns3OrNZNBQAAAAAAAAAAAAAAHZYYsrXhHb2yU4amvldW5dXWstsPvSWrwq6UamOeJu4ryZs/+3aE1X0tgqnAOaq82lJzal6mayhsRgqqkRS3Q+C916fUf2tG/bdmNP3dsqp7T7/7aXLIVnLQ0aGvFVev+FUS1iKVXmqq9FJTTt5Uz3Vp9d2YVt/1KZVebqr4XENBjecedF7sSTrgSJed4rEZt4PXEq1/u9nQg4Gyh2I1e6SxP13odDkAAKw5hFMBAADOs0OFnLbNL+htrx9Qy7L07OiQ6q6rvnpDw5WaEmGoF0YGdfPYtCRpX19Tewb7FFimxntyig1p63xJGS/Qxqm6ItNQM2Fp576yJClf9fXi5T3aOl7V0PyxmQ3DVqSFZ+qq7vfkFzmhhbUjjNs/a1031AgAAAAAAAAAAAAAb7b+fQWFxUgTXy+vGBQduCOjwq6UWnOBJr5eOutjNiZ8eQuBClelVB/zz3o/ANr80onjfBoTvhoTvsyEoaG7shp5R16Hf1BReYUA+lHZyxOK/Fj1Q939GPXLkWYeqGr+yZp6rkmpcFVKPVenVN7T1MKzDcZIoaPiJ1JSYMi4+vQel+g+qclImUOxWj3SxI9Z0u91uiJ0UreMgzxeN9YMoLsQTgUAADjPmo6tB7dsVG+jqSsOz+m2scnFdQvJhArNlu7eN7a4bOt8WSk/0NMbRxRapgxJLctSRoEkafNEbXHbStrWU1f3KzINHRjNyIhjbTnUXm8lTFX3eSc9YQ0AAAAAAAAAAAAAAC4+C8/WVflRIL1p0Hl2q6vM1oT8SqjSi02F9UhOwVLvdWmVX2tq5oHqWR/PMKXR9xXk9tryK4xPAFZb1Io19d2KhrxYw2/Ny0xWVfxRQ4YlmY6hyI8Vv+mhaCYMDd2dVe6ypGYfrS55buhmYSPW3ON1zT/TUGFXUj3XplS4IqXqvpYWnq2rOR10ukRcYuJpS3rZlXF7Q0b2Inmg4QQDT4aSIU3ea0mm2elyAABYkwinAgAArIKG66jhOprJptVXbygyDFUSCTUdW/21um49Eljd15eXZ1k61JOTE4TavFDW5vmyEuGxs8a+Zcg5MnXR+LqMXD9SMyk1k7Zme5OL4VRJSm90VDoSTk1vchUHsRoT3T0DIrpfdORnreuGGgEAAAAAAAAAAADgzdIbXQ3d1KPIixS2YlkJQ3bGUnPGV2azq/6bMmrNBirvaUqSDKsdZjtbpmsovd5Vaz7Q5L+Uz9fNALCcWDr8QFVhK9bgHVkVdiXl9hwbAh56kap7Wlp4rqHRd+dlpUxNfrus6hsXXzfH2I9VfK6h4gsN5S9PqPf6tDb+ZK8aE57mn22oftDrdIm4FBhS/GBaGgylK/mbu2hFkey61ByQogTBVHTPOMjjdWPNALoL4VQAAIBV5FuWpnPZJcvm0ikVkwn1NFuyo0gHegtqOrauH5/WaLkdNH1tsFfjPTnlEzXN9iV1649m1FfytOuNknzL0Hd2j0qSZnsTS/Y9eGdWQ3flFHmRTLd9QmTy/rJqBzzF5/DlEgAAAAAAAAAAAAAAWHviINbcEzWZriEzYSj2YjUmfdXHfZmuocxmV4WrUhq8I6ugFqr0YuOcjhc2Y80/XVfv9SllNruq7iWUA1woc4/X1DzsK78zqeJzDQX1SKZjLHZGLlyVkiTt/9y8/OJF3tk4ksqvtlR+taXMFle916e1/r0FteYCzT5WI6SKVZUccaQFS8b7KzLILF60kjOSIak+wn8yAADLIZwKAAAuOU6PpfzOpNyCpTiW5p+qyZu/gCdkDUOPbxrVhlJZl88saGOxqlLSVb7paTKX0UI6qYO9eUWmIa8vKUl6fVNe1746r6QX6YUdvUv2NfNIVfVxT5t+uleGaUiS6hO+olas/M6k1r0jr6nvllV57eKbDRHdIZKhUEany1hR1AU1AgAAAAAAAAAAAMCbTXyjLNtwTrou8mJV9rRU2dOSlTQUNs/PpNZzT9Tk5E2te2dBC8/XNfdITTEtmYALorbfU23/icHL2oH22CFJCpuX1gPy6H2SXOeo/6Z2SLX0UkOHH6zSLg6rIrPJlVKRNHyRh8AvcU6l/b7JKzCmDG3dMg7yeIyLBLDaCKcCAIBLip0xtflnemVYhmoHPaWGbRlWRpP3lS9oHaFpan9/QQd7cxqq1jVSrqmcdPXS8IBC68SZtuZ7E3ptS17XvlbUjn0lHe5PKjYNKY5VfaOlzGZ3MZgqSV4x1NyjNfnlUP23ZBRUOdMKAAAAAAAAAAAAAMCl6nwFUyVJsTR1f0WNSV8Dd2aVGnE09e2ywmaszGZXTt5S6cXG+T0mgGW1ZgLt+V8zslKmokv0sdec9HXoayXldyU1dFdWpmNo6rsV6dK8O7CKUqOOMqN1DafmTrlN/4+Sy+7DMZ5b8TgTQz3Lrr9/344V9+H2Lh+gvSw3u+I+VtKXqC27Pu80V9yHbS5fZyuyVtzHuszyY0C3Zk79/3XUczcee8Kwbk1LN2bU+uXDCkuMvwQA4FQIpwIAgEtKHEthK5adNhQHsaJWLMPq3KxAkWlqKp/VVD57ym1cL1Rv2dPUYEoJP9LOfWXlar7KOVfDs01t/df9i9uGXiTLNWW5hgxLKlyVUm3MU2PCvxA3BwAAAAAAAAAAAAAAXCJKLzbVnA408mN5bfqZPpnOsfEXzWlf9XHGKgAXVCyFdQJU5ZebCpuRRt9VUO2Ap8rrrU6XhIuIkzeVGnaU2T7f6VKwyuyspTiO5Vd4XgUAYDmEUwEAwCUlrEc68Ll5Fa5KKr3BVVANNfNQtdNlndI1r8xr/eGGJOn5HT2aLyQkSa4fKdEKdd0r7ZNc9UOeDn21JEkafltOhStTKlyZkiRNfHP5mcmA1RbF7Z+1rhtqBAAAAAAAAAAAAIC1pDUbaObBqta/ryBJCmqhpn9QJZgKoKNq+zzVD3nKX5kknIrzKndZUpEXKb2VMXkXOytttn8hm4ojumUc5PG6sWYA3YVwKgAAuOREXqyFZxpaeKaxKvu/7FcfPW/7yv+f6xZ/37m3pEbaVjVtqTRgy/VDmUc+NIbNY58ep79b0cIzdeUuT8qvhGrNBOetHgAAAAAAAAAAAAAAgKMSQ7YG7sjIK7ZDqoRSAawVpZebWveOvNw+S9582OlycJFIrXdUH/dlOqS9LnZ20lTMUwcAACsinAoAALBGGbaUqx0Lloa2oVzF15M39Ss2DbUSlvZsz+nyNyryy6GslKGw0T7p5S2Emnuc2dmwNoQyFMrodBkr6oYaAQAAAAAAAAAAAGCtyO1IaPjenPxSqOnvVdScZvJsAGtHdW9L3kKgoXtyGv9SsdPl4GJgSMkhR3NPMi7vUmDnTEUt2qbimG4ZB3m8bqwZQHchnAoAALAWGdKmD/UuWRRYpioDjsp5Z3HZ2Ia0hr85o74b0spscnXw8wsXulIAAAAAAAAAAAAAAHCJSQzZGr43p/KrTR3+YVWigRyAtSaSDj9Q1YYf71Fmi6vafq/TFaHLuX2WTMdgMoYuYZal/AuSsyCZLamhvvaKI+9ZDCeW0RvKHPKl0FBUMTX8Vqm6v6WoFcl0DdWn6QgPAMBKCKcCAACsQYYpma65ePnghrQ2jdd1YFNmcdnGsZp27qko3ORKkmpjnEAFAAAAAAAAAAAAAACrb+D2jFpzAcFUAGtaY8JXY8pX4coU4VScs+SQoziK1ZolsLimRdLAv0juwpG3KKYUOZLMWG9uIBm3DMVjjqIx9+gS5XZI+Z3J9qUw1uEHqxe4eAAAug/hVAAAgDUoDqV9fzOnA/94jWwv1NUvlRRYhmYHEovbtBKWJMkvh5r8dlmNQ5z0wtoUylD45jN7a1Q31AgAAAAAAAAAAAAAa0Gi11bxxQbBVABrnmFIkRd1ugxcBFLDjlpzgWIap65tUbtbqiQdfp8UFtq/b88unLhpJMWHbRluJOUjvXSvoexWV6lhR8XnGwrKPHfgmG4ZB3m8bqwZQHchnAoAALDGbZhoqH/e0zPX9ypwTBlRrMveqKiWsVXMO8qHsfxS2OkyAQAAAAAAAAAAAADAJaIx5avn6pTq456aU6R0AKxdYTOSlTY7XQYuAslhW/UjDSS2JQ4vu+2Y17/s+kqYXPF4e6vL7+OK4eVrkKT+RG3Z9eUgsex6SRpOVJZdvzk1u+z6fY3BFY9xuJlddn3Oaa24j9o9M8cu/LsBeeVI5Q/MLy567pTXfHNTkFjlF5sqv9hc8XgAAKCNcCoAAMAaNjpR12V7q6pmbM33tU8E2WGszWP1YxtZhgyLmY2wdkWxoShe+3+j3VAjAAAAAAAAAAAAAKwF09+raN2781r/gR4d/n5FlT1HQiOG5PZaSvTZkinVD3oKm7RXBdA5zZlA+StWDgICyzFdQ26vrfmn6ytvjI4L65HcgqVtH+/Xoa+X1JphIg2cu24ZB3m8bqwZQHchnAoAALCGXfFqWZLk+NHiMt82FJrS2IaMyjlbhd/eR+dUAAAAAAAAAAAAAABwwURerENfK2no7qxG3p5XfpcnwzCU6Ldkusc6FM49UdP8UwR5AHQYGXmco+RQO3bRPEzIcS3LX5lQ/80ZWcn2exEzYSgxaBFOBQBgFRFOBQAAWKPcfkvmSU6MZuqhrEgqFRzNDCaVmieYirUtlKFQa3/2rW6oEQAAAAAAAAAAAADWjEg6/IOq3B5b6VH3hNXl15oqv9LsQGEAsJTpGDJMKY5W3hY4meSwo7AZ0URijUuvd2WnLUV+pLknaio+31BMLhXnSbeMgzxeN9YMoLsQTgUAAFijBm7LKpb04pUF1VOWJGnjWE0791TUTJia7U90tkAAAAAAAAAAAAAAAHDJMyypNRfIWwhkpUw1Jn2VXmoqrJMCA9B5lddb6rsprfyupEovEpjH2Umvd9Sc9jtdBlYw9Z2KstsSas4EWnim0elyAAC4JBBOBQAAWIPcXkvpDY78hUCJ//i6EpJ6JQ3dk5WuTGnha0Vt+vR0p8sEAAAAAAAAAAAAAACXOkOK41hT91c6XQkAnMAvhqrt89R7Q5pwKs5K4aqkUqOuJu4rdboUrCSSYj+Wk7M6XQkAAJcMwqkAAABrkJU0ZZiGzISpDR/skZU2VN3nqbKnpcKVKQXMLoouEspUKLPTZawo7HQBAAAAAAAAAAAAANBl7KypRJ+t8qsEvgCsTVbaVHLEUdRivBXOTuHKlKp7W6rt9zpdCk5D43Cg9HpHG36iRwvP1lUf9xQHna4KF4NuGQd5PMZFAlhthFMBAADWoMakr0NfLym3IyHFUmpdUn3X2+q7Pi1JCqp8XAQAAAAAAAAAAAAAAJ3Ve0NaYSvWzMPVTpcCACfVe31KhimNf42ulzhzdsZUot/WwjP1TpeC0zTxzZLWv6+g1DpHo+8uSGp3eFckRWGsoByqPuGrurel5mwgxVJy0NbA7Vklh2zNPVnTwtONDt8KAAC6B+FUAACANao+5qk+1p5tze2xlBxyFtel1jmqVFqdKg04I3FsKIqNTpexorgLagQAAAAAAAAAAACANcOUcpclVHqxQUcyAGuSlTJUuDKlhWfqCmt0TsXp+X/teW3x95e+vV1Tr/n6yJdekpM41lBiizO/7D622HPLrn+8uXXFOv7VuseXXf98feOK+1hJ0U+vuE0rWj5yUg8T51xHzll+LOSm1PL3tyQVnkq96VJNUVOKX01IJUtGw5BXc2Q2DbkJW4kBR73XLr3tsWIplvpvyUgytPA0gWQs1S3jII/HuEgAq41wKgAAQBeY+GZJVspU4cqUrJSp2n6v0yUBAAAAAAAAAAAAAIBLWKLXlpUwVTvIGAYAa1N2e0KGKRVfoAsizlx1LqXx54e18y37lwRT0R3MpKTrjoVeS838sXULUmJMMmvt0F6UidXaKM39xLy2fqRP/bekJUNaeIqAKgAAKyGcCgAA0AXCRqywEWrmwWqnSwHOWChDodb+7FvdUCMAAAAAAAAAAAAArBXJEVtxFKs1S9tUAGtTap0rvxIpasWdLgVd6LUfblEq39TG6yY7XQrOs6hXavRK0nHPDYG077NHAqo3pxWUQ1X2LN/VFZeObhkHebxurBlAdzE7XQAAAAAAAAAAAAAAAAAAAAC6h2FLvdenVTvgKSabCmANSm9wlNue0PyTtU6Xgi40d6Cg2b19uvzuAzJtws2XlCMB1TiUBu/KdroaAADWPMKpAAAAAAAAAAAAAAAAAAAAOD2GNPL2vMyEodlHqp2uBgBOYFjS4N051Q95dD3EGYtj6bUfbFFhXVnDO+Y6XQ46IZCaM75Ml46TAACsxO50AQAAAAAubmFsKozX/rw4IZMcAgAAAAAAAAAAAMCKBndnldnsauKbZfnlqNPlAMAJem9My8mamvhmqdOloAvte2yDKjNZ3fqR52SQTbxkJfpshQ3e5+CYbhkHeTzGRQJYbYRTAQAAAAAAAAAAAAAAAAAAsCzDkobflld2q6vDD1RVH/M6XRIAnCC7zVXfjWnNP1mXXww7XQ66TG5nQq8/NKjtdxxUz2il0+WgQwbuzMhKmFp4vt7pUgAAWPMIpwIAAABYVZEMRVr7M4ZFYoowAAAAAAAAAAAAADgZM2lo9N0FJfptTX6rrNp+gqkA1p7MFlfDb8+r8npL808RKsOZSW9yNfyWnDZcO6Vtd4x1uhx0iOlKPdek5FdDzT5U63Q5WEO6ZRzk8RgXCWC1EU4FAAAAAAAAAAAAAAAAAADACQxLKlyVUt+NacWxNP7VolqHg06XBQAnSG9yNfrugqp7W5r+Hh0vcWYSQ7bW/VhetQOervg/35BhdLoidEp2e0KGYWj2UYKpAACcDsKpAAAAAFZVKEOh1v4Z226oEQAAAAAAAAAAAAAuCEPK70yq7+a07LSp8stNzT1VV1iPOl0ZAJxUZpMrrxho8lvlTpeCLuMULI2+p6DWXKCp+8vK2a0Vr1OJ3GXXN2Nn2fU91srBx6ThL7v+itTkivuYDXLLrm9FK8dJhtzlw97mCl0ZNyfnVjzGgWb/suv9yFpxH9dnDi6/QWbFXeizGpVfbr/XSQ3bqr6+8t8CLh3dMg7yeN1YM4DuQjgVAAAAAAAAAAAAAAAAAAAAkqTsNlf9t2Tk9tqq7Glq7sm6/FLY6bIAYFmmYyhsLh+SA45npU2tf19BYSPSxDdLinm5u+RFfvt5pHBVSjMP0T0VAICVEE4FAAAAAAAAAAAAAAAAAAC4FJlSfkdS6Y2u7LQpO2fKyVqqHfQ0df+CWnNBpysEgNMS+bFMh+5wOH12ztT69xdkWNLEV0qKWoSbL2XNkqMt/7pPdsZUHMdqzvAeCACA00E4FQAAAMCqCmNTYWx2uowVhTEnmAEAAAAAAAAAAABcOuycqZF35JUcstWc9OWXQzWmfNUOempO+p0uDwDOSBzFMhgZj9OU6Lc1+r6CIi/S2JeKCqpRp0tCBzUXXL349ztlZwxVXmtp5rGaojp/E1iqW8ZBHo9xkQBWG2/BAQAAAAAAAAAAAAAAAAAALhFO3lR+Z1I916YVNiKNfbGo1mG6gwHoYoaU2ejyXIbTkhp1tO7defnFUBPfKClsEty6FAVNU4ef71fx9YLq02lJ0uS3yqrt8zpcGQAA3YVwKgAAAIBVFclQJKPTZayoG2oEsHruvfde/eAHP1iyLH7TzIGf+tSn9J//838+5fUty1I+n9fWrVt1xx136Od//ud16623rlq9AAAAAAAAAAAAZyq7zdXg3TnZKVORH6v4YkMLT9UV+YRyAHS33GUJub22pr5X6XQpWOOy2xMafltOjQlfk/9SUkye+ZI09eSgxh9aJ8WGpFjJ/qa2vvOg9vxpX6dLwxrWLeMgj9eNNQPoLoRTAQAAAAAAzlEYhlpYWNDCwoKefvpp/dEf/ZE+/vGP6zOf+Ywcx+l0eQAAAAAAAAAA4CKX25FQdltC6VFHMgzFUaw4kuIwliIpjmI5eUu1g55KLzXVnPQJpQK4aBR2JVU72KJzKpZVuCqpwbuyquxpafr7FSnqdEXohPnXChp/cJ2sRKjNbx9Xz2UlmWanqwIAoHsRTgUAAAAAAFgFf/VXfyXHcfSZz3ym06UAAAAAAAAAAICL1PA7cjJbtnquTqk542v+mYbiIJZMyTANGdaRf03JL4cqvdIkjAPgouIULCVHHM08WO10KVirDKn/1oz6bkhr4dm6Zh+tdboiXCBe3dLU48NqzCUVNi2FnqVWyZVhx7r6Yy/LSfOmCACAc0U4FQAAYBXlLk8ovzOp9AZXzRlfh75aUuQx8yguLZFMhVr708tF4rEJ4Mx89rOf1e233y5Jmpqa0j/8wz/oD//wD5ds8+d//uf6v/6v/0tbt27tQIUAAAAAAAAAAOBiZ2dNZTcnJEkLzzZUfaPV4YoA4MLqvTaloB6p/Gqz06VgDfjPe59acrleSejBr16nmUMp3XDvK7ry1/erz1r+b2U+TK54nP3+wLLra1Fi2fXXJMdWPMZE0LvsestYOVg5YFeWXe/H1or7KFiNZdfPB5ll11fD5e8LSSp6qWXX+9HKdT51w9LxafkrExq6KyfDNBTHxzrKh7VQk/eX9dr/HFlxn8Cbdcs4yOMxLhLAaiOcCgAAsEqG3pJVYdexkybJQUcyOlgQAAA4r0ZGRrRlyxZJ0pYtW3T77bdrdnZWf/d3f7e4TRzH+s53vqNf+IVf6FCVAAAAAAAAAADgYnboSyW5yYay2xKqj3udLgcAVp1hSclhR+n1jlLrXaVGHBVfbCgOO10Z1prJ/f168GvXyjRjveNfPa7hjQudLgkXgJmUslsTGro7p8iPNfkvJTUO+Z0uCwCAixbhVAAAgNVgSoVdKfnVUE62PWvX5LfLilrMQIRLTxibCuO1P2NYGPP4BHDubr/99iXhVEmamZnpUDUAAAAAAAAAAOBSELVilV+mYyCAi1t+V1KpUUeZja6spKmwEak+4Wn6B01V9vAciGOiSHr+ocv0/CPbtW7LnHa/7zklM0zgcCnI70po6J6cDMNQHMYa/+KCvIWVO8wCp6NbxkEej3GRAFYb4VQAAIDVEEnNaV/JYUfVfS0Vn2+oMcHsWwAAXOxefPHFE5b19vZ2oBIAAAAAAAAAAAAAWDvsnCm315ZfDOSXzywsZqVNDd2VlWEZquxpav7Zurw5WqXiRPVqQg999VodHu/T9Xfv0VW375VhdLoqXCj5K1IyDEO1sZYOP1BVcIbPNQAA4MwRTgUAAFgl418tyrAMuqXikhfJVKS1P2NYJB6rAM7e9PS0Pve5z+kzn/nMCevuvvvuDlQEAAAAAAAAAAAAAGvHwG0Z5S5LSpJqB1qae7Ku1kyw4vXcfkvr39+jsBVr/EvzZxxsxaUjvcHRN/7qThlGrHf8q8c1vHGh0yXhAiu90FBy0FZmY0JbPuIqrEeqvNHS/NM1RTRYxjnqlnGQx2NcJIDVRjgVAABglcSBFAd8qAMA4GL11re+dcVtPvjBD+qqq666ANUAAAAAAAAAAAAAwNo1/1RdqXWO7IylzOaEMpsTkqTynqZmHqoqap44zip3WUKDd2fll0Id+kbppNvg0mImDPVel1YUxPJL7e65dtZUdltCqWFHvUOz2v2+55TMeB2uFJ1Q2dNS5Y2WMptc5Xckld7oqPfatHquSam2z9Pk/WWJfDsAAOcV4VQAAAAAAIBV8Na3vlV/8zd/0+kyAAAAAAAAAAAAAKCjjCMj1se/WlJyyFbv9Wkl+toL85cnlb88qYOfX1Brrt1J1UoaGrw7p9z2RDu8+kBVkUcwFdLQ3VnlLksqbEayku0OhpEfqzHla+JfSvro/U/KMDpcJDorkmr7PdX2twPKyXW2hu7KKbstoc0f7tWBz9FRFwCA84lwKgAAAIBVFcaGwnjtn/XthhoBrH09PT2644479LGPfUwf/vCHZfCtFwAAAAAAAAAAAIBLjGFJw/fmlBhyZDqG7LS5uK552Ff9oCe/HCqz0ZVhtb9T3fATPTr8g4rCZqTht+VlGNLkt0qq7qUDJo5pzYfKSRr7UlFhPZLidjj1KL6ix/Gak4FmHqlq/fsKcvJWp8tBF+uWcZDH68aaAXQXwqkAAAAAAABn4bOf/axuv/12SZJlWcrn8yoUCh2uCgAAAAAAAAAAAAA6y0yYyl2ePOm65JCj5JBzwvLq3pZG3pGXJNUOepr+Xllhg26pWKr4bF2FK5PquyGt6e9VOl0OukBy2Nb69xakWCq+0Oh0OQAAXHQIpwIAAABYVaFMhTJX3rDDQvGFBoAzMzIyoi1btnS6DAAAAAAAAAAAAABYU8J6pD3/a0aJAVt22pRhGzJtybCNI7+3/81uc+UWbMVhrOnvVVQf82QmDJVebkpRp28F1qJ/+8o+HXq6rjd+sEnv/O8vy834S9YnjeCcj5E2/RW38eLlO3Ae9PqXXd+MTwxoH68VLb+Nv0INkpS1msuuvywxveI+0mZr2fX1yF12faSVuzYOJZcPGpf81Ir70Hc2nLAo/3qgoWdDSdLBz83JW+CJBWevW8ZBHo9xkQBWG+FUAAAAAAAAAAAAAAAAAAAAAMD5E0utmUAni7VZSUMDu7NyC7bq456mf9AOplVeXz4EB0iSjFiKDTVLiRPCqVg7vBlH5ad65FVtJbY1lbi6JvN8plcCyTxkyj5oypw1tcVryYglHfkxA8mMpNCWDt3jyPsTgqkAAKwGwqkAAOC0GZaU3Z6QYRqq7m0p8phNB8DKothUFK/9GcOimOc0AAAAAAAAAAAAAACA1ZQctrXxJ3slSdM/qMibDzTy1pymvltRUCU8hpXNvdEryw2VyBNmXqua4wnNfHndkUux6tMJ1R/Ny93RUOrGsuyeSFHdlJxI5spNZBcZc1LicVfmvCH5kiFDsWLJlGRLsSHJkGJTChJSZb2p+V2WZK/9sWtY+7plHOTxGBcJYLURTgUAAKdmSjpyvs/psbTunXkl+tpvH7LbEpr4RqlztQEAAAAAAAAAAAAAAAAAuorpHgv2DL8lt/h7YtBWUPU6URK6gOkaMh1DcSRtvGVSr3xzm5797JW6+idfU2ag0enycETkSc3xlFqHkosdbiXJ2dBUMO/IezUt79XUka0NSbHSd5ekK46F58InkopfScjoC6WhQMZIIKtiynnRllls7y9OS9FwpHA0VLAlktLSRK1wgW8tAACQCKcCAIBT2PTh3sUgqlcM5OQsGZaxuL74fGdO6JiuQcdWAAAAAAAAAAAAAAAAAFgjBu/OKqiEWnh25TFl9TFPr//5jJLDjjKbXPVel5YktWaD1S4TXcR0DCUGbSUGbCWHbWW3JWQYhh78//Yq3d9Q//aipp4f0gtf3KFbf+FHMoyV94nVEQVSY29GlacK8ucdtUOnb2bIH08q+2PzMnOBmi9lFFUsWflQrTdSqj/QIz0QS7Zk7Ggpnrekpql4wpAmHMWSkpJixQpHI7Xu8KXcCWUAAIAOIZwKAABOyi+Hi+FUGdLMw1UN3pldDKj23ZhWdqur1myg6t6Wwua5B0ZN11B6oysrZcovBqqP+0vWDd2TVe6ypGYfrZ7WiUwAa0MoU6HMlTfssFAE3wEAAAAAAAAAAAAAAE6bKaXXO+q5qt0JMY6k4nMrj+syHUPZbQkVdiXlLQQ6/MOqgkq02tWiC5iuoYE7MspdnpRpG4qCWN5coPkn6wqqkXb/zpxK4znNvNovyw207rrDBFM7YOFQTs99badaNVftIVftLqjuSEupy2tKbWoojqXmwZTqEymFc46sQiB7MJAzXFrcT/rWiuqP5+SVXcUzluKXkkfWxDI/UpRqpuLDjhqmrXBbRPoFHdUt4yCPx7hIAKuNl2cAAHBSk/eVZdjSuncV5BYslV9tqj7ua+NP9chKmEqtc5QcsqWdUs+1KR38pwXFZzF5XWrU0cjbc/IrkVIjzuJyvxJq9tGaEgO2DEsq7ErJdNpnkQZuz6r4XEMx5yMBAMB58v3vf3/Z9Z/61Kf0qU996oLUAgAAAAAAAAAAcKEZlhSHna4CQLcwXUN9N6eV35mUlTDVPOzLWwg1eGdWVsrU3GO1k14vOWKrcFVKuW0JRUGs2UdqKr7YkBgHhiOSQ7YKu1JqTPpqzQcK65FMtx1mTvTbmn7R0KbbJnTFe98glNpBL/7LZWpVEzKsSKntNTnDnrJXVGS6S7dzeyuyr2mdcj9mOlL23pJKQUrRlKXogYyMXCjjck9mVlI2koZbCv3uCwQCAHCpIJwKAABOKQ6kmQcq2vQzfRp5e17Nw76sRPtDfuTHMh1DQS2U22Nr+K15LTxbl7cQnFFI1XQM2RlLdsZastzJWVr3Y3mFjUhW6sQTC3bWlF/mrCTQDSJJYbz2zwafzTPKvn37dP/99+vxxx/X448/rhdffFFhGOq//Jf/ot/4jd9Y9rqPPPKIfu/3fk8PP/ywqtWqtm7dqo985CP65Cc/qWQyuex1AQAAAAAAAAAAAOCsGVJmo6tYUv2gp/7bMuq9LqWJb5RUH/c7XR0kZba4So06mn+yrsij2xXWlsxmV8P35mRYUvGFhqp7PbVm2wPGWnOBBu/MyrAlvxTJThmy0qbstKnEkCM7ZcorhZp9rKbyK03+vnGCxqSvsBUtNs8IvViRF6s146v4QkOFj8Z68cs7NHDZvHa9/3UZZBY7Ysdb9uvF+y6X37SV3NhU5oqTB9LPhDkSyvyZ8nmoDlgd3TIO8niMtAaw2ginAgCAZfnlSFPfKWvoLTlltyYkSa35QGNfWFBmk6u+mzKyM1Jue0K57e31+z83L78UKrPFlWEaqu1rLely+sZ/vV2S1FdvaGB+Xmo2T3rsqfvL6r8tI8OPdfgHFXnFUHEYK2zFCut8XALQeZ/+9Kf16U9/+oyv9/d///f62Mc+pjAMtX79em3cuFEvvPCCfuu3fktf/epX9f3vf1/pdHoVKgYAAAAAAAAAAABwqeu5OqXB3VlJklcK5RbaE4onBmzCqZ1mSol+W4N3ZeVkLSmWZh8598APcD7lr0gqlnTgcwsnjOEqPteQmTBUuDIl0zEUNiKFjUhBPVL5pYbq474akzzP4NTiUBr/SlFO1lJ93Duhq/fY2/KyD/ia+WGvxr9/o7zrlm6wKbWw4jHWucVl1w/a5x6QHHLOfR/DTmnZ9c3IWXEf9Six7PpylFpxHzNB/sSFG6UtH9unPf/rco3/XUGHvrziblawUkeUymns43S2AQAA5xvhVAAAsKLafk/7DszJyVvyy6F0ZMK66j5P1f2eLv93g0u2d/KWeq5KqueadrDKKwaa/HZZ3tyRE0FxrNFKVVcfPqyjE5fVbVvpIJBvmnKi9knLkXfk5VdCHfz8PF1SgS4WyVSktT9N4dnUODAwoPe///269dZbdcstt+jP//zP9YUvfGHZ6+zfv1+f+MQnFIahfv/3f1+/9mu/JsMwdODAAb3rXe/SE088oV//9V/X//yf//NsbwoAAAAAAAAAAACAS5BhS8lhR4k+W07elOmaioNYQbMdDoua7QEfbo+1eJ3WYV+xHysxYMuwDKXWOwqqkfxSeKrD4DwzXUODu7NKb3Jlp5Z+b+1X+H9AB5hScsBWatSRk7ckQ2oeDhS1IhWuTik96qp20NPg7qwMU5p7vCZv4djf6vwTdc0/Ue/gDcCaZkjpja4ym13ZaVNWylz81zCl5kzQ7qgbx+0gdCTFQSxvIVD51aZkSMGWSP5YJOegeUI4FRdGFEhv/P+2SzKWPP6Bi1m3jIM8XjfWDKC7EE4FAACnJ9ZJv3gwHUOSFLYijX1hQUE1UhxJfTekFUexDNOQ22Nrwwd7dOB/zyu90dXusTHlvGMz4DVsS+kgOHoYPTs8rOunpyVJE98sEUwFsGb9xm/8xpLLn/vc51a8zh/8wR+o1Wrpne98pz75yU8uLt+8ebP+8i//Urt379ZnPvMZ/eZv/qaGh4fPe80AAAAAAAAAAAAALjKG1H9LWoWrUrISpqIgll8OFbViGbaUTpmykqZMuz3GI45iteYCzT9TV/X1ljb8RI8kqf+WjCQpqEfa9zdznbo1lxTTNbT+/QUlh5Z2v2vNByq90FDppWaHKsOlyLCk0fcWlF7vSpIiP5ZXDORkLRV2Le2umNnkqnnYl50xNfJjeR38x5W7VQJmwtDGn+yR22PLWwjkV0L5xVCNSV9hI5JiKTHYnizBMNX+sQ2ZWVPZbQn13phWa3+oYEukcDCSs8+W85qpcChWlI9F/urCCWq2Iq892UXPlSnlL0+o9FJDs48QTAcA4FJDOBUAAJyU22/Jck355VBB7dTh0MiLtf9z8+3gaixZKWNx5rLmTKCZB6ta/96CoiCWLEMjb89LR4KpvmnqpcEBTeZy6m001Ntoal9vj2LD0AMJV+t++xnFfnyhbjIArLo4jvXFL35RkvSJT3zihPV33nmnrrjiCr3yyiv68pe/rF/6pV+60CUCAAAAAAAAAAAA6DKZTa76bsyo+HxdpZea8ortMRzHM46MGI1DLVkfNo6NC6mPe5p7vLa6BUOmYyi3I6Gea9NyC+1wT2su0OwjVTWmfMVBhwvEJcmwjMVgqtT+mzRMyXpTR1+vFKgx4av6Rkv1cV8bf6pHMcO7cJoSA7bcHluHvl5SfcxbXJ69LKFEr6Xyay0Vn2+c9Lqma2joLVnlfpBUazZQ67pQ9kSk1CPtcH9sxQr7YrV2puTubMhwTrobnCduIdC6dx1SYyql/Z9NKbc9od7rMjITlg5/v9Lp8gAAwAVEOBUAACzRc21KfTemZSXbJxUjP9bc4zUZjiEn155J06+EWni6rrDZPrPoF491VN36r/tlWO2ZNv1KqPXvL8gvh5q8rywraSxu91pfn8YKeflW+wT7QiqlhdSxGfZqrkswFbhIhLGpMF77UxNeiBoPHjyoyclJSdLu3btPus3u3bv1yiuv6LHHHiOcCgAAAAAAAAAAAGBFw2/NSZJmH621g6encKrA49R3yhq+N6fcZUlJ7SCa22vJSpuy06aslKnUOkdxEKvyeku1MU86kme1UoYSA7bqY/75vEkXLdM11H9LWvmdSZnuse+oawdbmvp2RRFjZdBBkRdrz5/OyEwaSq1ztO4deXkLoSbuK8mbD+RXo8XH/lGmYyyOFQNWYhz5U0mvd2SnDRl2OxCd3ZZQ5EXquTat2v6W6hO+qntbilrHnhMjL9bUtytyftZW8klb9ripcCBW40ZfUT5W8hlb9oypxkxBjQcLKvzC1OKkDFgd+R015XfU9MS/75XCWD3XpJeEjoGLTbeMgzxeN9YMoLvwlgsAACzK7Uho8M6sii82VH29pciPNXhnRgN3ZBS2YoW1SImB9tsHbz5U+ZXmCftYDKZWQx36WklbPtKnwz+qtruv1qWZh6p69V9doarrKhUEynqeqq67GFIFgIvZnj17JEmJREKjo6Mn3Wbbtm1LtgWwuprNpjyPL0cAAAAAAACAbue6rpLJ5IrbcU7w/Dnd+xzA6ipcnZSVNDV1f3nZYOpy4kCaur+iyhst9d+U0eh7CkvWh14kbz6U6RgafU9SYSuSXw4VefFil8WDX1hQa4Z2n8uxM6bWvSsvp2CpNRsoOeIoDqXZR6sqvXjiGBygU6JmrNo+T/v/97yCenTSTsxH2TlLcRjLsE8dgAeOqh/ytfBcXfldSVkJU3EYK2hEmvx2WbUDLfVen1Zmo6uh7QkN3J7R+JeK8haWvrh5V4UK+yM5r1uyioacfbZkSkZgKFgXKaFA9pAvMRzxgjr6NDF4V1apEVvFFxvyi9Gy1wEAABcHwqkAAFwiDFtKDNiy06bsjCXDkuJQioJYfjlUayZY7IAah7Gah33FoTT+ldLiPtIbHa1/X49mH6+psufkJ8XHv1JUeoOr3utSKlzZ/iJy3TvyKg43NPNQVcXnG+r9iabuGhtfcr2D+bxm02kdzmZW6R4A0CmRDEVa+7NkHq2xXC4vWZ5IJJRIJM7LMRYWFiRJPT09MoyT3ye9vb1LtgWweprNpgqpXnniy34AAAAAAACg242MjGjfvn3LhiWbzaa2bs5q6vBZprewxOnc5wBW38BtWVVeb6ryeuuc91Xb56m2z5Oda3dMDeqR8juScgqWpr9bkdQee5K7LKHksKPUOmfxukGV59blZDa5Gn5bTlEQa/bhmgbvzqox6Wv6+xUFFcI7WJuC2un9bc4/XSeYitMTS7MP1zT7cE0ydELwef7JuuafrMtKGdr4U70aektO09+ryC8tfY0JR2KFg4HMoqHk07bsCVPBYKT6O30NpBhv0wmzD9UUebF6r0ur55r2T+THmvpeWbW9TA6Ei0O3jIM8XjfWDKC7EE4FAOAilxyxVbgipcw2V5ZrSmoHUuMglmEZMizJMA1Ffqzi8w3NPV1T33VpFXalVN3fkjcXKKhFiqP2iXJJqo95p5xtszHhqzHhy0oZ6r0uvbjcTBz7cFM+SchrU7msTeWyHti0UXYUqcQXmAA6ZOPGjUsu//Zv/7Y+9alPnZd9N5vtAJzruqfc5mgQttFonJdjAjg1z/Pkqam79F7Zcla+AgAAAACcBTtjamB3VnbWlNY5SjRjBbY0ucvVwgZH136ztrhtHMWae7KmxmSgoBpq/fsKirx2B4ns5mPnVf1KKBmSk7UUtiJVX2+q+EpLQZHB4MBaYiUNbflov6a/X1H1jXMPiwA4tUC+Hpz6hjzPWzYo6Xmepg6HOvDUFuVz5gWs8OJTrkTafNP+Fe9zAKtv6nsV+YeWaWt4FsJapOSwo/yOpApXpSRJqRFHdsaUYS0d3O5XQ01+q6ywsbQGO2PK6bFkJU1ZSePIv6ZM11BrNlDxxYZ0KWQyTWngtox6r0urur+lwz+oaPhtefnlUBNfLym+FO4DXJSspKFtHx+QJKU3uCr+iDEOOEPHv3QZkukYioJYYSPW1HfKWveugrZ8pE9+OVRzJpDiWKmvOzJrhsxG+/UoSsTyN4Wyx025P7LkDSZkWJLZG8gqcK7sQpp/oq75J+py+y2NvC2vRL8tJ0sLWwAALnaEUwEAuIhltyc08o6c/HKk4o8aqu5vKahEirw3ndkxJCdvKb8joZ5r0zKd9kkbw5Kym11piyvTaX8xG3qRamOevNMY4DTzQFXVN1qKgljefLjkmFXX1dMjw7r68IzcKJJvmnKi9tn2uw+OSZK+u2Xz+bobAOCMjI2NKZ/PL14+X11TJS0OzvC8U88I2Gq1B6mlUqnzdlwAy7PlyDYIpwIAAABYHQM3ZFTYlFLp5Ya8uzKa7TFVGrZlhrFu/FZN5psmsTr8YFW1F0JJhkzZmvzndnDVdAz1fSJ3ZJuKSi+0J8Cys6YKu5Lq3ZXX4A2mWvOBKntaWnimfsFvJ4ATZde7cl1X/rQ49wCstjPMZGVzhrI5OoecCzqvAGtHbW/rvL/XyG5PaOTt7QBl6ZXG4vNsay5Q1GpPiB40YnnFQFHzxFDq8NtySq8/9lknDmOFzUhhM1bkx8pdnlBiwNb09yrnte61xs6ZWveOvBIDtmYeqqo1H2jTh/tkp0xNf69CMBVdzbAMRV4k0zWVXu/IdI2lY9JwSTMThpycJTNhLE5MYCUMmYn2hAWma7YvJw1ZiaPr22MU4zhWc9LX3JN17f+7OWU2uUquc5TosyUZilOxIluKnVhGw5ARSPaEKSMylHzWVl29i3Vk3jsvZxNdOy80by6UlWwHjYvPEVwHAOBiRzgVAICLVGLI1vDbcpoYyOjZ2/qldy7z5WDYXuf6oXpqLTVcW9umy9owV1Ms6Zs3bpIZxdr2/3z6tI8fR1J93D9huZ01def4uDLesXWxIe3tL8iIY22dL0uSNtTKkqlLY5ZM4CIXxqbCeO3PPn60xnw+vyScej719rZPgBeLRcVxLMM48bl5YWFhybYAAAAAAKB7pTc46r0mLUkqv9LU/FXHJsHKHg5kvmkewIP/vKDW4eCk+4n8WJPfKqk1F8ovHbtSUI0090Rdc0/Vld3sKrMloYHbMor8WKUXLt6BX4Yljb63ICdvqbqvpeKPGgpqnEzG2pPZlJBXDBTy9wkAALqMX22/f5l9rHbGHeDzu5JKr3c1/YOK6uOewmas2F8aWMtd3g6/2hlTc0/W1Jw6+WehbmO6hrJbXbm9tpweS5mNroJapLEvFWUY0voP9Kg57evQI1V5c3TzQ3eLJdUOespdltT09yoEUyEZ0sbPF2TvsWSNtcOiR8VGLLlS5Lb/jRNS7MaKE+1lYSKW54YqfqouK2kqtzOpDT/eo8MPVlV6oaHqvnbAdP37C3LGLEWWVBs21dhoKrINmWEsI5LMQOoP6tKELTVN1V7Kyhw9cRK3gu2esOzN5oPsijd30F5+ggXXWP55Pm2u/Po64S8/dihnNVfch2Usf07iQGtgxX1Uw+Un9h9+JHfCMuOLhoyytOHPezT+C8UVjwF0g24ZB3m8bqwZQHchnAoAwEUqNeLIkPSjbf3SScJPJ+M5lg73tAdKjfVntWGuJkPSHa9MaS6XlDNkn3Jw1Oka3J1dDKbOZFPa29+jG8anVWi01HBs+aYhJ4q1Y2ZBB3osefOcjAdw8bj88ssltbujTkxMaP369Sdss3fv3iXbAgAAAACA7uP2Whq4I6vMpmMD3XKXJTT/pm1K62y9/La0zEAKXUPOn84su8/q3mW6PERSdZ+n6j5PYTPS4B0ZtWZ8NacvjgHeb7bxp3qUHGp3hSrvaSp3eVKFK5Ka+m5Ftf10wsDaYSYMZS9LaP4pOhkDa1EYRwrJT5yTkHZ/wEUts7n9WSY5ZJ80nOr0WOq5JiUrYcgrhQrrkfJXJBXWIxlWe4zKwG0Z7X355KGZyp6WIq+kvpvT2vCBHk18s3TSCdDXAittKrc9oeq+loLqyZ/73F5LhStTyu9MyLAN+ZVIfinU7OM1lV5syMlbWv/jPWrNBpq4r6T44vuohkuImTTUc3VKvdelFQWxJu8vq/r6mYXYcXFx8qbyVySV35mUfb+lqDeSd3OgaDhS7EpxIpYcSYYUxsuPYzx6/qs25mnrR/s1dFdWtX2txUnJyq825W5zZURSfcDU/GW2ZC7d52BPXXGsdkA1yZv+Tqn9mK/sV10ln7Q19JasDv+g2umSAADAKiGcCgDARcqvhDIsQ04YyTOtM77+fD6p+27YqOFiXRtma9o+XZZ+qld7VhggtZLZR2sq3tCv0DA13ptTKZVQOZlQX70hM05oLpOSZ1s62JvX8Py5HQvA2hDKVKi1P/vWhahx06ZNGhkZ0dTUlB566CF9+MMfPmGbhx56SJJ02223rXo9AAAAAADg/LLSpvpvSSu/Mym/EmriX0oKa5HSm1zNP31cQM0w1MwfO3frnKcaZh+rKTnkaOTH8pq8r6zW7Nod9WznTLm9turjnnSKfIvpHBtg6OStxWDq+FeKakz4Ml1Dw/fmtO5dec0+XFPx+Yu3Yyy6S35HUjKk8sv8TQJrUaRYkRiofi64/4CL29E50HuvSyu1zlH9kC87Y8rtsdSaC5S7PKmwEckvhyqsd2WnTDUP+8psPtZZLahFMmydMohZO+CpNuZp9D0FDb8trwOfm19znRdTo+3PVnbKVM81KVVeb8qwDJm2IcMxZCUMJQYd2WlTQSPSwnMNlV5qKqwf+4Dj5E2tf19BfjXUxDcJpmJtMl1DVtJoP/jjWEE9WvK3atjtRgn5K5LKbE1IsVR8vqGFZ+pr7nGLCyu90dHoewqK/FiV11tK/L9NRf2xdHq9NE5p9F2Fxd+H7skqqEcKm7Fas4EO3JtQ7xuBhp4L1LMv1OwVtmojlhRLZhArTkuGK2k9T7gdlZWqP+Mp81VHhV0pub2Wxr9U6nRVwDnplnGQx+vGmgF0F8KpAABcpKxk+8NEwg/lOUvDqa4fyoillnvq0GqqFeiGvTNygkjZ1vk7UeOXQr20fmjJsqc2DsuQFFhLPwANn7ejAsDaYBiGfvInf1J/8id/or/4i784IZz68MMP65VXXpHjOPrxH//xDlUJAAAAAABOl5M3ZSZMKZayW131XJtWHMayd9eV2NVUbvEUbFOjMvXU3Kk7jE19addJlw/lzryrwOQHDmnjT/Ro04d65ZdDzTxSVVCL5M0FisP2NoYtuX22WjOBjmZLDKsdADUcoz3g2pLiSIpascyEIcVSay5Q5MVyeizlr0jKyZoKW7G8hVCNQ568hfYBUqOOksO2Kq+3FAexnIIl0zXV+v+MyK1Fyk8Hys6EMmOplTZUe7imsBEpbEaykqYMy1B+Z0Ju4cSvtNffOambf/Xw4uU4lsYfXCfDGNLg7qxmH61q4VkCgeiszGZXzSlfYZOB2gAAoPvMPlpTdW9Lbo+l1Hq33Q0vbSryY5muodKLDc09Xmt/vjAlt8eStxDK7bEUNiOFjdN8DxRJ09+raMtH+tRzbUrzT66NrvOJfluFK5PKX5FUY9LXxOM1DdyaUe7ypOIgVhTEiv1YkR+r9HJDzelAjUPe4ueto6y0qfXv71Hkx5r4eokQHzrKMCU7b8l0DQWVUKZrysmbSg456r0+vWRyKEkKW9Fit0q3x5JhGvIWAs09VlPltSafdSBJSg47MkxDY1+Yl1+ONPoHufOy34Uf1ZUadWQ6hsyEqUS/LStpqu+GtPStlhq9hg5fYytzONL6J3xJx7pvx0ZB8UAojQYycpGUjaThQMb5mhkOp8+Wah/0Zf6OlN2c0LaP92v8q0V5c+HK1wUAAF2DcCoAABcjU+q9Pq36uKfKrUvPqozO1nTDG3NquJa+f906ReaJM+K4fqjr9s2qt+Zp/2BWr2cTKmYSWv/LP1qVckOLWXmAi1kUG4ric5wS8QK4UDV+8pOf1F/8xV/oW9/6lv7gD/5Av/ZrvybDMHTgwAH923/7byVJv/ALv6CRkZELUg8AAAAAADh7m362T6bVPqcQ+bFKLzY0/3RdV/4fnT0XEtYj7f/svC77xQE5eWtJt4nQi2SY7U4/Urvu2oGW3D57cbDpcuI4VtiIZadNhY1IrflAbo+p/BVJmVZWXimUNx8ou7XdMWngtuzSHTzaUGxIlUFLU7tcVfttDe71lN2akJU0ZCVMxXEsxVJtv6edP3tIhnlswKtpx8pvLi/ZpWFIG++elGlHmnxsRAO3Z9VzTWpxEK1hGTJsyTANGbYhw5JMy1AcS63ZQFP3l2UmDMWBFNRCOhnhnA3cmVF6g6vJb5dX3hjAKVkZU9nNrpLDjqyUKStpKPJihc1I5Vdbqo95Z73vSNGpmnbjNHEPAhe5WGpOB2pOByq/2pIkmUlD0cnCaJHkzbdDJkcnqzkTYT1SUAvVc3Vnw6lWylDhqpQym10lBx0FtVDzT9c1/0xdiqRDXzv9bm+GKaXWuxq8KyuZ0qGvlE4/sAucR6lRRz1XtzsWOoWTf+aPgnbIun7gSMDakOyMKSttys6YMkxDxecaah72Fx/rwFHlV5sq7Epq44d62xOFRdL5aNBX2dNSZU/rhOVWylDij9ep9/VQw88Hqo6YeuOdCSXKsWJDihxpS1xUPG5Lr7uK64YUG5IdK76iJeOWpoxT9/M4J1Ek1eZSSmR8uWlOLi0ypclvltV7fUr9t2a06UO9Gv9SUc1p7iN0n24ZB3m8bqwZ+P+z999Bllz3ge/5TZ/X31vetHdoNLwnABqAVhIpUo7ScKSR44ziTcTuvtj3ROqPkTSzq3iPeuLGhrijjZmRezEzqxlKI5KiIIqiBw0AwrtGA432pry53qQ9+0c2qlHoe6val+nfJ6Kjuk7ezHsy65rMk7/f+YmNRZJThRBCiE0ou93GLhhMf7MGP59cVNhBxCMvT2JFyWB3yo+46+gCz+8bTFZSiuFKm+Fqi5HFFrGu8dRNw/imwYHTi9x6apHGw1nKr7SwiwbZXQ5RO6byalsG0IUQN6wnnniCT3ziE0u/NxpJJZPPfe5z/PEf//FS+4svvsjWrVsB2LlzJ3/2Z3/Gb/zGb/DZz36WL3zhCwwNDXHw4EGCIOCee+7h85///HXdDyGEEEIIIYQQQlwGjaXE1ImvVWlP+W9LalwHwR4KTn+pTHanQ/Okj6aDVTQwXB0Vg4oUUStm8OEsuT0uQSNi9gcN/EpSGVVFoGKVVFC1kmQgTQdnyMTKGviViOYJD3UuL0UzIDVqkdvr4gyY1I906MyFBPUIFATViMhTtP5qG5GtoYzzx+hUf4rM700lv+jJ0VMq2YdH/j+Vi97l8QdnGL5rjq//3DbsPhMzk1S1jSOFCpN9VtFbPxXFW1OkRix2/kr/+cMWKRrHPRZfaF1WYP1mYKR13EETFSlaE8FSZV1xcYp3pCjdnmb2R3Uaxy4MpBVCrE4zoe+eDKXbU6AlEwmEjRhvIUK3NOw+k/GPukz+U5XmyctPUBVCCHFpuiamXiXtyYDCgRT5/S61NzsYjoaKuG6VRgsHXPrflQGgddpn8fkWzVP+RZ8Laybk96fI7Xaw+wwMJ8nMak8HzHy3RtiQhH6xBnQY+UAOM9M7E695ysObDwkaMZqpEfsxQT2iPSkXguLihPWYU39Tpu/uNP33pIm+H+O9L7gqCardRG1FbatJbYtBdjJm/Bmf/jdDpu61lx6jFX20m5LrBBUDNR11zIZXHFTVQPtIc9XnCZo6XtnB7fMw0yt/hoe+zsG/30vlbB4V64DCsCO23DfN1vunV32uVtXGzfjomzyro/xSm8ZJj+2/1EfxthTTM/W17pIQYgUnTpzg29/+Ns888wzPPPMMr732GlEU8Qd/8Af87u/+7orrPvXUU/zhH/4hTz75JI1Gg507d/KpT32Kz3zmM7iue532QAhxPW3y0xghhBDixuTXkoAZM7d8lOetxNTJvjRDlTaFxvmbtbqCe4/NLf0+n3HYOt9gpNyiYxucHsyxfW9E8bZU8hzlECOtk7/JxcwYzD/doPxym8w2G3fIwnA0wlZM+eWWzDIvhNi0giBgYWHhgvZWq0WrdX5W3yhaHsj4q7/6q+zZs4fPfe5zPPnkkxw6dIhdu3bxqU99it/5nd+RQRghhBBCCCGEEGIDyGxNgt5akz5hK8JwdMIoxhkwiWd19KG1Hxj1FyIWF86PUXRml/fJzOlY+SRIdea7ddqTwerb7JGwqSJonQ1onV15G2FqlejE+MpyIU03pnHch+MrJysZGZ2h9+SSPrVjZr9XJw4VzoBJ8bYU23+pj8YJj/oxj6AaocIkoTXqqOsWIH+1OYMmqRELzUgSvd7+t7JLBqU70qTGrKXXBCSv76mv14iDjbnP11vfvWn6782w+EKT6sHOWndHiA0pu8tm4KEshquz+EKLyqvtCz53C7e6DL07d0WJPpFSREo+266EHD8hxNU092QDzdAYfiTH4MNZdEtDRYra4Q6Lz7cIm9cmuVMzILfPZei9OaqH2sz/uHnJ5/vusMnoh/MYrk7ztE/5RY+oo/DmQ7z5tb8uFDcezYT0VpuBBzJLialxoPDLId5CSOQpzJSeVKbP6OQHXIyUvlRVVcWK6msd5p5orOVuiA0k9hTzTzVpTwWM/mQe+8cm/gMhdMuLjklmJbuMed00Ixl/Sn7RaIwbzNxhMfpCQHlXTKfvwjEnTQeKMdo9HVQuQv0gg6rr8I6wnM6UTe3FIv6sQ9Q0k2qrACh2fvIEmdHu1/j1mTQv/o+biXyDVLFD/64KftNi4XiJU0+Mk+5v07+7d+XtJ//LHTTmsqAp+rZVuP2jb2KnNu93R1CJUaHCHbLWuitCiFV84Qtf4Atf+MIlr/dXf/VX/Nqv/RpRFDE+Ps7WrVs5ePAgv//7v89jjz3G448/TjqdvgY9FkKsJUlOFUIIITYhfyGiPRMw8ECGlBfSdkx8y+D4SI6d03XMKCbSNZ7ZP7S0TqxrfOf2ccYWmhRaPk4YkWsHnBzKcXS0QGToxP/7cTLbbIJ6hDcbYmZ0Bt+dJbvTYOCBLMVbU5gZg6ARYWXfNri5GGKkdNrTAWFdZoMU4kYToxNdqykRr6L4Mvr4yCOPoC4z+OKhhx7iscceu6x1hRBCCCGEEEIIsfbS55JTiWH7J/uWLQv+Mcb59fIa9OrSGG4yHhK24otKTN1MombM9PdqRM1k39+qANueDKgcbJPf61K8LcXoB/MXrBs2I+pHPTozAd5CRGZ78lponPDW1Ri4M2jSd0+a1Ii19LeOQ4Vudo8ADWoRjZMenelkv4bem8Udttj+qb6kkk49ojMVUD8q1UC7cUdM+u/NsPBsk8XnW6uvIIRYxioaDL07S3qLTeOEx9yTjZ6fqa3TPnGgGH40x+KLLTrTAVELuISC1zGKWEpDXxE5fkKIq0mFMPO9OuWXWmS22wT1GCunU7ojTW6fS/Vgm4Vnmkvn7VeDkdHZ8ak+dFOjfqzD7A8uPREvt9dh6H05vLmQM1+pSIVUsebMjM7Of9G/rK016TPxD9UkKbALzdLI3+RgZgxUpHCHkkmb/HKAXTJRCjozIZ1ZifsSK2ue9PEfCrGfNDGPG8RFhcor4oxCC0Gf19EXNNDBuyXCvzW6qEwGq2gw+uE8Tp9JHCnCf+zQHNGZv9mistOgdCxk/Mc+izeZxCao0w7K09AGIvC0ZBa0GNQJG5wY7PPnseWnStRfLqDCpOKpZinsQY/scJPIN6geLlI/nu+anHr6uRGO/WAbaLDvgycYv/18YZDp1/t4/et7aS2keianTr/ZR2MuQ6rYRgMWTxV56r/cyXv+1XPo6z/M6rIFtRi72LuisxDr2UaJg3yny4mLHBgY4GMf+xj3338/9913H3/+53/Ol770pRXXOXnyJJ/+9KeJoog/+qM/4rd/+7fRNI1Tp07xkY98hGeffZbPfvaz/Mmf/Mnl7ooQYp2S5FQhhBBik5r5Xp3xnyrw8MFpTo7kGKh26Kt7NFyToWqHg9tLNNLLZ6Dq2CbHRwtdt1eqdxj9UDID8dwTSeBJ2IyZ+maNwYcyOP0m3mKEbmqkxs9vd/Ch7NL/41Bx5kvrPyBLCCGEEEIIIYQQQgghVhN5SUBmeot9wTLjzvb17s5l8eZCZr5f71kNdbOrH+6RZBlD7XCH2uEORkrDSOvopoZmaNhFg9JdabK7HUp3JDO8x5EClYyHR15MUI3ozIbUj3l0pq5P0q+Z0zEzBroFhZtT2P0mdiEJ9Ft8volmanhzIcXbU12rU0x9s0rzlH++Agkw8VgVM6dTuj1N8bZU0nhLCm9h8aq8ZqyisVSlVUUK3dIwszrpcRtNh/LL7Q2TNG1mdYYfzdOeDlh8QRJThbgUmgl992Qo3Z4iaMRM/GOV1umVq18HtZizX60w8GBmaRIB3/f53l9cjx4LIYS4lvxyhF8+fz1Vfa1D8fYUpbvSOEMmU9+oEXtXJzk+9mJUpAg6MdPfrl/y+v33pem7J0PtcIfZ79evauKsEJcr6sSUX26hQkVrIiBsJteo76TbGu6Qid1nUrojheHqyXWZfT55pXRnBs3SUIGidHty/Ru2YjozAZ3ZgPZUSGd6Y1yzievn9L+oYPUZZLfZWEUDO29gZpPE59aCT2cmxMzqFL0Uxg81am92aJ7w8Ra6VwvVXY2xnyygIsX092ropob56SL5kxGFUxHlvQZTD1gMvxgw/FKApkBZDlgK9bJLkpmqga7QChHWexsYqYBY6cQx1J4vAhqZAzXy91Uws8mHeTVM0fhKDoCacqk9uRVCHWPEB13hvZAlnrbAUaQ+XmaiL8eZeg7/+1lU0yBeMFDAD8e2wvT2C/YrdSZm4IkYDKh9LAIb9CcDvDcc/umpe1AHkuNRtFYeY/xA7rVV/yaVeOUKhWlj9UnIFoLMisvvzJ1dcfk3OD/5m5nRiXz50hRivfvd3/3dZb9/8YtfXHWdz3/+83iex4c//GE+85nPLLVv376dv/zLv+Thhx/mT//0T/m93/s9hoeHr3qfhRBrR5JThRBCiE0qqESc+XKZ9P99K7sna5ix4uRwlhMjOR59eYrQ6DETjlIM1jrcf2SWubyLHis0BX1NDy9jkBqzMVI6U9+sJWM3CuaeaAKQ2WYz9lOFpaAsgMWXWtQPdwjbMbt+rZ/U6IVBL0KIzS1WOrFa/zOGbYQ+CiGEEEIIIYQQYv1YfK6Fvxgy+uFkwr/WhJ8EI8eK4s9vnODM2usXVn4Q50VtRdQ+H8jbngyoHkqOmZHWcQZM/IWQ2Fekxi3sooFVNMhstynemiJoREmQ5WLymNiLiXxF7J3/f6/qNavJ7LDJ3+TiDluY6fNjW0olybIAM9+rUTuXhGvmdEaGlleCjfyYE/95YVlS6tuF9fh8Yuo5Aw9miNqK9nRAZzogaMSo4NISBEY+lCO3272gXcXJdnVTY8vHiyw836R2qINua+syiVozYOi9OXJ7HMJ2zMx3a0ghQSEukg7ZnQ4DD2YwXJ3F51tJIsVFvtW9+TBJos/q2CWT2OoezN5LjCKSN+wVkcqpQojrIQ4Ui8+3aE34jH2kwNafLTL7gwb+ufPrS04I1cAZMDEzOmErJvYU7angos7hdEtDxQozZzD0niypMYv5Hzcov7QxJicSNwYVwfxTzRUfk9lhM/YTyVhGHCqap3zmn2oQNmKMlMauXxsAwMobTP5jleZpH8PVcIct3CETd9iidFeagQd0vMWQ2cfrdGYv7VxMbC6apeEMmLiDJtmdDqlRi6AWUT3UZuHpJlH7wg/Z6qEOffckk2H135shqEcsPNOkfsRDM8BI6ZgZncGHsui2xpkvVyCGgYeyaHVFbYeB4StKRyJKRyJaQzqV3cnYyGCuBbpCNQ1U1SCesjDva2HdsfzzWtcBDTQjpu/RxQv6aAwGxLMW/gvZt7W+laSp0EcCnI9W0c9lY0RHHaI3z4+haMDINxRhLqI9qtHcCejQ96wicxwwIPxYG87Ne6dVdRQKNbh5EzfNjI7uaNSPrDwhkRDr1UaJg3yn69FnpRRf+cpXAPj0pz99wfKHHnqI/fv388Ybb/DVr36V3/qt37rmfRJCXD+SnCqEEEJsIpqlUbjZJTVi4QyYWHkD/0Sd8qEOjWMdwuYcW4DWxwrc2pxl7IUWcaAwUjpGSocY8je7mKlzAzW1Ds3THnEAM2d9Dv/vOyjNB9xq1cj+wVaO3JIBTTv//LEi/58mye50ltqcPoNoq40zaKJpGnGg2Pt/ffp6HxohhBBCCCGEEEIIIYS4cjrYBQO/GjH8SI7MNpvGCW+pwkhmWzI2Gh5RGA9cWoCybXbPxpms5Lu2A+h69whq7e9u7rmO2yN5JwiNru2m0TsgrhN0v92sa70ju7N0r8Yw+GSxa7ulnem5rX6j0bX9Y6+lurYDfH32lq7treDCCrgA2gr74kfLj1nt7b8oRWYxpnQ2ID9kUmgpNLqLA0XUiakf8bBLBnbRIGjEeHMhzqCJClQylu9q6K6O4eoYrobh6LgjbVJby7jDHaxCADrsys5gOhFxrGH+r8v/fi9+fx/NiQz9ty9S3FtFxRp3fUbxSmNrz/20jtUJfpSFUANDkbtPR8WQm3HQ9GSvIj+mMxPSnvBpnvHxF7q/nn/y63UmnhilPZ8kpt72G4fQDMUr1W1ggeYo0jpJcsBLEf1k6L8nCfyM/Ri/HNE85dM46eFXostO7L0UuqOR2+OgmRqNEx6pEQsrZ2BmddwhCytvMP90k+qhNkrisYVYkWZAeqtNdqdDZoeN4eg0TnjMPdkgrF/eGzpsxIQNn1BtnIkhhBBCXLrOdMiZr5QZ/UiBLR8vLrXHoUomgQmSRNPk/+d++ucmhvGTc/rUiEVqzMJwzgfnh62Y8iutVZ+/eEeKwQeT5CQVK4JaxMQ/VGlPyPeP2HjCxvnzrs5sgOFqDD+aVIhU0flrYKUUpbvTdGYDok6SxNo8dS6hTAN32GTwwSxbfqbI2a9W6Mxc3AWRZiSVW3U7SVIzbO3870v/T/4Z59o0U6N11qfyavuqVU8Wl0czOZeIauEMJgmpVtFYigvszAbMfL9OasSi794M/fdlaJ318eZDvMUIbyEkqEYE1YiZ79ZBh9SoReGAy8gH8pTuCrFyBrqVjDeEzYjJr1UJ6zEjH8yR3mLRBvKnIkwPFm4yiG2N9ExMeiZGiyGadpJJb5SGXkjGJ+IpC+64cKzOyIVENZP5rw8y8JNzy5al3t3AubtFOGmhZyMwIJqyQIG1w0MV3rGt0QCtP0BVTIiS/lt1sGqQnlD0PXfuGAJhGtTHm/C2oqbatIEqxrCJk1N1GzQtqdwshNhcTp8+zdTUFAAPP/xw18c8/PDDvPHGGzz99NOSnCrEJiPf7EIIIcQmYfcZjP90Ed3W6EwFNI57BLUId9hi4F0ZSnekaJ70ac8EzD3ZoO/uNEPvSQYWIz8maqtkZnUNZr5fB5UMQPqLbwsg0TTKgzZv3pLlpoMNjEgxsd2lkTdRuobSNaa+USO91WLspwpomkZmm0Nq1MavhMw/3aR+tHvgkRBi84rQiHqG3q0fG6GPQgghhBBCCCGEWAMapMeTgDp30EQzNMqvtMjvc/EWQtwhEzNjMPn1KpltDosvthj8lzIOesPTNJr9Bs3+cwmsSqGHkP/UqST41kkCbA1HQ3d07KJB6c4UQT2iddrHGbDouzuNNx8SqhgrpRN1YvzFkKiTJLPe8X9USG1pv30OSQBsOwkI1o0LA3ZHH55d3s0uj3knc5+HsceDUEOzzz/+4ANgD5iYaR0rp5Mas+m7J0P//RkWX2jRPOETNiMyOx3aUwHFW1Mc/eog2fEG+37uGLmtjfN9V+/ohwbc4cMLSRLr9HdqGGkdd9CkeGeK/vszqEjhlyPKr7aoH74G7zmNpILLfZmloNi3EhLCVkzYiPArEbM/bNCZlqQEIVai2xr992fI3+SiWxreYkjl1TaNE17PZPZrLUZJ5c8rJMdPCHG9BbWY0/+jjDOYVD7V35HQZrwtoc0qGOi2iW4lv2uGRmc2oPJym9aET1CLsAomfjlcPdFNP38eOPO9Gmga9SOdi672LcR6482HnPziIqXbUuj28gtK3U2St73FECOVJJDt+JX+5Fq0HSfXo17yM/YVjRMe7rBFZqezLDnVKhg4A2aSvDhgYuaMpfepZvSOzYj9OJnA6a1kcz+5/kWD/nszqFBJteLrSDPA7k8SUN1Bi9RWCzOtJ4moocJbCGlNBHReauHNhskkUuc+Umuvd5h7skF+n0t6m01+v4uZScZI4jCpWr3wTBNvLqQ9EdCeCKgd9sjutKm/2cGbT8Y/wmZEasymeGuK7C6HhWdbLPxKPyjFwMGQvjciatt12oM6zWGdIKtx82Kd4KlkoisVgrazQ3zSof2f+9AKEeaBDvHNDXQdRn5pgpkvjdE+nqFxqEX2wPLKw3o6xt5zfszBHDz/Oo9YXolQz8Wkf6Gy9PvrtZHkP2FM5hRkTihQ0Nqm0bhJZ/Sdc6sp0Bo6LOjQvzkTVP1yjIoVVq77JHlCrHcbJQ7yna5Hn48cOQKA4ziMjY11fcyuXbuWPVYIsXlIcqoQQgixCWgGjH4oT9SOOfO3VcLm+cGJ6qEOi883Kd2Zxh2xyB9wiTqK6W/VmP1BAxWpZQPmuq0tzRrZy8wWF6XDrtebDE15xDrU8yb1gol5k0Nq1ELTNBaebVJ5rU3ckRuTQgghhBBCCCGEEEKItWVmdLK7HdqTAd78RZY31GH8YwXSYzZBLWLuyQaZ7Tal25OyBgvPNmme8tn6c0UGHz5fReedyYJCoGnE1rkKNQ2ACyPZyy+1CFvxUvVNZ8DEWwx7VgdNb71+AbmaDtjLx/rjQNGZOp+UWX6pnQQM35eh7640/fdmum5r78+cwLAuIshSB+7vsPifkqqyb++LO2JhFw3SW21GHs2TGmlTP+LRngq47FwpDbK7HNwRk/SYjdOfhFNUXm3RngwY/UiByIs5+VeLq95HEUKcZxUNxj9WQLc0yi+2qB/zCKprn80TKUX0zsR4cUnk+Akh1oo3F+LNrf641UTti5tgJLfbAaB5yqN2LSZFEWINBOcm2lmJ3W8w+pECdt7AHbKWLVNvOw+IvBhnwGD40RxW3sDpN9DtJGkvqEd48yGNE9656sbx+aRT/22/e0nV417Xc86ASW63S2f2IsdzxCXT9POJqM65ZFS7z0DTNVSUJKKaqeTvevorZby53uMVb4k9ReXVNpVXk/EL3dVw+kycfpP8zS7bfr5EezogqCfXB1ErpjMdoGJIjdukt1q4A8lrz1sIWXi2RfmlFtAPmsb8rUlBjexkRHYyZOC15HkDshj7OqBBdNiFhXOvX09DzeoEsxYT38+iWTGaASpMBvK0a5VVYeo0d0Nz98oPi+/30Z+xMb+aInqXhzqwSV/vCvx1cE0oxI2oVqst+91xHBzHuSrbLpfLABSLRbQeN0hKpdKyxwohNg9JThVCCCE2ASOlY5eSr/WxjxYwXJ2pb1bpTCcDFEEtZvYHyYCikdEZeTTH+McKzD3RoPpaZ9m2LjagYnbMZW7EIVsLyVVC8tWQ/lmf1KN5wnbM7A/qVA91Vt+QEEIIIYQQQgghhBBCXEPZnTb5AylSIxa6paFixeKLLeqHOwS181F0zoBJbq+DO2QRtWPCVkx2l4Phakx+vUrztA8Kqq91yO6yMVyd5kkfgOlv1Rj5UB4LA3fQBPw12luxkb399QhcfBL1eqJg4Zkmi883cQYtrJxOezogs9Vm6L05AMpHCgwcuMgApNt8Fp5engCgYmhPBrQnA6qHOpTuSlM44FK4OUXYjKgf82hPBvjliKgTo5saZk7H6TcJWzHNE8n7863AW6ffJD1ukdpiY6Z0Ii/GcJKA2zNfLtOZDTEzOipWGI7O2E/mOfvVKpqZTB4aS36CED3ZfQbjHysSdWLOfqWybIJdIYQQYr3TzKT6Y+muNK2zPpP/VFt9JSE2EX8h4tR/W0wqELsahqNjuBr6uZ+Goy9rtwoGYSOiecqjMxfizV9EZeIVGGmd0l0pdFMjNWIR1CPa0xeXVC4ujjNgkt/v4g4l18aacS4RtRzSmQuovNbGmwvxF0NUDPlbXIbfk8PM6Hgzl/58cUctXc9XDrbJ7XHIbLcx08k1uDtoUrw9haZphM2I1tm3Kl4HRK0u1xKaxsItJgu3mBArUgsKw1fsLM6jjwd4f1cAFNpWHzVtobkKSiHGSIB+yiRqGqhYQ7MU6b0NMvuaFz7HdRTfGhBvCTD/PoPxjEO4fwOOC62geEeKvrvSaIZG7XWJKxViLWzdunXZ7//23/5b/t2/+3dXZdudTvK+tm2752PeSoRtt6UKuhCbjSSnCiGEEJtA2IiZ/k4Nu2iQGrdx+nSyO5yl5NS3i5oxE1+rMvTeLEPvyWGkdBafa13W8ypdo160qBctJs+1jf3c6yjF5c9MLoTYdGKlEyt9rbuxqo3QRyGEEEIIIYQQQlwcd8Qks80mu8vBLpq0Jn0WX2xRO9SmcGuKvrvT9N+TIfLipcQzp88kbEa0pwKsnIEzaFI/0qF2uIO/uHw2/8bx5cmnQS1m4h+qbP3ZIpVX2hSu584KsQ6pCDrTAZ3p5PfqoQ6NEx4P/fuY7OjVDfYsv9ii/GILd9gkt8chu8tZqm68rE+xQtM1gnqEikG3NMx0knTamQupHWpTP+7hlyMGHsjgV6KlqjxhM+bon8+z7RdKpEZtdn+6H81MKgCE9ZiTf70IEeT2ORiuTuOUR1iVJDxx43D6TcycniQuOBqtMwG6rTH+0QJBI2LiH6rEnfV18zBm1UJPYhVy/IQQm11+n7s0wcrsobrEwYgbVhwkVU3D+vX99s/utCndlqYzGxDUY+afasgJyFWgGZDd41C8JYU7dC7pdyKgdrhDZy7EXwhRPYpaGm4SVxM2rsIfQkH9iEf9yPIZn96qXqouNS9T12gPnquAmgvwvlRELZroYz7Wu5t4Xy6i6gbUDYyHmgzdN3/l+3AtFCG618P8sYv5t2naWRsVJAm09kNNjMGNmbA6/vEC6TGbOIhZeL65VE1XiI1mo8RBvtNbfT5z5gz5fH6p/WpVTQVwXRcA3+89cafnJZ/5qVTqqj2vEGJ9kORUIYQQYpNYGqh5vsXWny2S3+/Smgxone5yoq+gPRVQuDlF/70Zmif9njOwayakt9qkRiwGnq3idGLsTgwaRIZGaGlUSxan9qYJbB0lg4BCCCGEEEIIIYQQQoi1pMPWnykB0JkNOPN35WUT+S0+16JysI07YOIOWTiDJt5syMIzTZqn/MsOOI49xakvvlUNUm7DCvFOUVux5d1T12z7nZmQzkzI3BNNzIyOVTAwXC0Jom7F+OUoSV7d6eD0m7QnfMqvtgkqEbG//I0//1SXBNoY5n5UZ+wnCoQdRVAOcAZMrLyB02fSf3+GzNakMsDgQ1kiP6YzE6LbGgvPNmmflQo/YnOxigbF21JktttYWWOpXUUK7d1JUHhnNkgSU33J5hFCCLHx1A53GHpvjvZ0QPWgVHgT4noLqkmG5OwPG3hzGzMhbz2x8jqFAyny+10MV6d52mfy61Wapy9+LMzKJef9veIMAex+A3fEws7p2H0mRkpH0zWidkxnNqB+3MdfYf1LTkp9uzim9GaE90YfBBr67g7OBxoAOD9XwfvvfUn/v9jH7HiKoZ+5jPKv14E6EBKfCdEmDeKmBRqoGDpfLpL6xUX00sUFaM6eKHHqlVECzWD45nn6d1evcc979OPbg6THbJpnfCa/tjZ9EEIk8vn8suTUq6lUSu7JVCoVlFJomnbBY8rl8rLHCiE2D7krKoQQQmw2MUz8Q5XRj+QZ/6kCnbmAiceW3/TVbQ0zc/4m8ZafLXLqi4vEnWSmu7cbfChL4cC5WWoWksCJZsZgZotDph4xPOmRaUSUBywWhq/eLDpCiM0jAiIuHGxYb3pM/CiEEEIIIYQQQogNpnAgRW2/Rv4NhTtkMfSbJWY+pIOukbcuDCh+K+bttkz3ao73Z471fK6T/mDX9m/NHejaPlfP9NxW2umeuFbM9K4kUO90H5MNQ6NrO8B8tfus5CrqMeP7CvFuZrp7xKBl944knCvnurYHUfc+780M99xW0+6+/1N+79q1863uf4Nq49Jnaw+D7n3uEnezpPy3t3Ztd6zex2x7sdy1vRp2n4X+u53urz+A083ugT+nqr0DggbSra7t257u3q+f73+u57a2m93Xaca97y8UXyp2bTe07i/OTmzRqybiPvdU13VyRu/32Q+q+9/R0sAGfjyxi2wl4K4fV9n688nxa2V0ju7PUjwdMVJuk96avK/GP1bklZ19pH/ncM/nEWKj0CyN/nvSFG9LEbZjGsc9mid9/MWQOFSgILPNBkOjedK7suDyayhCEUkJvCsix08IsdmpCDpzAf7COv0yE2KTa00E+NWQgQcyTPyDJLRdFg0y220Kt6TIbLXRnYjsgRrZW2tYhQs/2worXBsDPP6dYTgY0/cnw1RvvnBMZPiHIZnJt58jKtCTfhAZpLfY9N2dAU2BG6P3RRjjPuZNbfR0skYYr16RMG8uH6sL5kzaL2XxTqUg0NFNxe5HTrH9nunzD8qB+l/gO//vBwEYzZV5b/ZQz+c44o+s2o/JoLji8kf6aysuXwx7jxPy00lSbSNKxkviIxbx41m8CRdSPpR10OHvF+4GKwaLJCvEB15z4JADns5bmcfzb/ZDJkL/mdrSsX5LWu9d5fAtJav72NBb6pHbtb31YpbmGzm8xVASU8WmsFHiIN/pesRF7t27F0iqo05OTjI+Pn7BY44fP77ssUKIzUOSU4UQQohNKPYUE39fJTVmMfaTBQYezDD7/XOzgA2YbPuF5UEmuqGx85f7ATj114v45fOXIrXDHfI3uWjG+QuquVGHqa0uDzxeJtZhZsxlccC+DnsmhBBCCCGEEEIIIYQQ52lGEjD8luwum6F3Z+GNt03WF8IGjBcRQmwAjaLF0QMZhs96+I7Gm7flCG2ds1aag+ceY/shH3hhkq1zDRbWtLdCXDl3xGT0Q3l0W2fh+RaVl1vLvoff0jixenDzWotU8k9cPjl+QoirwR02sUsmsZ9Uuver0YoT5FxvmqZJKr4Qa0XB3I8ajH+0SGrcoj3RfVIvcSEjo5O/yaVws4uVM2jPBPR/cJb0nia6efmfapWbNYpvQN8rMXZNsXCbTpw+n0yamlFgKXikBXkF+ThJToXks31BxzylEU/ZxFWDeMIinrAJnslg3NzBfW/jovvin7VpvZwlmHIgSAb+NCcmdV+Vd737EHqXHNc4TBoNO+TBn3j1cg/D2sgkX47xE2l4Ik3vwU6VLDMV3NyBezrohkL9OI06bBM/lkf/pZWTZq+WxtM52i/k0NyY03/bfbIyIcTmsW3bNkZGRpienuaJJ57gF3/xFy94zBNPPAHAAw88cL27J4S4xiQ5VQghhNjE2pMBcz+qM/xoHk3XCBsRfff0nnGrNeHjV5bfQe7MhBz9s3kG352leGuKasnk9J40qUaIGSrObnc5fnP2Wu+KEGIDi5VOrFaf2XCtbYQ+CiGEEEIIIYQQImGkdQYeyJDd7RB7Me3pADNjkBqxaJ7xafy6ixaCX4I4JZmpQohrZ2pbiqltvSvv+raJAoxY0hrExpbZbjPygRyd+ZCZ71YIG+soc0gIIcS6o5lguDrukIk7ZGFmdTRde9tyDbvPwMour7ynIoVfjZJE1XJIUI1QMWg6yfo6RM0YvxoR1K99IqtfCUmPW9f2SYQQPbXOBITtmNSoJKeuRjMhu8Mhd5NLetxCRVA/2qH6WgdvPmT/H1x84mdPus7ZD8Po9yJyJxXZkxFoEUoDLT6XLpmOYVuXGWx0YDDGGfWApApnHEN8xsL7Tp7osAurJKfGLQh/mGVuog8iDVBoqRhnd5vUXXXMYvRWN7syrJgP/q9PAWCZ16OO4FU0EqHt81AVHS0Xw7l9VYEOIcnxiEj+CFsD2BEuHQddA97bIqrpqCmTOO59jK6W+g8LdA5m0dIRpZ+fhT+WlBWxOWyUOMh3uh591jSNn/3Zn+U//If/wF/8xV9ckJz65JNP8sYbb2BZFh//+MeveX+EENeXfNMLIYQQm1ztsIdVbJHb4wAWYTPCSOnEoSJqxwTnBvXbUwHNk71nMZ77UYPs7WkK5ZDgZIpUJ3lsu+1Sn8wtPW70Wu+QEEIIIYQQQgghhBDihpbZYTP8SA4VKRafa2KkdJwBk7AZMfWtNo1jHs5neyeKCSHE9VSsd9CBhbyz1l0R4rL1vytD351pGic9pr9TRwUbP9k6Zl0V5tuQ5PgJcWMyszqpMQt30ER3dHRbQ7c1DPv8/3VbW5aIGtQiglqSZPoWFSkaRz0ap3w60wGGo2GXTOySsfSzcCCFme4dSK9iRVCPkriXSkR7cuW4l7fTLA0rr2OmkqTZOFKoSIECI5Uk1fbdnUz+HvvyiSfEWvLmQ5wBCXfvxR21yO9zyO52MGyd9qTP7A8aNI57xP7VP28PczpnPq7jzMbkj8VYDYUWQWRrRGnI3dW+6G3pOujbA4JSRDxr4j2VRqXVuRNNLfmpQIUaasZCTSevAz0b4expk76jgZ6+MT6jdR14X+uC9lhdwqR8YwFMWcR/l4NbO7AtQHevXh+X+hRC57UMWiai71emr3kirBBi/fjMZz7DX/zFX/DNb36Tz3/+8/z2b/82mqZx6tQpfvM3fxOAf/kv/yUjIyNr3FMhxNUmZ+tCCCHEDWDh6SYLTzeveDttyyTnBQzVW5zpy9G0TXKdixvYF0IIIYQQQgghhBBCiKth6D1ZDDeJahp4VxaAxRdaLDxz5WOgQghxtd16oowCTozm2bbWnRHiMpTuStF3Z5q5pxpUXr74QHMhhBDXl6bDwENZGsc92pNXt7qgbmkMvjtLaszCyhkopQgqEVE7JvIVYSPG9yNiXxH7MbGviHxF7Cm8xZCouXriUNRRtKcC2lPL+65Z55JuIrWU3GpmdKyCgVUwsIvJz8w2m9LtaVoTPtVDHeJAoRmgGVryU9cwHA2n38QZNLEKBpp2cQk91dc7l3S8hBBXl5U3aJ7y1rob64qV18ntc8nvc7HyBkEtovJKm/qbHYLa9UnW9IZ05oYuzDrMZS/9+e131+k8ViR8JbPCoxQUI6yHmxS3XYUqsDcg7XYPdcaCWZP4+1lAERvQ2tnBfbQGQFw2UHUDY8S/7MTV4IwDSiN9R30pMdXuN/DL177iuRDi6nniiSf4xCc+sfR7o5F89n7uc5/jj//4j5faX3zxRbZu3QrAzp07+bM/+zN+4zd+g89+9rN84QtfYGhoiIMHDxIEAffccw+f//znr+t+CCGuD0lOFUIIIcRFe3rXCDdNl7l1YoH902WsKGaqsNKgkBBCQKR0IrX+p8HbCH0UQgghhBBCCCFueBrLKvC8pT19dYOvhRDiisUxDx6aJd8KmC26eI4JJox+ME96i03zpMf0t+tr3UshetJMGHpPjvxNLosvtDZdYmqMRsQlVBkSF4jl+AmxrqTGLIq3pkhvsTj1xfJV3baZ18nflGSoTP5TlfZUQOxdnyra3ap1h82YsBlfkISb3moz8ECG0Q/lL9yOUsSBwl+IaJ3x6bwY4pcjolaMihSaqSWJrBpLSbcDD2Qw0jrzV2EyeCHE5bH7DeyCwcJMuNZdWXOaDrm9Lvn9LqlRi8iPaRzzqH3Xo7PBx8WMwYjUry8Qz5nEng46oAG6Sn4aCkqxVOC8QroJ+icaxB3glIWatFBTJuHRFI2jb2WivnWOrzD3dEh/oHbJz6OiZBvhrEX9RwU6r6fZ/snkjzfzgxq1Q5JsLjaujRIH+U6X0+cgCFhYWLigvdVq0Wqdr+QcRdGy5b/6q7/Knj17+NznPseTTz7JoUOH2LVrF5/61Kf4nd/5HVz3GpRsFkKsOUlOFUIIIcRF8yyTV7YOcnIgz3i5wWLGZSafXutuCSGEEEIIIYQQQgghbgQ6bPnpIkYqCaQI2zFzH7Zoj+nwSwMYb3to3be6bsILe98eXfS6j3WeaPX3XOdMo9S1PYiMru0XWZhnmXcPH++57PXaSNf2g6fGem+wVx+iHgvMSy9pEEW9g11i1f155iaLXdu/FNzRc1ujue6JfYvt3uPWlVr3ZWGj+2uGeIU/Wq9DY/UO1Pd7tLcXUz3X8YLur9uK132d6Uqu57YCr/u2nFTvQNaJoPuxaQZ21/b/Fj/Qc1ujbvegxkrQe//HnGrXdkuLurZHWu/X36FW9/fGa9XRnuucnO/r2u7YvYOj9/7m8+z8lT6MlE7jtE/1P86xlzPs+JU+rGzy+ZDd5QCSnCrWr9JdabK7Haa/W6P+5uYLHo5V8k9cPjl+Qqwv0blkUc24uonjdr9BdqdDe9InNWbjLYTXLTH1UrXO+Jw+42OkNNA0VKSSfzEXUantwn2af0qSUoVYS5oJw+/L4S2GNE5svvPRi6WZUDiQonRHCiOt0zobMP3tGo2THmoT5ezqOujDIWG88ZK+NhrdBW4Kkn+AcVgnPOaCqTBKEVoqwj+UJjyaoj5hg0oSTu3dbXKPdh+jeTt7VwfNifCOXlj0pD2xsROphbiRPPLIIyh1eef9Dz30EI899thV7pEQYj2T5FQhhBBCXLJayqGWcta6G0KIDUKhbYjZs9UG6KMQQgghhBBCCHGj0m2N4UdypEat85V6AoXx6yskYQohxBqxCzpGSif2FVNfTxJydRfMjE4cKnRTo3qojW5D3CtjWYg1ZKQ0Srenqbza3pSJqUIIsRl5cyET/1glrHefwONyZXc49N+bJJc0TniE9UufvOZ6i9qKbsmmQoiNwUhpuMMW/fdlsPIGZx+rXESC+eajOxrFW1MUb0uhWxq1NzuUX2oTVK/u57wQzs0dnJs7y9qsW9t0vp8jPJZCs2IIdPw3MoS3NjEHV86K1nXo+/VpvKMp/BMu4axN3DAJ2xFB9QZ8M4tNZaPEQb6TxEUKIa41SU4VQgghNpnUmEV+v4umweILLfyyDEgJIYQQQgghhBBCCCE2ttSoRXaXQ+usT/OkZHIJIdY3vxzTOhuQ2Wqz+zf78coRuqmhaRoLzzUo3p6ieGua4q1pVKwIWzGVl9tUXm2vddeFAKD//gwqUpRfbK11V66ZCI1IgjOviBw/Idaf1umrf61UfrGFM2CS3moz+wOp+i6EuMp0IAa7ZFC8I0V63MbKGQB4CyFnvly+4WLfjLSeXDMecEHTqL7RpvJym7AhSX3i+tF1SD9ah0frxDE0/mwI0NBzq5frjVs6te8VCU67gAaaojXlM/WN1auuCiGEEGJjkuRUIYQQYhMZeFeG0p1pvIUQM6tjZHSmv1lDMzSsooFdMnBKJmbOQLc10KB5yqd+uEPYvHAASzMABUrGtoQQQgghhBBCCCGEEGuoNZlUSnUGTTQT1OpxUEIIsaYmv1aldE+a4gEXd9AEDfxqRPmlNuWX2mT3OKTHLeyigTNoMfhwltLdKaKOImrHzD3RwF+4sYKwxfpgZnTyN7nMP9Uk9qXqnBBC3OhUDDOP19n5L/rJ3+RSfkkm0xBCXDnd1hh6b5bsTgfNSCa8COoRjWMendmAzkzYNZZts9r71TQcs2DagJoBloIDPtziU0opRnRIMnl707WVz91jtfL6ANUoteLyB/pOrrqNLfbiisu3WgsrLp8OC6s+h62tfK0cXcS+dpS14nJLW33wsWCs/J3YiNwVl/eZzVWfY7XjuRhmV92Gp1ZOF2mEzorL/cfycG5iGv+5LIX3VC54zPdvT2GkdYYfzZLeYiePrUSUX2hRP+Kt2kchhBBCbGySnCqEEEJsFhrk9iYDBZNfr5Iasxh5f55dvz6w9JA4UgTliKAWEbRiNBP67krTf1+azlRA5Ck0A8y0gZnRMVI6caTw5kIWX9i8MyMLIa6tSOkXNfC71jZCH4UQQgghhBBCiBuVChTtSR8za0hiqhBiwyg/36L8fPf7K42jHo2j5wM0Bx5MUziQRs+CXTTY/sk+lEoSVSe/XsObkw8/cX0UDrjEgaL2Rmetu3JNSeXUKyfHT4gbR+wpwkZE/wMZKgfbck0mhLhodskgu9vByhtoBmiahmZquENJ+Pr808mEKFEnpnnahxskH1UzwS6ZpMctMtsd+LoF2rmE1AEPtoawcr6gENeNmk4Sec0+n8wdtQuWxyGM/WSe9LZzSamLETPfr+PNygmD2Hw2ShzkO23EPgshNhZJThVCCHHNaZbG4MMZMtsdomZM0IgIGzFhIyKon/8ZtW6Q0aUVaCakRizcEQsrZ2CkdcyMnlQ5jcFI6cw/1aB6aPnNYCOtE3Vipr5ZY/TDeXZ8qo/2VMDiiy06MwEqhqCaJKXyjknSdKtBdrdDZpuNZoCKoD0TJH+jZoSZ1ul/IEN6bOXZwoQQQgghhBBCCCGEEOJaMdI6qXGbxeeSigKpUQtvUQKchBCbx/xTLeafShJZzaxO6Y4UVtEgPW6z9eeK+OWI1lmfoBYRNmOiToxdMnD6LaycTmc2ZPE5mWhUXLncXpfGMY842NxVU2OlEStJrrwScvyEuHFkttvYRZPObACaxgWBJ0II8Q5mVmfgXRlye1yiToxfjohDBUqhYkX1tTbV1zuEjc0XL2jldZxBC3fYxB2yUFGSfBt7CjOjY5dMzJyOpmnEgaJ11odCBFUDBiPYLeNdYn0IvpchPpZkSTs7W/T/5Dz+vEn1R3ncPS2cEZ84hrn/PkZ6m5EkpT5el8m1hBBCiBuQJKcKIYS45vruSpPb7VI52Kb14ChuHOBGIZk4xFLnB5jqhs3pdInJQpa877GrtsjJfImKk7pgmzv+zVPXcxdWdonj7kf+/QPLG5Siv9lmW7nOcL2JrsC3NToZg7aj4bs6kanhtGOGJnyG3pvD+81BzEDhVhXZRoAVKiJdo1qwmMiZ9C365AyNxl05Xtw6uvouOFH3BUpxz+F54qrHq7+2i33/+pmL31EhhDhnowR4bIQ+CiGEEEIIIYQQN6q+u9IA2EWTvf/T4FL71GRMZ1hDGXJdL4TYPMJGzNwTSTK+mdEZ+WAOd8jC6Ut3fbxSisw2B3fQZPLrF1YxEeJiWXkdK28Q1DdfkoAQQohLpxkw8K4sxdtSNE54TH2rdsNUNRRCXL7cXoeh9+WIvZiZ79WoHfE27WeHkdZxh0zcQRNnyMIdNDHcpDpdUI9oTwVoGuiujpXXiFox9eMefjnEL0f4CyEqgr3/zoH/nINjliSninUhDiE+eq58bzGk9KF5yt/ro/16BtBovpLD2dEmbutEdZPqwdbSOIYQm9lGiYN8p43YZyHExiLJqUIIIa65zA6b+tEOC083OfPhoWXLjDjCjUMyoc+wV+eW+gyGEaE0jcFOi8FOi9PZAkcK/cS63vM5NB2sokHsKcJ2fF0GtIyUxuhHCqRGLOaealB5uX3xKytFvuMz2GixpVIn44fUHYvDQ33M5tJYe5vnZptcrjLgMXaiw9BZj8jUqKctTm/L0MyYpNoRxYrP2GQbK1R4ts7RPTnwLn8fhxfbDJc7PH9TP420VE4VQgghhBBCCCGEEEKsDaffQDc18vtd/HKIXUpuc47+MKJ8k87CHctvezpG90C+8XS153Pclz/RtX0qKPZc51h1oGt7r1APXe89eB1G3cfAm6HTe524+zpu2u+5TqfRY3tRj153Gat+i2503598ptNznSjuvr1y1e7a3qy7Pbc1q3WfOdK1g57r9OqzW+re56jXcQFUj+Mf99hHgMgzurYbmd7Bp4VM9/sPQY/n9yq9j1kvfYO93xte2D2sYHK22LW92u79/LW+ha7tPzX0as91qtGFk5gCPLGwp2u73eP9D73fM1Wvd59/6aYXurZnjd6v8//ylQe6tjfmM91X0FeYBdXTOXTuv+mOT9oPcMMIp61oWRbllEug67z79Fky2+HE5+9n52dkslFxeYJGjF8Jye12KL+4uSvxRmhEPb+xxcWQ4yfExmLmdPL73AsuVvxyROPEhYljdr/ByAfyWHmD2R/Wqb7W+9xHCCHeUrw9xeBDWWpvdJh9ooEKNmalZd3WMDM6RkrHcDUM98L/2yUDM5Nc44etmM5sQOXVNp25EG82IOpcwr6bgAXMdx8zEGJtaKApnE9W0U0gTNpKH5mj/kwB72QaUNhjbeb+oySmCiGEEDcySU4VQghxTemuhtNnUnmle+BEpBs0dYOm6TDr5rizcpaxZh0nCmkZJmezBXbXFhlr1phLZZjI5Kk6ywMESnem6Ls3g24mI+hKKYJqMvNYezKgccJDXcmEYjpkt9vo52Y1izsxYTtm4F1ZrLyBtxgy+GCW7E4HzYCoo4ja8dK/OEwSWc1UMjA1cHyCrBdgxTGRpjGVz/DKeJ5yylkK8ilq3W/2zo87zI+fDxxqe8uDdU5vz4BSy4OFLjM5tVTrcNeRBebzDjOl7oEfQghxMSJ0InpPMLBebIQ+CiGEEEIIIYQQN6q5p5ps+3mb+pEO09+pA+D0m2z7ZInYlMQIIcSNoeXatNzk3pDRXj6e2bQtskHAu86cJXoow/zTTYjWopdiQ4uhMxNiFSUoXgghNpvBB7NkdzkEjfMnCJoGZsYgbEb45YjIi4k9hZk1SG+x8BcjznypjF+WkwohxOr67kvTf0+GxRdaLDyzsRLV7D6D9BYbw9Vx+g3SW200/fx4k4rV+ZjATkzUUdQOe3TmArzZkLB5FSppjAdw0oLnHLj3CqpRCHE1LBiAgsz513bmzjrtIxkar+QY+tQ0QdlEs2LMbAy/L/Gl4sawUeIg32kj9lkIsbFIcqoQQohrqnhrctEZ1C5uoHoiVeC22jQAzw6NU3FSzKYyjLQbjDbrjLYmiTSNuT0O9aMeVsGg/4EM1UMd6kc66JaOmdFxBkxSIxb5/S6DQZbGUY/Kq+0LBsyNlIbTbxL5Cn8hREWgmdB3dxoza9CZDchstclsd1BKob0t6TNsx0x9vUpnNqR4ewp32CTuKHRXx8zquIMmRkpHM7VlyapNx2I2l2Yx7VJNOStWhL0sK8xif1GUYmSxza3HypRzDs/ePHjl2xRCCCGEEEIIIYQQQogr4M2FnPrrxWVjzSpOKlCk5mNqLZ0o3WMcM1KgI+OcQohN7Y2Bfgodj6wfoN+epnhLivkfN6m82n0C2W6cIRNv9kpmfL023BGT7E4bzdTxZgNqRy6s7iauHitvEFQ3fxLSRg0oXU82/6tEiM0lDhSd+YAzf1tZ1m6XDPI3uZhZHcPVsXIaUSdm7okGtdc7KPnOFUJchOxOm/57Msw91aDy8sVfg6wV3dVIb7HJbLFJb7UwMwZxoIg6MWEz+Qz05sOlhNTYvw4VYN/TgWkTXnbglAk/3QR79dWEuNriGYPgsQJoYP1EbandHgww+wOCKYfGi1naJ9KoSMPqDyjdo2GmdWpvdPDm1t+4ghBCCCGuLUlOFUIIcU04QybZHQ7FO5Lk1M5scFHrefr5r6a2YSU/LZsTVh8nciUGOi3ump/C7jMBj8IBFxUo5p9soLrc/TKzOvn9Lv33ZrD7Tc5+pYKR0sjtdcntc3AHrKXHhq2YxgmP4i3n+jwTkNudVCmdebxO7Y0OAIarYWYM/Eq49Jy9KsN2c+Snbr7ox15vVhBx7xvzlBo+s0WXl/b2o3QJ2BJCCCGEEEIIIYQQQqy9d04+6JcjyjfplA7HjD4RcvZD1gXraKFix2MBkQtnPnjhciGE2Czats3ju3YAcPv/9wWG35dj4KEMmq1Rfr614rqlu1OUbk9juDqRF7P4QmvdBJQXb0sx+HD2fMMtKYYeURCDihSNUz5zT9SJO2vXx83Gyuu0Jvy17sY1p5RGrOQ+6JVQcvyE2FBUpHBKF4aL+uWI+R9vrAqHQoj1x8waxKFaN9cRF9DBHbbIbLVIb7FxBk00TcNbCKkf8Wid9WlPBV3jD68bG/hUA77vwnELvpKFX2qsYYfEjShuQfD3xXO/XZiUbRYDwgWb2lN9yXIdwjmbgfuSa4PUiMXp/1G+bv0VQgghxPogyalCCHE1aJDeaqMb0JkPCes37rSBxdtTFG9PYWUNonZM7fUOC881URc5GdK+xhwAp7IFPPP815Qex2xtVNlRLxNoOmEjYuh9WfI3uSw81+o5MBQ2YpqnfPruSW6o992XpnRHGjRonvSovNSmPRNguDqFA+75xNT5gDNfqYAGms6y7UcdRdTZnLM77T9dJdsO+PGBQRYL7lp3RwixScQbJMBjI/RRCCGEEEIIIYQQyxnnkpH8gobuK3KnYrQYwmSol8xZhRGAEYBdU1BYu74KIcT10jzuc/z0Ajt/uZ+B+zKkxyyqhzqMvD+HUuDNB9Re76C7OqU7UphpA6UUKlZohsbgg1n6781w5suLqBhy+1xqb3TW5B5oaksyscCJ/75A3I7J7nHI7nTRbQ0rq5Pb45Db4yxVN0pvsWlN+DSPb/7kymtBM8DMGAR1qYkphBCbiVUwyO11qRxcp0ljQoh1y8zppMYs3AGTyFN0ZkO82YCoszxpza9G6KaGVTAIquvnXHLfkxbqRRfecCDQwI1hPEQbb8N4wL7+hVW3cbQ1tOLyEae24vJI6as+x49mR8//cifsnm/h1hSvLQyDrjOWqa66jSG3vuLygrHypEUAfebKybD1KLXqNjpq5cnhTgaDKy63tdXjMl195dmJRozVj1efsfI25sL86v3QVr7unI1X3sbFvDbSurfi8mFr9X1txc6Ky3c7M0v/9yKTg06ByDMBjb3WDNlMG0NL3vND760x4Y5Q2Fqn/6Yyug5+w+Qb/2oXA/dnqR9fub9CbHQbJQ7ynTZin4UQG4skpwohxBXK7LAZeFcGu5h8pKpIsfhii8XnVr+Y32wMV2PwoSyNEx4z36nTng66TZ60ooP5USJH0THPD1KYccQDM2dxw4BFN01fp8XQe3MEjWT2xsqrvQfPnUGTLZ8oomkadsGgdEeayistyi+1if3znQvrMbPfb7DwdBN3xKIze26QQ7G2M6JdZ6PzLY6P5SQxVQghhBBCCCGEEEIIsSH4RQ1OweKtBn2HIopvxsQG6O8Y1/Xz4BUlAEMIcQMJYeobVbZ8vEh63CY9bifNtQh32CI1kvyuIkX55SbzT52/t1m8PcXAgxm2/WIfmpZ8dtpFg+lvrRzsfC2khi1UrAirSWJs7ZBH7dD5YFd3xKR0V5rMVpuxjyQzEBQOuKgQVKxQkSL2FY0THgtP33j3by+VmUmCo8PG5p+MOUIjQs4NroQcPyE2jvw+BxUpFp6VCqni+sntdUCHxlHvhoq92iw0E/rvzVC8PQUaBNUIw9Ex7k3OF4NaRGcuOJesGkKcxOGlt1hU10lyqt1voL6Uh44Gt3poOwIYiNDW+SnMzu+3cWuKyAL01ZMXhbiarGyI29ehOZVl/MFJssPLY3NTRZ89Hz69rM3OhtSPevTfl6HvzhRmRqf+ZofO9OYsACOEEEKIC0lyqhBCXCbd1hh8d5b8PpfmaY/p79QJ6xGFW1P035tBMzQWnr6xBnU1Ixm5UbEibMWXnJgK0DEsIvNtKyrFgcVZrCjiSLGfbfUqoa4z9dfz+AsrD2RpJox8ME/sxeimQVCLOPtYZcVZnaOOonnyxp1Jue0YbJlronQNK4iwg5g3txXoOHLKIIS4fDE6Met/wHwj9FEIIYQQQgghhBDLVf/nGUr/vI9tX/bQbZ3GCY+pb9Y48N9cgqczaIbCeqSBOxxwmwm61nvguhqlu7ZPe72rHJTc7pMnelH3MdVap3elgjDuPjbx7RP7eq7Tn+9+H8L3e4/pakb3MXIt2729WOh9r2M4272iRrnTu5LGwnyx+4Jef5oVgkaHejz/3vxcz3Weibd1bW927B5r9B4zst3u1SD8oPfx7zS7L9Pc3q/NqMdrY3q6eylgzbv0ca6JU/09lxnZ7sGEutG9zwPZFV4zqe4VZab8Ys91ymH39+ZEvfv+h1Hv/R/Nd39+1+wdMDlqVbq2r1RRJtvjtdHJdH+dhbVerz/A7H6co3zv+2RH/+tdS/8/GMe87/kZ7DBmcszlzX0F9DBmeLZDYGrMDzjE7zfh/7Z8G6Vyh/HpNqlvL1C8LUV63EZ3IV65uMzVZYDh6iig/LW9yxa98z1rt0O2n2wzO+IwdDSk0PYw4hgjBjOO6SuauMMWE3+/elWZG5lmJR+6cXAZN3qFEEKsW+ktNq2zPkpyRMR1NPKBc9fSj0LYjJj+Tp321KUXOhDXX2aHzeDDWQxXZ+GZJtVDnaUiEGZOxx2ycIdM3EGT/nsz6OfOISM/vqCi6lrJ7LAZfn8O3BjtYy203MaYfEUPYzILMYEDhz+yepVSIa6WsKPzxpf20ppLARqFHVXGH5hZdb2l9WsxC880Kd2ZpnggRfFAiuYZn8mvyTW42Fw2ShzkO23EPgshNhbJNBFCiEukGZDd5dB/fwbd1pj+To36kfM3mBefaxH7isGHsrTO+rQngjXs7fUVNmPmnmxQuiPF9n9WonnSZ/HFVjI72uVQipvLcwy3kyCGmyoLLDopjhb6KC2sfuE78K4sdsE417eIia9VV0xMFfD8TQPsP1Vl99kagamT8iOUpvHqnr617poQQgghhBBCCCGEEEJcIPYVZ75cJrfXJWzGNE96bPtkieD7JvpwgPVoHT0v48JCiBuYrvP9+0YBsJzknl1s6kyNvS3pt0uea7nkUi657Px/nibqxPTfl2HXvxjg9N8u4pe7fK7q4AyYOP0G+X0uVsEgasW0Z0PKL7eWKp+aWZ3CAZf6kU737byNmU4SUzUgNxdQH7R6PtZPmRy5OQfA1LbSBcsfPDpJaVSR2W7jV0NSYxZoGqjzwfNBNb6h7u1281bSgWGv83JSV0GkdCIlwZlXIlofuSdCiItgFQwaN/BE7WJtHP+vCwzcnyF/k4uZMdjy8SJhK6b+Zofa4Q5+eX1U1xTnmVmdwYezZHc6NE95zP6ocUGsXViPadQ9GsfOxUtqYJcMNEPDmw/XLPnYSGmU7kjjjlpYWR0zY9A44ZH7V2203pcR605s6oQWGCErzZUlxFU1f7jIiW9uR0UamdEmg7csMHTr4iVvp/xim/KLbfIHHIbfmyfqyJisEEIIcaOQ5FQhhLhIVl4nfyBF4SYXI6UnAzA/bBA2LryAqrzSJrfHoe+uNBMTN9bMP/UjHVSsGHp3juxOh+zOZBb4xRdaLDxzaZVkR1oNtjSTGazbhsmbxQFmUxnQNC68pbxcZrtN8dZk9rDmGZ+Z79TWzcxs61krZfHC/gFQinvfmCflR3i2jHQJIa5MpDQitf4DWTZCH4UQQgghhBBCCHGhoBaz+HwLgNEP5zFTOvbHKxgjF06cqFSSiwSgIogXTfSBcKlNCCHEhcovtFEhDDyYYdsv9tGeCqi93kHTIbPdwR0xMVI62rkPU6UUUTvGLpnY/SaFm13O/l0Fq2gw/EgOTdMo3ZVm4bkW9SMdMtuSKqhhPQJDQzc1NAPQNU7elmLnq21GTngrJqeu5vkdQ3zw1dOM/kR+qZ/dhM2IE//10oNwNwt17ta3pm/+L8YYTSqHXKFYSt8JsWHEgUKXSFFxnUXNmJnv1Zn5Xp3SnSkG3pXFTOtJVb3bU8w/3aTycvuitqXp5+YUka+eq8ZwNayCgZU3sAoG6S027pBJ1I6Z+kaVxomLTGhX4C+ubaKxZsL2f9aHbmrUj3q0JwLakz6tswH5/20DZaaes7jDZOhISOFsRHWbnK+KayeOYfJrYzRPZtAMxZ6fPk7f7toVb7d2yGPoPQq7ZFyFXgqxvmyUOMh32oh9FkJsLDLkIIQQK9Gh/v+4lW3lGgOtNr6uc7qQ40wxT3O/DR9JHha7Fyao1ssN7j41h/1vdnFw6wD7/qdnrnPnr6+T/9uD6HHMByaOAxBoOrPpDKVOm3QU0nd3mokP7kRdxPWm2UxOgsPAZMFKUzFTnHWLxErHTOKLOPNvHlpxG+nIJ25XmM5lKY+58K4VTqyv4jm3Hq6+MbOx+khp9ehq6bcJZV/EqKuz+gxUe3/theWr9JsMfbJE5dUW6k/n2CuTWAkhhBBCCCGEEEIIIdY5zYD0dpuFp5ts+58vTEwNX3cInsngPFrH3O7j/VOB6KxN6p8voOVkEFQIIVZSeaVN64zHyAcLpEYt0mNJQqlSithTtM74tKcD/MWI9rRP3EnWswdMtv1ckS2fKIKWJMfMPF5j9AN5Bu7LMHBfZuUnfrWNAipDVxZU7psmx//rPIMP5oj8mPZZn/hcDL2mARqM/WQBM2Mw/vECE39/Y01A/BYrmwS/Bw2pZCaEEJtJ7Cv0G6Aqtli/yi+1aU0EjHwgh5UziAPF4INZ0ltsGsc8OjPBskqqqVErOX8EVKTQDA0VK+aebNI42mH40RzOgAm6hgoUQSOifTag/EoLdeFwwHWjGYA6P+GH7mjEgYK1GHLQk3M7K290+aejv61YQdiOaU8GzP6gQf2Yhwo2VhawikAzNMovty+5eMZ6lC4nLxizvbH+DmLjqbxSpHkyS3qwxf5fOIJ5EXGmK8nf5DDwYBbN0tA0DW9uDT+QhRBCCHFdSXKqEEJ0YWZ08je7FG52MSdmKKccXh4dYjqXIdYvbjYq/dzYwNbFOge39F/D3q49u9/g/pkzNEx7qc1SMePNOs8MjVO1Xfo7LSpOCi7hPmbFSlOx0pfVp5Zh82Z2iMiRQZrLkd3tEAeK+aeaazNAKoQQQgghhBBCCCGEEJcos91GNzS8+e4VU4MnsxBpeN/NEe3vEJ1NxrS1rAyCCiHExfDLMaf/RxndhuxOhyhQtCd8Ym+FdeZDJv+pyugH88Sh4syXKoTNmJPzixT2u2gGtKdDNF1Dt89VtQ4VKlSgIPidUVp5nUb/lVc8ijsw8716z+VH/9M84x8vkB6zGXpfltnvN+h/II2VN7BLJmZap3XWZ/YHdeKLLCS10cRhcm9VMzZ/AlOERnQ1ZzG+AcnxE2LjSJJTpfqeWFveXMjpvy0z+FCWwoEUYSvGcDSG3ptF0zWap33KL7doTwbE0fl4r6gTUz/mUbo9jV3QGXxPDmfIonqoTW63g1000R2N9JhN//0Zam92mH+qQXQdEvvMjI47YuGOmKSGLZwBExVDZzZIkkCzSRWHoBbRng7oTAfJhC7l6JpUgdVtjcIBl9S4TWrUQjeT72oVK4J6nPRjJqB2JCKovfUv3nDJqBdQ0DjukdvjsPBsc8NX2K2NmWQWfEZeC1CGhpfVsDQIxgB3rXsnNhPdSsZE3VJn6f9XYuh9uaSaci3Cmw2Z/X7jircphBBCiI1BklOFEOJtnEGTvrvTZLbbqFBRO+Jx8KN7qbvOJW3H9UNuOzPPdCHNsaHCuel2N6/sDoeC76GrC0d27p+dYCqd5bW+YZSmocsku+te/maXvrvTLDzfXJrJTwghrkSsNGK1/r8LN0IfhRBCCCGEEEII0YMOAw9maZ72aU8GcC5ZIl408B4rgJcEYhu7OxBphK8kEyM6H6ht9iF8IYS46mIfaodXyEh9h9bpgGN/ubCsLazFLDzTWnXd8s5Lu097pSb+vsr2T/WR3+/SPBvQd1cGpZJqV5GvyO52yO5y8OZDwnZM1FZErQi/HFE/cvHHZL2KO8n9XsOVBCYhhNg0NNAtDU0iRcVa0sFM6ei2Ru1wB7vPJDVicfbvyoRtRWabTf+9abb8dJGgHjHxWIWjfzbH4MNJImt+n0tnNqD6Rodtv1Ci/HIbd9DCzCXJn7qp4S2GBNWI/D6X/D6Xk19cJKhcZKCaBnbRwD2XYKoZq+yOreEOWVjnnt+vRnRmAmpvdNBMjdSoRfOkT3sqQDdJ9nfUIrfbQTM0Ii+mMxMuJax2ZoMrrvhqpDTGP1rE7jdonQ1YeKaJvxjiVyPCRrzhEzZXU3m1TX6fS3rconU2WOvuXJHFPRaNQYO9320z9spbs+KYKBSNd0cEO9e0e2ITyd9cY/GFPhbf7KN8rEh2rMHA/jKDtyxe0nbCjk52jwMatGcCJr5avUY9FmLtbZQ4yHfaiH0WQmwsMuQghBAkA0bF21L03ZPGr0TM/rBB/aiHChT1n7/0G543TZUJDY2Xtg0SGZv7xp2Z1SnekWImleGVgVHSgc9Iq85Ys04qSkbNRlsNTmeL1ByZumu9y+1zGH5fjsqrLRafXT0gQAghhBBCCCGEEEIIIdYDd9DEyhlJhQzglbsVZk5n5y+Xlh7TmvR5+F8foXoqx5nZcdJDbfbcemIpOfWUN9B120drgz2ft1dQh2N0jyo19d4zAmpa90jR/kzvsdpO2P12bxxe+r2JdKZ7UtW9w2d6rjPi1Lq2v1Yb7blOrdX9XoFd6h40PJBt9tzWzcXpru3vyb3Zc51FP921/aWp8a7tnXrv+0SdsPu+WLkVSir2+NPEce8AoXI1031B2H0dZfd+nRm57kG6K71mbKf7Oq7dvT2Iekdyp4zu67xY2dpznbzd7tr+3tGjXdtfWOy9rbTZ/W+j93j/AXx74eau7QudHn8XoN7u/toY7uv+nplo9Pfclhb0+Ntkewdcjw9Vurb3+syaq2Z7buvN/3h/9wUrBbfr3Rdqbvf3+UoVWqxW93WCoPfrzCx2/zu/+X/e03MdvXK+Mut0x+M9p84y9qE8oBj79BnMVNLH9imX8g/6ARNHA+1tMxxoZo3a6xs7QTVsJ/tppjf3PW6ASOlEavPv57UUdZm8Wgix/vTfm8buM5h7SqqXibWRu8lh5NH8Be3t2QClQAWKxjGPxjEPd8hk5IN5tn2yj+ZpHzOVnGsZrk5nNmT4kRxRO6bvzuXXdZqhUXmlzeC7k/NavxKiwuXfU86giQoVfjlKKp4OmThDFu6wiTtooVsaSiXLY3/l7zgVKxrHvSS5dCYkai0/n6288s5rmOQcUTPBHbJwRyxSIxalO1IY92dQkcJbCOnMBERtRRwq/MWQ1kSwalKpbmn0358hv99FRYrTf1NOKrPeYLy5kLAVkxqzN3xyKoBf0Hn9oyly0xFGAPlUi8wzBtknDFqNGO+2yzsPi2PozLrUjuVoTaUJahZWLqD/7gUKu+V74kaj67Djl0/SfjnD7EuD1M/kqZ/J03/TInGoE/k6Tn71zPk3/n43ox/MoZTq8vknhBBCiBuBJKcKIW5ImglOn0l6i016m407ZIKCxRdbLD7fgiuoFqnHMWPlBhowXm7QdCwWcqmr1vf1pu+eNIatcyLfB0DLsjle6Od4vg8njoiBWNOJdLmxt65p0H9fmr67M1QPtZl7onewjxBCXCqldOINEOChNkAfhRBCCCGEEEII0V3YjAnqESPvz6NbdeJAMfL+JPi1/EqL+SeTMc+ZXxhg8slRsmMNtn/ojFRNFUIIcYGG6xCT5JIXHiwvJaYCpLZ3SP2LCb5727nkZB0G352leCDF8Pvy5Pb6TPz9Bq4SE0PYjDDzm3+8PEYjRk4EroQcPyHWt/RWi767M6RGLeafbtKe2PjJWmL9y+1xMFI6KlZktju4Q+ZSRfbOXMDcjxrYJYPCrSlSQxY7f7mfsBnROhvQmvRpnw04/aUyhQMpMttsdFtj+js1NFOjeEuKOFBMfbN2rmqpjpHSMbMGVt7A6TeSCqrzIQvPNQmb58/h0ttsxn+qAEDUjjFSSZ+CRoQ3G7L4fJPObEhnLkQF127yBRVCezKgPRlQhqRia8kgNZIkrKa3JPus2zq6lexL45S31O/OTIg3Hy4lrBopjbGfKmDlDcovt6i+3iFqXkHg4wZm9xkYKY2gujwxtxmuXJjkH6duXXXbGWuFCajoPXHXWxaD3hMbveX2vokeGz//37jfgG9lyLxkkDkewS/UeXtIZtd9DUE/aGJMGLxZz+C3LVg6h1OYdkRrKk3ra2mM2yYZ/FB95X2JVt+Xath9UrCl/Vilel/BXD25sRKt/Bx9qdUTbSuxveLyerx6IZYTXu8J7QCCeJUyzBdhKiiuuDxrdFbdxphVWXH5m7dlyd02z+L/OYzqGLz29G7az+YAMEd9Mu+p0lEmRKCi5EWnDYZLr79gBzABKGhPrPx+EWKj2yhxkO8kcZFCiGtNklOFEJueO5wkoabGLNyhZMZb3UoucCMvpnU2YPYHDZqn/QtmMbscsa7z2pZ+bju7wG1nFwD42h07rni761X+puQivOB3qNtvG+DQNDxDvmY2AjuIGP9ogdSYxfyPG5RfktmrhBBCCCGEEEIIIYQQG0vYiDn1xUXGP15k6D05VKRoTwVMfau2bOx/8Y0S/TcvsvMjvauBCiGEuLGZYYhOMp9x/u6VA82JofJKi+KBZLJiZ2Dj3x/1FiJyux38coQ3HxJUbrzKW0IIsaHpMPJojtxel/ZMwOTXqzRPSaLI1aa7GoatEXXUqlU215ruaKTHLZqnfNRlfq0bKY3UiIWZNVCxImwkE0SFjXhp/4u3pRh8OEscKnRTozXhU3mljV+LiJoR7ZmQvrvT9N+boT3pM/WtGipSpEYsUuMWuX05NE3Dr4a0zwZUXm3hzYcolVzz114/n4DVme5eya8zF1I4kGLsJwqEzYjq6x1qhzuYmSQhY/6ZJpoO3nxIZ/bCiqfXnQJ/McJfjKgeWp5g5g6b9N+XSWLzFBgpHd3UiANFUI9QscLMGBArzn61gr94Y5+zDT+Sw1+MqB9dPVFvo9JHI+JfqcEPUnDUgcfT8P5Wz8cbL5oYL1toSkOh0FIRA+MVBrZUGN07R2k4SW71Ozrf/f/dz8lXx9DyMTsemLyOeyXWo/azebBijFJAOGVT/ZuhLo9S5/Ocz/3U9KSS89yPpDCKEEIIcaPZ+KPiQgjRg+FqFG9PU7ozhaZreIshC882UXEyKOiXI7yF8IqqpL5T2gvYN1VmtNok0jTm8ikmixk289Tr5VfaFG9N0ZZE1I1HKUbLLQ6cXcTsM5n4hyrtSZkpUwhx9UVoRBtg9uyN0EchhBBCCCGEEEL0piKovNLG/aBJeypg5nv1CwJNzVRI2LnyqgVCCCE2r5FGEuCtA4vf66Pv0cUVHz/03hxKKc58uYI31z1RYiOZe7LByPtzjH4wqUDuV0LO/l2FqLO+E28uVYxOhFQOuRIxm+s1IcRmUdjvkt3jMPXtGo2j3lp3Z8PSDM4ncuqQ3eWQ2WpjFQ3sgrFUDRTAWwzpTAe0p5J/YWP9VK400jpbPlHALpg0TnpJgmqo8BbDJJlRJZU7s7sd3GELw0mSH8N6TNCIIIbUFovUqIWmJcs0HTTj/L319kyAvxiS3+9SfqnF/I+bGGmN1JhNdrtN//1JpUVvPsTuN5h/pkn5hfMJdc2TSfK07mikxyxS4zbpcYvCLamlx4StmMmvVZNYvxXU3/Sov+lh9xsUDqQo3Z6i/97k+SMvpnqoTbxBzmk6MyET/1Bd+l3TwRk0cUcsrKwOuoYKAyqvttfVa24tZHc7uEMWZ75auewE7I1C14FH2sTzJhy3iBdysNeHAx68bbjL+LGF8boJDgT3d4h3xXxy6Kmu27TdmA/++jN8/T89zIkntlDaVqUwKsmFN6Lir80QnHCI6ybOgSa6Df6ETXDKIdQM0BVvzeQUz5soX0/ir2PwT+pYWYPCLSnmftTEzOrojoa/sMnflOKGs1HiIN9pI/ZZCLGxSCaREGLTMbM6xTtSFPYnA1SLL7RYfL7FNb8vohTvPjyBFSsOjfVxti9LYG7+AJfF55o4fSZ3mVMcKfRzKlfc1Mm4m4EZRgzV2mydbzBQ7zBdTNP6y1mi5o09UCmEEEIIIYQQQgghhNj4Gsc8Ts4EhM04CbLtNyjcnMIdNunMhMShojmdRikZyhZCCNHddDbN/jkdK45pn8hAj+TUbZ8sJQG3toamafTflyaox3gLAbU3vAsmSc7f7IAGtUPrO1EoqESc+XIFw9VIb7UZ+UCe9BabuiQ4CSHEuqZZGqU7UpTuTFN/05PE1MugmSQJjXemMdM6fjUibEbYRRMzrdOZDfDLEc2TPkE1JOoozIxOatTCHbEonKukHtQj2tMBnXPJqn55bRJzDFdj16/2L/2e3eGQ2W6jnbsYbs8EhLWI3F6XqBPTngrw6hG6rWGVDNJbLdA1vLmQ2ccbNM/4SxNAGWkdK6tjFQxy+1xye1waxzwaxz3GPlogPW6h6RqdufOT5EedmLN/V6cz0z3BNPYUjRM+jRNJsqqR0bGLBoajMfrhAts+WeLsYxXaE6tPvO8vRMz9sMH8j5ukxyyMtE7zlL9hElO7UXGSsNrr+N3IirenaJ726UzdQEUZPl6H72ZgwoTnUvCci+0q4rEYpSmMYyYqqwh+vsPFzMdimjHv/5Vn+PqfPcwL//0WrFTI3kdPMrx/5Yl6xOai6+Ds9oDz5xD2uI897tOK7BXXffNuxdafK+IOWez5rQE0Pfmuif2YyW/WaJ+9gd6fQgghxA1IklOFEJuGZsKOX+7HTOlEnZjyyy0qr7aJvWs/qLRloc6uuSpWrDg2VODEUOGaP+d6oUKY/HqV1P+ym33VBfK+x6G+ISJdZpldD4woJtfokG/55Nt+8rPlowOVtM2ze4aYLaTZ1zy11l0VQgghhBBCCCGEEEKIq+KtiiF2yWD7J/uW2t1Bi9YM5LfVJTFVCCFETxk/wIqT75L+n5hdao87Gt6cTVi2GP3JHE6/iYoVKlQoDdJb30r2SDH0bkXjuMfM43VUCLl9DsPvSyqRqrBG/c01ThjSQbdh6OEc6e02UUdhOBoqhvZkwPS3akQdReOER9iM6LsvQ/Psxk7oeKdI6URK7mlfiUhtnteDEBtdfr/D8AMldFuj8mqbxWdvrIp37rCJtxihglU+l3SwiwZ20cAdtZJKqHmDyFN0ZgLcIQvD1agd7tCZCbFLBkZKpzPTof5mp2eSaf1I8r1uuBruSFJlNDVqkdvtoOkafiVk8YVWMtHDdZw3PjV+PpHIr0bYBYPFF1oElYjCgRSpUYuoZDDzvTq1I51L6lvUiolaMZ3ZMNl/HYYfybH150p48yGzP2zQOu0nE0ddpqgZ0z63/sQ/Vhn/qQJbfrrI0b+YX/1vfY4KFM1T/mX3QWwM7qDJ3JONte7GdaXbwE80iWPglAmHHZgx0Y8baGjE6ZjgZy8uMfUtmYLH7T9zmBNPbqExl+b1f9rNwJ5FDMk0EBdp9ocNht6XRYXgzQUoBcVbUox/tMDUN2pLlbKFEEIIsfnIKaMQYtOw8gZmKrmaPrRjiDN3XZ0E0fTWes9lg9Mdhqc69E97tCZ8Zk74qDfn2Lc2E95dFXbJQHc0vPkQdW6itRN/+OCyx2hK4UQhgW4Q6To5r8NYvUEMjLQbDE42mUrnmMzkaVoWu6qLpMOAWNPwNAtfN4g0nYlUHqVdOAKiLiYo6CIDhwx/9QdqFzGhnHaR99Uupu/xRRTUNS4yMqrbS80OI8bqdUbqDYodDw1QkcIvR3gLIfMzAc1TyQBwkQmKF/VMQghx+WIF8UV9uK+tWGIohBBCCCGEEEKITSXqxLQmfOyigZlJBmZ1K6L/wPmqD0HbYPalARoTGfy0Qe59ZTS5gyqEEDe0ajrFdDbNSKNF5Yd9uNvaqEij8XKet25SZrYpgnrEqb9eXLqnCqA7kNnh0HdPhuxuh+xuhzhQ6Ob5MfKh9+ZWTU41szrOoElQi/AXrt7N59SYyciHChiutlQ1LWzHWBmdyIvRTI3cbgfdLlB9rU1Qj1h4tsXwIzn67skw/8TmCfqP0YkvJVpfXCBGbqwIsV4MPJSlddJn4dnm0mQ9N4rMdpuxnyygYsXx/7LQcyIFw9UY/+kiTn9ywRc0IlqnfCqvtDEyOu6QReOER/mlFmH98o5h1FE0T/pLyTeaCakRi8ItKUben6f/3ojFF1vUDl9aIujlahzzOHJibum5+t+VoXRnGt04f15y6ovlpWqoV2LHP+/DyibX3WZOp//eNHbBoPJq+7ITVDUTirelye93sAvJ36096aMi+f4Ry8Xh8vPtG4muAztD2BnSjmxoAQ0dhi7vfde/s0r/zionfzzGiSe3cuqZcXY9NHFV+yw2L28u5MzfVpa1VV5rs/2TfYx+JM/0t+s0jklld7GxbZQ4yHeSuEghxLUmt1aFEOuXBoajEa0w++roT+QxMzr1Ix6Vg238cohdMvHN6/DxphQHXq0RmhoLz7Uov9xaGszTTCjemiKz0yE1bOEthpz+m/K179MVyu60Gf1IktSrIkXztE/tcAcjjtGVYqjVYLRRp+h10AEF+LqBE0d4ukHVdin5HQyl2NKssaVZW/H5WobFopO59jt2gzDimB3lCrvKFTQF8+kUB4cHKfzJm/jlEHVj3X8QQgghhBBCCCGEEELc4KK2YuKxKgDbfqGEihV3/uuTmOmQ5kSK+kSWqeeGiPzz9xRu+/Cb6Oby+xIv2+M9n+NMrdS1fdfAQtf29w4c7bmtN5rDXdsPzo32XCeKuyfVpLO9A7129C12bQ97bOvgYu/nX8h0H+M/PD/Ucx2vY3dt37tlsmt7yWn13NbxxkDX9tPN7n8XgJlWrmt7HHcPKnJzvY9lEHSfjTLucSwBzEzQtV03eg/iGz2WxZnufbbs3rNyfvrAk13by0Hv+zV/c+ieru263v0enrbCjJ+9/mZps3f1jJ3p7u+nnc5c1/apTu8JbMMeVRKLdrvnOq3Q6rmsl17HYGq+R996vP4AtKD7stjrPRvq5EL353Hd7q+/lWip7q8ny+39OvOb3d/nKuh+/KN273u7eqH7e1BFvY+ZYXdP5tS03sds/MDMst9n98HAN0DNOwTzDgChoXFyZ5pmxqTTrxM6OvzihZ93Q9kGdSA9GVE6HGG2FPq5j7KwFeHNLz92xTtS5N6TR+kasabh+iHGuZeQUoqwEbPwXJP64UsL4s1st+m7N43u6MSdGH2vhVUFNGhu0YgdaA9rtLea5wMr45ixb0eksclsXf53TG+59PeCEEKI6+PMVyqoyo2ZcO8tJt+rmq7Rf0+GuS4TKei2xsgH8xhpnbOPVfAWwutSDVyF0Dob0DobYPcb9N2dZui9WfruTlN+qUXtjQ6qy2mLZiRVT90hE7tgEAdqqZrrJXvbpcTCj5ssPN3EcDW2fKKIXTQxM/oVJ6eaGX0pMbX8SouoFWOkdPI3uxRuS1F+oUXltfYlHXOrYDD+sQJmWqf2ZoeFZ1t48yFBZQNXjBDXjDcb4o5YQO/ruhtGGkhfeZDg9KEBQDG8f/6KtyVubGE15tRfL7L9F0uMfijPFDVJUBVCCCE2IUlOFUKsS1ZeZ+SDedwhi/Z0QPO0T2c6QDM1OrMBcUdhuBrZHcmNQKffpHhbirAeEWdidi2UccKQmWwGz7q6H3XDkx1uPlijkTXRFJzYnUH797NLy7N7HAbelcFI6bTPJjfSnb6N8XGrnZtBrPxKMgtgbq/D2E8UGDt9HEiSURfcFIf7BmibFm4YMtqsczxT4my6AJqGHYVsq1fp7zTJB8n+twwTO44w1flBxsO5QUlMvYoGG01um5nDiiNOFQsc6ysRGMnAr7twGYPTQghxFcVKJ+4R9LWebIQ+CiGEEEIIIYQQ4vLMPtFg5P053vjS3q7Ls6MNdrz/7AWJqUIIIW5Qps6hj2ZZqLmkWzGWH1MtmudKE4Ftrp4Y0RozaI0l9+tGn/DJTMSc+XJlWUW7zE6bgXdliKOYSOlYKqblmCzmXCoZm13fniS7y2Hk0TzD71UEtYigHjHzeKNnIonuwpafLmH3GaAgDhRWxoQa+CWYeY9OnO4xHq7rTH5Yx2zEpKcU2p/WUZFi4IEstUOdSzyI61ukNKINWO1kPZHjJ8T6EZQjTO3GvNcZ1mOmvlVj9EP5JHasHdM67YMO6XGL9Fab1LCFihST/1SjPXnpk3VcDf5CxPS36tilFqW70ww+/FaSapvq6+2lSuy6nSSOOv0mUTvGK4e4WYPCgRRxqIi9mKijiLyY+NzPqHO+PWzFtKcCVNDj2vbcuYHhJK8Xp9/Em7uyuKKwGXPsL+eJ/eXPufBsk/77MpTuSlO6M03tcIfKKy2C2uqJc7m9DoajceqvFy/q8eLG1p4KKN6WWutubCpOzqddcXGya/OZKTaXsB5TP+pRuDnF4MMZOjMBcRijQpa+/4TYKDZKHOQ7bcQ+CyE2lo2RLSWEuOEMvz+P4erM/rBOetym784Uur08kbH8SovOXIA7aKEUaIZGaiyZvbXY9ii1PcZTdZ7aseWq9EmLFdl6iH6utn22kVwVuZ2Y3IMZDFfHHbGwCwaN4x4LzzYp3JIMesx8v35V+nCt1Y95pEbblG5PU365xZmvVLAKBvX/y35iTaPipPDeUZX2bD6ZeVk7d//VN0yOFvs5Sv+yx2lKMdxqcNtiMuvwTfU5zqaShFZxZeww5K6pGRZSKV4bHqBjyazFQgghhBBCCCGEEEII8XadqYCT/22Rn/vRPEHbQEU6J7+3hbBtsuvDpynuqqJpEHYMTFcqsQghhDhH12llrzyAb+EWk8yEz5afKTL9nRqaodF3V5rUmAUx/OD2UVqpCyvOpr9dB71O8dYU+ZtdrKyBXTLZ+rMmJ//74lI1tPyBZFLnxlGPsY8UcPpNGic9pr5dg3PBvtbjvSthv1OY1anthei5FmjQf28GzZL7ukIIIdan1rniAQD996YZuD+JMYsDReusz9wTDRqnfKLm2ic5+uWIme/UWXyuRd9daQYeTJI3K6+0qBxs03d3GitvcPpL5WVJo6lxC7tkYLg6hqOhOzqGq+NkTPSlNg1N01CRojUZ0Dzl0ToTJBNaaKDpgAaDD2UxUjpT367ROHp1qte9MzEVkoSj+aealF9sUbglReHWFIVbXJonfMovt7pXgtXBLhm4gyaRryQxVaxo97Nu8p8jOvoPdHY/5V4QFT/ZWrl4RrXtrvo8Dc9ZcfnzbFtx+X2lU6s+x7BVXXG5q6+eJDpmlldc3me0Vt3Gm/4IAIU7qlTOFHjt+7vZ8v6ppeVevHpcohevnJpgaSuPu9Wj1f8murbyZ8MRb2TVbQTKWHF5K1757w4QrZLstdqxWK0PAP16c8XlBWP1isH9xoVVxd9uyKqtuo2qll5xeeYHK78P5j88R26vi5k22Pkr52OLlVKc/ptF/LJ83gshhBAbmSSnCiHWJSOlEzYivPmQ6uvJDKx2yUBFsOOf9QFQuCXF3I8auO+z0A0NPX3+ZljVdZjPpNizUGHP3CJni3k6V1hBdevJFruOJhd6kQ7GuWuhbSdbcEdy4VV9vc3s48mg3fjHi5gpnciLr3iGuesmhtkfNPAWQgYfzlK8PUXl5TZvZvNXvGmlaUxncsxaebJBByeOJDH1KrCiiLumZog1jZdHhwiN1QcshBBCCCGEEEIIIYQQ4oak4Ng/bac1lwZNYaVDDvzSm6T6PFQMR/9xB4tHSuz+qRP076usdW+FEEJsIn5Rp/Jqm+JtKbZ+ogQkQbidmYCz/1Cl9ac7eq8cQ+WVNpVXkqDjwfdkKRxw2fPpATrzIbql4fQl98KH3qPQzt2D1TSWElOviILmaZ/+e9Lkb3LRDPDmQoJaROVgm7C+MYOII3QipHLIlYiQivNCiLVnpDTGPppMrD/z/TqNYx5WIYmd8RbCpYkc1pugGjHzeJ2F55v03ZVOKozemcZwdSoH2xfEmrUnAtoTqySnaWDldNLbHLI7bAYfzKK9u3tsVmc2uGqJqauJOorF51uUX2qR2+dSuj3F1p8t0ZkNaE8GhK0Yu8/AGTBxSiaakfS58urqCVdCAJA+d07S1iAn5ydXQ2F3HSMVUj5UZOyRKXQ5bRZXKO7AsT+fJ3+Tg91nkNnmYJeS69jYX2VlIYQQQqx7kpwqhFg3+u/P4AyYqFhhFwwoGGz9WZvamx1mvlvHX0hmTKq90SG/36X6WpuwHqFihaYng1JBLcKvRbg7DPYsVADYN19mz3yZ7+3ZjncFCaqzoy67jjaJNagVLTL1EKVrBJaGPeFhF0yyuxzcQQu736A9EXD2hw2C6sabYb36WofObMi2ny9RujONGwZ0zKtXjbNhuaw8F5NYlVKMNersrcyjKXhufFQSU4UQ61aMRsz6n5BgI/RRCCGEEEIIIYQQly+9xaI1l8bOe/TvrVDaV04SUxVMvzjE4pEkWShoXL3xcCGEEOIt8082qbzaJrfPRfmK5hmPoHLpGTNzP2zQmQ3ouzuDO2SiaRqduYDyS21yexzsPhPdhNbZ1asrXazpb9co3JrCSOk4JYP0Fhvd0shstzn1xZUrNK1XsdKJV6l0JFYWq0tP/jhx4gTf/va3eeaZZ3jmmWd47bXXiKKIP/iDP+B3f/d3V1z3qaee4g//8A958sknaTQa7Ny5k0996lN85jOfwXVXr7AlhNiEdBj9iQJmSufU3yziLyYxWhumiAAQ1mNmf9Bg8YUWQ+/JktnuULw1hZXTmfxG7dKSaxUEtZjqwTbVg+1kAoshE8PVIVYoBcQQ+TGd2et/jFQEtdc71F7vkNlmk9/vkt3lYKR1/MUQby6k9noHbyHEW4hQgSQZiovUF6M0hfaajXrAQ0I/ro7hB2aZfHyM2WcGGHnX/Fp3R2wi+ZtTGLaOihQz368TroPK5kJcrI0SB/lOG7HPQoiNRZJThRDrgwZ9dyfVRyMvpn60g1KgmxqLz7eWPXTm8TphK6Lv7gyl29OoSHH6S2WCWkTsJYNSR/54P+PVBrdOz2EoxalSAc+8ssS9Tsrg6E1Z9hxuMLE1xfzw+Zsb4z/3GlbBILfHwcwkM9jVj3RQGy8vdYk3F1J5tUXxtjTvPXuKlwdHKLsumgLPMKTq6RrRlGK42WB7rULB95jMZXljsB/PlK90IYQQQgghhBBCCCGEWMlb1XSGbl1g5O5ZqifzHH1+mPpEhqBpLz3O7eusVReFEEJscmE9pvyO+9+Xo37Yo37YQzPB7jPxziWYNI5dmwpoKoLKy+erlzkDJtt+oUTtDfnOFJfmC1/4Al/4whcueb2/+qu/4td+7deIoojx8XG2bt3KwYMH+f3f/30ee+wxHn/8cdLp9DXosRBiPSvdkcYdNDnzd5WlxNSNKmzETH2jxu5PD6AZGpntDlbOuKKiCHGgVq+2ukaap32ap6VUnrhKUgp1n4f+jItyFNwlr62rYeCOMpOPj9KaknMscXWU7k7Tf18aFcL8Mw3KL0iFbCGEEGKzkEwWIcS6oL1tQtIzX6kQVFYeWFt4pkVuj4uVNwjbMf5iuDwRVNOYKOZoWyZmHDOby1yVftbzycdmsRwsS04FCKrRBYm0G93cE00aJ322/HSRO+aml9oPl/o5VSitYc9uPGYUsaVeY1u9ghtFLLgpnh0ZZz4vM8AKIda/SGlEav1ParAR+iiEEEIIIYQQQojLk95qoZ2bdPHNvxngxDeHsbLLJ7Xs21Zh+32T9O+oLmvPWr0TffpS3e8LTLXzXdu3pHpXl0sZ3YOG257dtR2gU3O6thtu7/ssx+f7u2+r2f15lNd78s/JcKBruxb1HmdRbvdqCG/ODXZtv3Vkque2Kp1U13bL6L3/jU73YxaG3ffTNC89GFytUPDB6vG3iePex8z3e9zW71FIaKX5RVtR9/2vhL2DTSO/e2XBZo/j33F7v2Yrle737JxU76D5g/po1/ZeBft0vXeFpftHT3dtL1q97/F5Vvdqys2g+7EEiKLux6xYaHZt76R6V2xuzXU/Znqqd7Urx+l+PPcPznRtf3VyrOe2lN/9veGHvStOalb3N4Gmdf/bxCtsq5disfuxBKhUux8ztcJnU6PHZ23Q4/230uusEXTfVvSPe3quc3Nqsmt79kfdP7P1dxzLt7+Dy53u7+f7Ssd7Pr+ldf9seuPJYew3DPRFDX9/RFxSaC1wnzUJDkWUX964wcQROhFSOfVKRL2+iFYwMDDAxz72Me6//37uu+8+/vzP/5wvfelLK65z8uRJPv3pTxNFEX/0R3/Eb//2b6NpGqdOneIjH/kIzz77LJ/97Gf5kz/5k8vdFSHEBqQZULo9RfW1ztIkDRudisFbCHGHLFpn/StKTBXihuKD9rqNQqFFPS+VxeXQwa/2vsZ/S9jQCeds7FFPMhNET4UDLpqmMfujGrXD12ZiJSGutY0SB/lOG7HPQoiNRU4BhRDrwsC7khuEE/9YXTUx9S2Vg20GH8piZQ0G3pVh7okLb0AuZrrfFL9YmlKMn26Rq4U47YhSObmROzty4yQEticCYlh2W67m3Dj7v9Yyvs+2eoWxRh0UTGWznM4XadhvBTzIcJoQQgghhBBCCCGEEEKsJvIUnfmAsBaj2xphI0aFCrto4pdD5n/c5IPffn2tuymEEEKsK+7TJtZhHXSwjxooTaGdC2iceb4utyrFJfvd3/3dZb9/8YtfXHWdz3/+83iex4c//GE+85nPLLVv376dv/zLv+Thhx/mT//0T/m93/s9hoeHr3qfhRDrkztsYaR0qm9s3IkSummc8AmbMTPfq691V4TYOBYNtLpO/FMtGJWk7qspt61O/WSeQ3++j4E7FohvDdDflnngT9vUnywQTDuABiisj9Qwt6/Pqs1ibVUPthl4V5bhR/M0Ts0Rd9a6R0IIIYS4WiQ5VQixLpi5ZMbdhX9+E7Op3IqPfWsS2LMq5p6Fs+RDD+3uPk5/6I6lx9jV1e+Cbf/9py5os4oGTsmgNRlgFQyG3pvFHrBQmoauFBOlDCeG8lRDB+YvYQfXsdO//9Cqj9m6cBw3ijibzfPa4FDXx+gXOa6jrTBb+KU8Ju49GfUyfmH1jRne6jPCxNbF3VmN0qs/n9ZjhvElSnHH/+sFirenyWyzCVsxlYNtqofaRJ1ZBoHu88cLIcT6FCudWK3/2cc3Qh+FEEIIIYQQQghxebzZkDN/WwEgvcVi5IN54lAx/e0a9aMyU78QQgjxTlFbx3pTx7snwt8fYU7qaC1QLihLUfuPGzuSOEYqh1ypi7itf8WUUnzlK18B4NOf/vQFyx966CH279/PG2+8wVe/+lV+67d+6zr0SgixHsRhEsej2zqweZLRyi+21roLQmw89XPndAOb57Ngvdj5iTOc/e4Ii6+VmH5yBJ5U6KkYFMSeDupcQuqQT+zrRBWL4PEcUX+Y5Ko6Cn0owDjQWZbUKm5M5Zfa9N2TRrd0tnyshGYkseNRJ8abD/EWQoJaROOYh9ocRdHFJrRR4iDfaSP2WQixscipnhBiXZj9QYPsjv8/e/8dJEmeHXaeX9ceWqQWVVm6uqq7q7WeFjM9AgMxA4JQA4LAYcBboxnM7rC3ILhra3eAHbEH3sB4BI23BhCzOMOSnLshIYaYAQajdeueViW6tMpKnZGhhev7I6oqO6siIrNkZla9j1lbdbqHu//Cw0P47/fe71nsqi4ybydBWUOyoKLybm6UpxfPUtXNaz6mnlRRLQUjqWFkNGIjBsntXTIeo3aH5kixzmw2TjmxxszIzSCKmGgUGXJqNFWdqmFxLp4jUpZ/iL42Os7zk+do6fK1cSupYchYucq2pTKpn87SWvCY/U6F2kmH6HaM7AkhhBBCCCGEEEIIIcQdLj5uMPbTWZrTLtNfqxC6UvJNCCGE6CRqqSiRQtAfgg7+1jtrwDJEJUSCM2/E7Th/58+fZ2ZmBoBnnnmm42OeeeYZjh49ymuvvSbJqULcau0cpOV/15Ez7+M3QrL32czOSIU+Ie5qnkKkRmCsd0PuTOMfmWX0hVlKx9PMvTOIX9ZRFND7Xcxxh/i+OnrWp/F+nMr38uAohNPLL0Z42sJ/NYG2r4X5bH0dn4nYCE79eYHxf5TFHtSJAgiaIZqlkJgwSW5rx2U39rpMfbm8zi0VQgghxLWQLCMhxIYQNEKOp/rZU11ke63I+USGsUaFLY0S7+VGqBp2x+1cTed7Q7suJ4+ulRJFbP/VvlUf15z1mL8vz2w2TiVmcv/5Re69sMRsNr6mBNrNYLhVZVe9QEm30YjYVi+S9F2KRgwrDGjoBvFWe9b4lCuzx990UUTKcRmt1NhSqmAEIXOpBKW/XKAlnedCCCGEEEIIIYQQQghx02QfiDHwVJLQj7jwlfLNDaYOQ/oOBhgNmH1CQ3JdhBBCbHaR3x4Pj7R1boi4q504cQIAy7IYHR3t+JgdO3aseKwQ4tZQVBj/2SxGWkOzVYrvNFh89fYnGekJlb4nEyS2mGi2Smqnzew3q7e9HUKI9eeF7R+qWqCiqct/f5C/SqU4RVm9c0jXeldkXWwkeq6fS6RXPUZe7/15uk1fXHUfptK7nZN+dtV9dKOqkL+nwvC+pe4PemAJHriwYlHow9KJLFMvj+C9HyNGk9SLlZ7HymjNVdvTCHsXszGU1ctuDhulnutnvewNtyOltXquP14fWvUYJS/Wc/275bFV97Eafw03fWHUO1664nSO8b5k8a+Wn+tkxwOEPPmfpoiPmSy9JVXEhRBCiM1GklOFEBvG+WQOLQrZWSuws1a4vNwIL87AGkWYYUDGbVGw4isqe64lUXRrrUjScwGwwpU3n0tvN/AqAX41wKsEeLUQLh72+E/uvvy4hXSc4XKTkWKDmXzvToXNYtFKUG1aJAKXt1NjWDGfA+UZBpwanqphhe1Oi9l4goMDq98Mi9XpQcBQtUF/vUF/vYkVBHiqyoVsirO5DE3TYPfM2fVuphBC3DQhyqqdlBtByMZvoxBCCCGEEEIIIa6daihk7rNJ7W4HSbVmvZuWmJo/6JE5E6K5cCme0Y9B8WHJ5BFCCLG5aamASI2wDmo4jwaE6Tur2ngQqQSrJCuI3i6dv0plZYKBZVlYlnVTjlEsFgHIZrMoXeJCcrnciscKIW6+zH02gx9KrVhWO7s+E9wPPJPEHjYoHWzilgO8cu9kLCHEnU9ZVMG+s36r3ilUHfr3lcjvLXH4f7+HpfdzJD5cQpWf4eJKqsrc96ps+5U8Yz+VYervyjSnpLiL2Hg2SxzklSQuUghxq0lyqhBiQzmTzONoOvvL85eXPbw0ddXjDmaHmbdTVy3vJu677KkUOq5zywGF11afyW+sUOP+yfY+Hj67wHcSFk1r83+M+qrGW9kxnl88zb2VOd7JjvLj3DgtVcfRDNQoJIyF+JoE0twMI6X2daSHIRXbYjKbYjERpxSzCVX58S+EEEIIIYQQQgghhBA3W+7hOPmH4rgln+asR/Gd65h93we1AFpBRSspKFUFraiiOiGBDm4Kyjs0Bt4NiC1GSGqEEEKIzU61Q5rP+div6iS+pOI8EuDeJwlA4mpbtmxZ8ffv/d7v8fu///s3Zd+tVrvalGl2r0p1KRG22Vy9ypYQ4vpcmQA6880KrdnVq9LdEipEYYQWV4knVYK8jrOwTm0RQqw7ZUlBO63jPeWud1NED6oKffcVmH5pFGcyRmxCfreJq/nVkPkfVBl6Pk183JDkVCGEEGIT2fxZVUKIO4uiMB3PrEhO/aCGZnAukWPeSq5pd2oYsqVeZne1nVQaoHA2laOmm2T/7AiRD3693YGqJ1X0hIqz6BN1GFOrxFcOdqSbzh2RnAqQ8doDOonA5ZnCWUJgKpbheHKAUFHxNUmavBlijscD5xeYTyY4MtSPY9wZ148QQqwmQtkUs29Fm6CNQgghhBBCCCGEuHZaTKE15zH5pRK/efxM18dNun0r/q6eibPww0FSFQMiUD7QdxAREelQ2qWw+KDGpZIPA+8EqF5E7CUV3Y2YHbcoDi5XDltq7ut6/Hysc9Js3O5ekUjTwo7LXad7/7Pvdy5PETmdJ6lU7O6JSLrReZ1XvvZqaa7buc2H54a7bjOR75wG7IXdJ9zsNrO9rnd+LlGPmfBVtfP5183OywE+uu1Yx+Vn630dlwMcnR7quNwPOj9Pz+v+/P/q9IMdlzdqPV6zoPM5UIzOzzPq/vQJ3c5ta9aNHht1Xqx0a1e2e1DyOwujHZePpKpdt9mbmuu4fF92tus2ZcfuuFzvcs2YXa4/gFayc0KWonavDJRLdA70HY2VOy4/Zfd33VcYdP7M2D3SeTwXoNiKdVy+sJTuvEGP5+J3uWbqzR7XbJfd6bHuiSuNVufzHIt1vp76k90nP+6zO687X8l13ebB7IXO2zTzHZe7PT7nPjr0fsfltaDzdQkw63Z+baZ+uYSiQf7RBHniVP5tk/KRVtf9bCbhJhm72Mgunb/JyUnS6eVr6GZVTQWw7fZ167rdP9sdp/1bKRbr/NkjhLg+9qDOlp9b+d0VOCGqrmAP6NROrU/l1MVX6vQ/kSA2bGD1te8hlt6s9/wNKoS4gzXbv0e0ExpRKiQaDZGfeBtTdluV6ZegNW1Lcqroysy1v9vr5yThXGxMmyUO8koSFymEuNUkK0YIsaHknQa7K4uX/z6TyFEzLCqGRVNvDwgq3ccmL1OiiL3lBUaaVdSovUHZsHizf5xIaf/AiheWB3kVDSZ+KY9qtNcFzRC/ERI0Q2JnF3B1DcsL8FUFV1d5e9sApWT3wbvNpmjGeCcz0v7xqcA9lXm2NMsMt6ocTQ0ynVhbMrDozvAD9s8s4Wsq744OEqqdB/KFEEIIIYQQQgghhBBC3FxBPUQbW71PtnY2zvwPBwmaGlGgEPntPnM/D2E6IsiE+LkIvx+4OESw5KxMvghNMGswXGsHavfPu0xu9zi7V/rZhRBCbE5RAIXX6iQmTPKPJe6Y5NQgUgkiGbO9EZfOXzqdXpGcejPlcu3EuFKpRBRFKMrVAbXFYnHFY4UQ1061FBJbTbS4imapBK12zNSVNKv9vs8eiKFoCkEzRLUVSgeb+NXbkx3qlQNmvlFh/GezABTfaUhiqhB3sWg0JNjto53QMb+hEez28T8kSW0bkapf/LBeQ/yvuHuldtuEXrh+FdqFEEIIcV0kOVUIsWE8XLhA3m1S002OpfupGDZl8/pmttTDkPFGBYA3+8Z4tDDF+WT2cmLqlaIAykea5B6IA6DFVLRYu0O15fhk6w6urnFmMM3pwTS+3n0m2s0oVFQKH6hG+2Z+C+ONEinf4f7KLP1BkpO5PE3d6HoOxUqW5zNaqpNtOMQdj3TTJVLg3S0DkpgqhLjrhJHStSLFRrIZ2iiEEEIIIYQQQohr5zdC9HjvftnqfIypr4yBAnrCR7EiYmNNBp5b4I3GtjUf69xP6GROh5zOpHFiKk99Z4mRSUeSU4UQQmxqqqlg5XVKh6XCkbi9du/eDbSro05PTzM2NnbVY06fPr3isULcrbSYQtCKrinpxx7SyeyPkdxpoeoKgRMSuhGarV6e4L8Tvx6S2GZipNrxU80pD79665PBUrstEltNnIJPbNhg7vtVKsfujEkThBDXRykoqKc0woEApaISmZL5uGGp7dcmCpe/X0IfakdS+BWDsKUBEc1Ui9hQi9T2KleGWYYhtBYs6nWb2HgTVbIg7jiXfockJgzq57z1bo4QV9kscZBX2oxtFkJsLvKzTAixYbQ0A2gS9136W3UmaiXezY9QNa69QqmnabzWP85jixfob9Wp6QYTtRILVqJrYuDiK3UWX6kTGzNIbrew+nRiIwaFlM3x0btrhk1X1Tmd7IcoYsipsbc2z0i9RgjMJpJULYuaYbIYi8PdmKwaRSRdj4ahr7ie1DBkoFRnfKnKQLVJpEApblO1TSb7Usyl4ziGjiKTswkhhBBCCCGEEEIIIcRt49dDFE1Bs6/uzw5DKJ1Pc+xrOwDY/k/PYGaumJm/sfZjhbZKcb8KU3Dg9QpqCPXUBprwMgzJVF2qSYNQv4aJFMOQqyIChRBC3DVCL8JvtBOW7hQBKgHy3XYjbsf527p1K8PDw8zOzvLSSy/xi7/4i1c95qWXXgLgiSeeuOXtEWKjGv3pDJktCWpnHOa+W0U1FBRdQdFB1dv//8F/rQGd+JiBmdPxKgFLP65TOdoiaC5/zuspFSunY+Y1EtssYsPG5XXFd5uUDzXJPRij74kERlbDKGl45WBlw5SL/91gZVPVbLe574kERlIjtRvcok/1WOuG9y2E2Ny0IwZRKsL7pAMbqPtFXM1MeUCEO28B4Fd0pv+/40T+yt+UddIAKGpIaluV5EQNp2hRPZvCLZtwOcEqIn1/mcEXFm7jsxC32tSXS0x8Js/IJzKc/+sibiFYfSMhhBBCrDtJThVCbBj1f3uKU7ZCeq9NYouLPW7y2Ox53KIPESiqAir41YDSoSaNye6z4pz8fz3JEhbHyXPP4hK+oqBHEfdVZnlrbJjtxRJjn8qw8FJt+eZFBcL2bH6tOY/hj7ZvcjN/eYE9h0/ehjOwPrb+31++eqHCipkUz1sK9oDe7ujd5TOUUtFMldoZh5mvtyvUnvy3T67pePbC6smsyhrGNENjbQOfa5kNzV/DvtS8c/n/hxaaPHRyCYDFrEWgKRTTJhPTdWJOQHPOY/FYi+pJ5/IArQ1MrKnFQgghhBBCCCGEEEIIIW4mv9GOVtYSK4Pdjn9zG3OH+4lCFYjIPVi8OjH1OuTf89l5tARAKW9w+OHUDe/zZth2rsquc1XUi8WU5vpt3tufaSedhiET8xVKcZNycuWkoQ8cLzC62CBU4dV7BymnrKv2nSk7lFOGJLAKIcSdKoLGBZfMfpvmlEvjwuavYLNZq51sJLfj/CmKwj/6R/+IP/mTP+HP//zPr0pOffnllzl69CiGYfCpT33qlrdHiI3KrwZUT7ZI7bJJbr/69/qV3JJPc9pj4eVa1/grvxriV13q56F0sMn4P8pi9xv49YDyoXYl7eJ7TYyURv/jCQaeSrL4ep3iWw0SW00SO0yS2y0UVaF8uMnSjxuE3rVPcpDabTH0QgpFU3DLAef/qkjghPj1UBJThRAoCyrhWCCJqZuAqoIe83FmbSqHUpReyhP5CrlnFonvqqHG2p/rdi2kcjrF0qEcldNpKqczAChaiN3XIrWtRmhA+WCWysEs9VNJco8WyD5QWednKK5bGDI61aL/mQTNaY/Sew3yDyfofzLJ9N+X17t1QgghhFgDSU4VQmwoYSui9G6T0rtN9IRKcoeFmdcggiiEKIywhwzGfipLa87DrbQTS420Ru2UQ+m95or9ncllaek6W8oV+potBhsNdi4VGag1iI+ajHw8w+TfFFEU2PF/6Aegft7F6tNQTZWpvytt6oE1PaUSNEOiNcbSmDmN/CNxkjst/GrI0lsNKkdbhE5E44JH44JH8e0mmq0w8EyS1G4bM6/hLt1dsxPVEstfn/2ldtLqUKEFwLn/soRbvLvOhxBCrCaMVMJo4wcmboY2CiGEEEIIIYQQ4toF9XbEsp5YjlScPdTH7MFBjJjH6APTDB+Yp2Qlb/hYfe/6ZI+FuJbCu49naCU2xnCs6ofsPlslUBXOj8UYKDgMLbZ48UctqgmDVN1DC9tJq3VLZyEdQ4kiTD9kuNwgVEAJ4clD87x63yDlhIEeQtzz2HGuxuh8kwh4f1eaC2M3fh6FEEJsPIsv17CHcuQejNO4IAHC4vb5F//iX/Dnf/7nfOMb3+CP/uiP+J3f+R0UReHcuXN89rOfBeCf/bN/xvDw8Dq3VIj1M//9Grpi4FVCVEuhfsYhDCDyIyI/Irz8b3sZ15gjGgVw4W/LxEbayamXhTD/wxpL7zTY/k/66H88QXKbiT1o4JZ8SgebKApkD8RJ7bFZfLVG9bjT/UAd9D2eoH7epfB6XeJxhBArhaBWVIL7N298591m64enOP31rRS/NwBA5skC6YdWJpXGBhxiAw5DTyziVnWa8zZm2iM2sPz90QhNco+WmP/eAJXDGRZ/METxzT62/JNz6LbMXLCphCFPvVwg1grh/ji5+9uLoyiicd5d37YJ0cFmiYO80mZssxBic9kYo6FCCHEFRYXEhEl8q4lqKJQONamdXL65TN9jM/B0AnvIuLxMs9WrklNRFGbSKWqWyYfOXQBgd6F4ebWZ0Zj4xRz1c8s3MVEYUTvtUjrUxCtv3k7N1B6LoedT+M2QytEWUQh+JaB6snMnr2op5B6Mk9rVnhE99CKGXkgRGzHa51UFe0iHEFJ7bWIXz71mq8AmOk9RhBpFhDcwe3s9bvCjRwbZOl3HcgPSNY+Y0z4Hfl06N4QQQgghhBBCCCGEEGIj8ZshURShJ1T+26uPEz8L1nR73eQnDM7Fx6E2DrXO2/cK3Dg5M3j5/8dmamRPlmhaGj98bLA92NFY+fh6bbkqabLukqm6TA23kzkr9sqKpZfErO6BWPcMzHVcfnh2ZMXf6sWSQoU+k6Pb8xzdDuPTNXafr5CpejimytnhOMm6x2DBIblQBdox66EGUw9YBKbCtldbPHNw/qrjOZqKHkbsPl3lrNkPZo9od6XzutDvfJ5djI7LAZp+53Vu0L1kiud1Xuf7nZfH492D5w3t2sdH0nqr4/I+q951mzDsfG6isHPFuijoXsnOcTqHCIRu93OmGJ3HPtQuy/uzXd5MgK523qZYj3U/fpen0+21dIud30sAZTXRcbmpd38tz2n5jsvVLtcywGiyc+Je3etcyczSu880uyVV6ri8FXR/b5wu9HVc/sOpnZ335Xbfl9LlNev2WgJsTy91Xdfx+Mnux+9WmbFXxcZsstlxueN1D5HxunxuJO3OnwEZs/MxAEy18/XUH+/+Ph+zih2Xn6wPdFye0Lt/Nwzo1Y7LDaX7dZ7UOn82HWO5+reR0TCSKtXjnR+72YSoBEhw5o0Ir+P8vfTSS3z605++/Het1v7O+MM//EP++I//+PLyt99+my1btgCwfft2Pv/5z/Mbv/Eb/O7v/i7/7t/9OwYHBzl06BCe5/HII4/wR3/0Rzf2ZIS4QxRe7/5dc6Mir3uSiF8NOf2fCmTvi2FmNKZ/XF4Ri1U+0qL/qQTDH0mTvsdl9psVgubqGbLJHSZGSmPmmxVJTBVCXOXC8w12fjZO7X8NKLxRJ+rwMVH5h96TV0RrqARfa/WuSG0bvSuHvLUwvuoxTlidf/df8smh1UvDLnq9JwtLaqtPDpDRGz3Xe9Hq7Sj6ne+7AdgGzc84GC8bhPmQ2XvizNbiKx5yb3J6+Y84aNt8AhRqwfK9/snmxf64x4FHa/CGSXTI5MxfbSN6qoX3VowgDbUHAbNzU4bt3pVWF53VJ1+ba6Z6rs9Zvc9nr/v6S+I97v3W6uRS/w3vw+rRbwJg9ujXANjy84c6Lk/vt4g9l6ZyokXh9TrxcYPQhcaMR9iQWFwhhBBis5DkVCHEhpPabTHwTPJi0mM7SXLg6SSN8y7pfTbJbRb2sI6iKERhhKK2OwjMjIZmKxgZjYemZ6mbBnOJBFXLxNGWb4qbusZiPM7ITInSwSZGViM2atBa8Kidcii+030gcbMYfD5JZl+MxpRL6EVk9tmopkoURR2TU/seT5B/eOVNvtXX/opI77VJ772YsOpHKAoo2nKnzPinstTPOxQaTYoxu3uEwAaxZ67IroUSvqrwzpZB5tM9OkN6qCUMjuzOXv57eL7Bg0eL5B+Ns/jyrevsF0KIzSiMlJ6BQhvFZmijEEIIIYQQQgghrkMIoRsx9HwKXobwYtxX+TEI4703vRb3nCkTqAo/engI1N79DMm6y7Nvt5M8KwmTaqodKaf6IX2LDoPzDrmiSyOuc/ohG+cGK7DqfjuYy3KWg7oujCa5MLocaKd+INHMbvn4qoKvKwz3LycaHvtonPxZD92JCDWoVOIsJmIsJmJ85OQkaniNJZiEEEJsDgoMPp+iteCz9HbvAGshevE8j0KhcNXyRqNBo7F8bQXByuD3X/u1X2PXrl384R/+IS+//DJHjhxhx44dfOYzn+Ff/st/id1lkg8hxO0T1EMKr3WOl/HrIbPfqlI+0mL4o2m2/OMcM1+v4Cz0TmRJ7rBozXs4870fJ4S4O4VuRO20Q+7BOJn9NtVTDvM/rIHks21sOnjP3cRqtyrwhEvUUFFPGyhfTWABzELsRETpxQivd46yuM30jEr23hj2oNEumAPUzjj41ZDK+9dWYV2I222zxEFeaTO2WQixuUhyqhBiQ1FtheEX0yuXGQp+IyRzb4z+J9qJhAuv1KiddvBrIYqukNlnk9hmYuZ1xj+VJazX8RsqO5dKALR0jaWYTdJ1AYVDw4O0Pnf6Nj+7m0/R25VLoxCCi7ME6UmVzL727NJTX1melXnoIyniYwZaXL38WAA9pZJ7KEbpcBO3GBAbMUjtvHq2r9oZh7nvVYmCiNROi8SERWKbiaIqJLZaPDk5TdG2ON2XYz4R37BJqpP5FLsWSuhhxKPn5jifS3FkpG9lJdUowvIDIkXB1dTOzyWKSDR9AlXBMTV2n6vQsDTKh++MmYKFEEIIIYQQQgghhBDiTuIs+NgjBoquEFpQeg7coZt7DDWKiFAYXWgwNRwD9epqYoOLDXZM1Ug0l4Pwdk1WGCi2UC/mdSq0K5b6mkKm7PHQ9zxCFSIF5rZanN8fR2+FTBxtYkyAMwHdCpclKy5bLjQYnm33XZ+bWNuEjS278zCym1KZvX95DOHCseXKC3oQokcRLxw/x3sTAxRS3SthCiGE2ERUGPlYGjOnceFLlXXzTwABAABJREFUpTsm2D+M1J7V0cXqruf8vfDCC0TR9U1m8fTTT/OVr3zlurYVQmwMzWmP839dZOTjacY/nWXxlRrlI632DVAHekLDr98hXzxCiFti5hsVzJxGcodF/uE4oRux+Gq96+eKuIM93yKqKbCo4Q5FEIE1qxI7IcmpG4VqwvBH08S3mJeLEwXNkNLhFvXTN14hVgghhBDrR5JThRAbSuRGOAUf1VAovFGnfs7FHjaw8hqZ/ctBDANPJQkaIdUTDpEXUXqvSem9Jqnd7YAINQLX0Dia6wMg7vnEPQ8livBUreOxN5P0PpvsvTHMvHa5cmzohjRnvXan7UX2sEFrth3gUj7SIj5mMPELOSonWjTOuzjFgMFnU+1OmVdqRD6UDzWZ+zZkD8TIP5pA1dv7T263SG63aM56LP24zsw3Kugplb5HE6R2WyiqQq7l8MjULAvxGG+Oj2zIBNWmafD1e7dx4MICI+U6W4tVtharnMunsLyAhOuRcpaDgjxVoZCMUWiZLOYsmrZGqu5z4OgSqUZ7ZsaQdtzP4V0ZzPLsqm3Qkyr5R9rT8S++XCf0pDdMCHFnC1EI2XjfCVfaDG0UQgghhBBCCCHE9fEq7ckZa/uhei+3ZJT09HiKXeer3HeyxOBSk7fv61+xfuJClb2nK0A7RnIha9FfchheahEBhT6TQFcoZk0WB0xcWyde9dh7ukKiEmA6EXYjRPVD7n21SrwewpRC9ErE0kdBL0P8GCghPOXNYzvh5YRX11A5tifF4qANtyjW6/BIH/tnC8T9gJFSXZJThRBiE4siaJ6JM/qTGfS4ipHTmPmHCq07qHJdgEIg4wI3RM6fEOJ6BPWQqb8t0f9MksFnU6T32Wi2iqIqNKfasUyqoWD16cRGDLxqsPpOhRB3HdVQyD0Yw0hroEJj0qN0uEnugTi5B9pxeXPfrVJZ53aK20iF6Gea0ADjr5OorkJoRdQeXO+GCYDYuMHYT2VQFIXWosfcd6u4BfmOF5vPZomDvNJmbLMQYnOR5FQhxMagtBP2ohDO/2Xx8mJ7SCd3IEZ83KR2xqF22kGLq8SGDbzy1Tcm1RMO9clFyv/TvewpLLF3cYnXtowylTFv57O5pfqfTJB7ME71lEPpUBO/FqBoCmZOo//JJPaQwbm/XGL4w2m2/GyWxgWX2e9Uac16nPvLIn2PJkjusMgdiF/eZ+VEi+gD44hRCMV3mlRPOaT32CR3WFh97a+M2LDB2E9lmf1WhepJh7nvVll4qUbx/3ofY5UqI9U6A40mw9U6s+nk7T49axKoKm9vGaQUK7NvdgmAiaVqx8caYcRwpcFwpbFieSWh8+Z9fShRRKbqYXgh9bhBbpuJXw9xi/6Kc3pJYqvJ0IspohD0mIpbDCi917zpz1EIIYQQQgghhBBCCCHEMnvYoHrSofZP7Vt2jFMTGU5tSfGxV6YZWHKYmKzi6yqmGzBYaJGpeXi6wvcfHcHX25XGMmWHdMNjMWsT5q6eyLCRMjj6eIrhU022H22Rn/N4/OtlFKCS01DGfZKHoO+bChERKBBpYEYRzZhGoc9keiROPWXcsud9yVQ2zdalKtmWw5Gx/C0/nhBCiFun+FKe6jtZVMPDqwQsvlajMemtvqEQQgixBlEICz+sUT3eov+pJM68j1vyiY2axMZNIi/CWfIpvFmndspZ7+YKITYYPaEy+pMZjJRKa8FH0RQGn7cggtCLUI12As7Qh1NciKINWWBD3EI/iKG4UH0wpHnfejdGXGIPGSiKgt8ImPyr0no3RwghhBA3mSSnCnEdUnsscg/GKR9uErQi3JIvM7jcoMHnk2Tuac+gXTrYoHrSIf9ogsQWE2fJZ/ofytTPdZ7K2x7UGf5omvKRJpWjLfSkhhGGzCST7F4qsmOpxMHhwdv5dG4Z1VbIHoix+Hqd4lsrkyXr50C1VVI7LNxCwPm/KpLYbjL4oSSjP5Fm8m9KhK2IhR/VWPgRmDkNI6OhWQq1M53PrV8NWfpxg6UfN1AtBXtAxx40yD0UR9GWO21CN2IhmWAhEcfRC2wrlnloZo5vx21cfYN+1SgKZwaynM+nGStWSbdcYp5PoCoUEjGKcRslitgzX2SgdnXyaCFn4+kq9ZiOp6tMTNV59L1F1J/IABC0Qqa/VrlcuVZPtaulZu6JUTvr0DjvMvhciqAZ3tanLYQQQgghhBBCCCGEEHcjrxKgxdRbfyBVJVQUNCLuObNcnyMCykmD1+4bINSX21HOWJQzFgAW3ZN+ZrdbmG5EqujjmSoL4ybFYZPt2SW0GsTPgJeHpY8BOhyeHbpVz7CntOPQMHRC9TacayGEEDdd6ClUD6apHUqTfrjEif/uzk1IDSOVMJLvqxsh508IcaNacz4X/lvpA0sa3R4qhBBtCoz9dAZFV5j8Ugm32I7b1WyFxDaL5HaTxES7n8VvSFzeXScEZUYjjCOJqbeR6ockl3z6z3rM7TZo5q6IGQ7bxV4CJ0S15B5CCCGEuBNt0IwhITY2VVew8jqDz6YuL1t6u0Hhtfo6tmpz+2Byb/b+ONn74zhLPjPfKFM73Tlx8pLYuImRblcN7Xss0U6anFsgAoq2xZlc5ha3/vZRFFBUBb/aORnaXfQxHoyjJ1T8ekj9jEs53yL3UPzqxxaDy50zaxE6EY0LHo0LHktvdekMVhTeH+hjIREn32jib4Lgk0BTOd/X/Rp5Y2KYgVqT8UYZywmYHoqTqbqMz9TZfqF2+XG1mM7RXRliv3cae9hg5GPtyrWFN+rERgxiIwaBE7H4Wh0zpzH4XIrKiRbVkzLDoxDizhdGCmG08Wei3AxtFEIIIYQQQgghxPUxsxr18y4PZ+e6PsaLtI7Lgx6JF63g6uHWc5/WWJxJY3ohhhsSaArFvAGqSuQoKFxdIRVA1zv32W9JlwGInoB2umtAkiZJmuTMJjwHzj0qDIfkLm4Ts7qPrWha5+BMQ+t8/K2pYtd9zfQv96/nii20COYHbbB6jD906YOJnC7nP+zeZzM537lCa+h1f80UvfPzV9XOr0uzYXXd11O7jnVcfiB5oes271S3dlz+yvltXbfpxkp2HmOwTL/rNjvzix2XL7USXbeZnMt1XB50ec3K9VjXfXW7/ny/874AxvtKHZfH9M5Jc4eXtnTdF0rn19nxuodOvDs53nF5MtHquo2qdn6e+/rmOy7/cO5o131ltc7jcied7knoZ4udX7NKpfNrY8e7f2ZEXT4DJ0vZrtvkE53bfF9+tuPyAbPadV+N0Oy4vBl0rwhd9zu/b/0en+cLzWTn43udj/NU/nTXfaXUztfG0eZI1226JfntS3U+Z4bS/XO227pa0L16+A8P2CR3mPQ/lUSPq1RPOpz8s+6fJUIIIYQQQqyHxFYTM6dz/m+KK2Ifg1ZE5WiLytEWiqFg9em4Sz58Jrt+jRW339sGSqjQ2LeOiclhyNDbPqmZgCgBSx8FtQlhavVNN6PUgse+12pc6r1Lz/tcuN/CbEbkz3l4MQWzEWJ+vN2HWJ/sHQ8uxEa3WeIgr7QZ2yyE2FwkOVWI61A+2iI2ZpLa2R7UioKIyrHug49idaWDTVRTIf9IHEVVKB1qsvCj2qrbmXkNM9MerK6ecmjNeqTvsVmayPDOyFA7m/MOEjQjWgseyZ0W1RNXBxzUz7uEXkTm3hjVEy3Se21yD8bxb2d1TkVhMRFnMXF1QuympCgspOIUJpaDIi6MJHh/V5Zk3SPe9HENlaWsBYrCznpIa97Dq7Zn4c/eH6M567Hwcg2vHDD4XArVVpj9ToXqcUlMFUIIIYQQQgghhBBCiNtBj6v4tdvUV66rNJM6zdtzNFCB4fWvBnL/8RIRcHa8e5KjEEKIjccv64z9dIb4uEntrMPUV2p4lfX/XrnVAiDgzoonuN3WPhW2EEIIIcTNkbkvRmvew5nvPpFK5EW0ZjtPZiTubMr7JpEeEcbBmAJv7PYePzHrM/aqh3bp8mwpDP2XCAWFxvaIytO3tz23w8SR9uRUM3tMND9i4LTHxNvtuNgIsJrtScKiKGLyb0o4CzIJkhBCCHEnkuRUIa5HCLPfrLDwIwWi9qxL4sYt/bhB5XiLoQ+nyN4Xgyii8GaD0Ol8fo2MxsQvtmfEnv9RlfLhFkTtRFcosouzt6/xt1HQCGncl+XET+7ruD6cX2KXoZB/eDk5VI+pnPjjJzom65rl1QfcekwivHyMNRYO7jLx/ApB90nILwu7T4a8UmL1m9m+/u6zMV/iB1efhCgFddrLU7RvqE/8x4cBeP8Dj1PCiN0XKuy8UKGYMin/6Qx+9c4f0BVCiEs2y4xhm6GNQgghhBBCCCGEuD5eLSS+xSS6OOQQFHXcWYvG4ST+gknmowX03TKh4I0wvJBQAdfSQU6lEEJsaJEP/pKBt2hSezONnlKY+mqZxvm7p4pNGKldK9aKtZHzJ4QQQohbaetrH5j8ygP9dRPtuI73vMPWf5nAX8NvkZRX7rleVVaP/S07sZ7rY3rvRNi6b656jNXiVb4x3zlW9IOCVc6Hpa0eR7krtdBzvaGsPj3JZDPXc31plfNZ9uxVj9Hock63eR5qCJkfts/nhT0W03s7H2+hmex5jCBc/fqy9Ivn1A8Ze9knMReCAnMP6pR2quReByWE/ikXdVbjXDmz6j6vlLZ7F05y/NVTQSy99+sWM1ZP5tbUD8S7hiHZswH50z52NaI+oFJ5oH2+yvcqJOZC/JhCs19h95dc1BCIkMRUcUfYLHGQV9qMbRZCbC6SnCrEDQiakpR6s/nVkKkvl8neH6PviQTpe2IU3qi3E04vnm4jo5HaY5He074JLb/fpHzo7qlcq9kqrtY9w/PEQI5QUdi9UEQFaqbBW2N3XhXZzSLR9HjgeIF0w+P41gynx1Lsqk6td7OEEEIIIYQQQgghhBDirlJ4tc7oT2aY+5MtHdcbAy4y6nNjpodibJ1pEG94VDQNwpBc1aUe03FNGZYWQoiNwF/SKf8ghzdjQaSAEqH3e0x9uYpfl8l1hRBCCCHExqOUFfTvWCg1Be8pl3C71G8Xnc0+q5E+GVLI2Gw52mTorNs1OfVmSU36DL/howTQyitceNYgNNuJmmceiJGddRmYcmkm74yJXVKTPuNvthNOI6A+oHLuafNyQkpoq1Qnlp9ro18hOR9RfLexLu0VQgghxO0ho4BCiHWjp1Tsfp3mvE9wxUBX6WCT6skWuYfj9D+VILXLonykRXqvTWzEIHBCaqccykdaOIt312w6WkxlqFpn/8wiTVOnaeg0DIOqbRIpCigKpwZynO7LYfk+rqYRqnfGje2GEkVYzZBExaeZ1Ggm9avWb5mrs+9sCcfUeOW+QcqpNZSEFUIIIYQQQgghhBBCCHHT1c+7TP5tiS2fzgKgxgLsXQ3MUQdrWxNFAy/qPjGkWN30YJytMw0OHC0ym42zY6aCEbRTfkPA11RqMZ2ZXILzQ0kZuxBCiNus+kqG+tsptKxP+tkier+H0eehGBHv/6vVqxPdaYJIXbW6lOhNzp8QQgghbqkI1HMa+ksmUSzC+5kWUVamFhPdtYZVWsMqiw2LRNmnb8ojNe9RHTRuyfEG3vbInQyIVJh5TKe6bWUM6cDZFjsONQGo9N8ZKRuj77ooEcwcMFjaqcHl/r3Okx2ZtYhQg8JrkpwqhBBC3MnujF86QohNRTUV8o/Fyd4XQ1EU/HrAmS8sXXVvEjQjFl+qUz3hMPR8iqEXUrTmPWa+WaF+1iG6SyfAKrxeR/nZYfoaTWIlHz1qd7i0dI33RgdYTMYBiBSFlnFrbqrvZkoQMTjlMHa6SazZvmgjYG7c4tR9CQAGl5rsP1Mk7gScH0rw/rYsgXZrBuYUHSIfFA3i4yaxUQNFV4iCiCgELv576W+n4NOc9pASAEKI2ymMFMJo41fw3gxtFEIIIYQQQgghxPVrzXgoekji4SrJRyvr3Zw7TjljUciY5MsumVqZUIFzg0mIIlJNj7jjk6u55Gsu+yaLTPfFeXd73weC2IQQQtxsXlOjeDrD0okc9TNprO0N0s8V0RJSJVUIIYQQQmxcsVED4+8t1AWNYKuP/6wL5nq3SmwmpSGd/imPXW81ePsnMrfkGNkzAaEOJ3/GBP2K/q0wZNthl1CFwojJ7MTmL2wyeMhFc6CRV1javbbYZFNyUsUdZrPEQV5pM7ZZCLG5SHKqEOK20hIqO/5p34plrfnelU+deZ/zf1XEyGh4pY2TkaonVVRLQbPUdrLfbVI96XB6bJCBeoPBaoOk49EyNPQw4vHzs8ykEry9Zei2teduoQYRgxdajJ9uYbZCCsMmZ/Zb1FMaB16p0D/rcmZ/gt3ny+y+UGE+Z/P2nr5bWi118PkkmX0xvFqAZqmohoJXCQicEEVTUFSW/1UVFF1BNdoJ4dVTDtUTDs7C9VceNjIasWEd1Vw9cKg5411V5ViLKQTNm5wlq9Az8VbRIbndwszrKArtxN3wYiLvxX/r590N9VkjhBBCCCGEEEIIIYS4ecwtLZxJW5JTb5E3HxjAbvnEiz7z2djViadhyPhCgz1TZcYKDQZLLV7aP0QjJhGmQghxs7h1ncKJHEsns1QuJCGC1Gid9HNFYvfWUCQeEYAIhRA5GTcikvMnhBBCiJvMHtTpezxBfNwkjALcj7eIRkPkZ4dYK3s25MFXy5hORAQ0MtotO5ZvgdHk6sRUQPVBjWBh1OT0Q4lb1obbJX3eZ+CYj2/A1GNrjIkNPzApkgZISKYQQghxx5LkVCHELRPfYmDmdUrvNi8vC92IxpSLkdIIWiHlYy0qh1ur7yxiQyWLJbebjHxieTalhZdrlA83b1s11xdOTmIFARXLpGXoDFYbuHr7JtoINs552kx0J8RwI3xdwWyFxOoBdi3EbIZoQURyycdwIxZGTS7sjNFMtr9CzWaA5bRvop/6xhIRcHxLmpPjaW7lyK6iQWZfDGfJp37WJXBC6udWT6q0BnVSuyxSu2xyB+J4tQBnwccp+DiL7X/9aveZkhUdkjstMvfEiI0YRFFEtFp+q9ruH2xMediDOn49RIup6HGVwAnbxy74uIs+biVEUcEtBQTNEHtQJwrALfjtBNIP0GwFPa3hLPhkD8TIPxhHtRW8Skj9jEP19MXk2wjMnEZmv01qj41qKvjVkCiMUFSl3T61ncSr2SqZfT6Tf1NCiynoKY3WjHfVsYUQ12azzBi2GdoohBBCCCGEEEKIG5MZrbHwaj+ZqIFqrJzpLqt1nsp/WC913V9er3dc/qY10XH5TCPddV+VVufArrrfPXGzVB7ouLwv0b0sgeN3HiI2tM79y+/Nj3TdVyzuXL0wDsW4iUFAp6izGTvOzJY42yYr7D1b4flDM7zywCD1TOd2jfWXuh5/V3qx4/JDS8Ndt3H9zkGJTafzeTb07v3uMa3z5KU7zfmu2xRjnQMS34mPdd3GDzofJ2G5HZcvVroHPTa6XE9+2H0iyqhLv5kZ79yuuN3hurioVOrcttDpHiw6q6c6LndaXd4bPSaxDAud32fFHsfXrM7XgKp2HzxImJ3PTcWzOy6vhp2XA4wZxY7Lc10+fwCGUrWOy881O5+zVqP750wUdL42wi7Lofu12c2Y1fk5Aix6nV9/Q+keDFvtcp67Xf8AqtL5wvnZ8fc6Lo+r3Z/jPdZMx+WfSBzruk23q+ms37nCzwln5edc0FIpn0xTPpHmzXPjELXH5mpnatTPOh+YMLb7tXa3CSKVIJLq3TdCzp8QQgghbhazT6PvsQTJbRZOwWf6a2X6vmhIUqq4JsnTAQNvtJOZ57cYnN8fI1xD4Y3rpXkQdLnNzB1v9yU0k3fAb+YwJDnXfj6TT5p4a31OqsrSbo38iYD8w3GW3pAyqmLz2yxxkFfajG0WQmwukpwqhLh+KitGyVRTIfQjVF1h+KMpElvbA4Klg03MjEZ8i0lmv42Z1fHrAVpMZejZFK1pD7e4eRIq9ZRK/9NJmrMexXcaJLdb9D+VIPdQnPnvVamfu7bB1msVHzewgoCFRIw3JtoBIcmWy/alEo6uc6o/e0uPfydKFn32vVxF7RGsUBgyObfnYlJqFJFdcBk/1SRTXJmZ+YMHh6nHjZvTMAX0uEpiu4Vb9HELPoEbYSRV8g+3gzcKr9epn137NefM+zjzPouv1ImPGcTGTaw+ncz+GHq83WkQOCFuwcdZCgjdiCiM0CwVM69hD7QrpdYnXWa+WaF+zllTcmrfowmsAZ3K0RZGVqN+zsVZ9DAyGlafTmKLSfa+GMrFhN7Qi4j8CC2mXv67Oeuhx9V2ddhWSGq3jaovf+6UDzdpLfpY/TqpPTa5B+OEXvtFVQ0FvxFSPtyi/H6zawKumdMY/9ks2/5pHtVQUBSF5qzH1N+VVn+eQgghhBBCCCGEEEKIDS+xtc78S4M0puMkJ7ondolb7+yWNJWkyeOHFnn08CLff7p7QqkQQoirBa5C9UyK8rEMtfNJoggS43Xmf1CjdsYhdHoMfgohhBBCCLEBKDr0P5kke18Mt+Qz860KtZPtCY/6lJsUgyfuGrlDIQrw1kfT+PatTQq1iz6qB7XRDlVTWyF9RwM8Q2Fm5xqrjG5Ufsi9X22gBRCq0Mhf23ldeNAgdyIgNiLvZyGEEOJOJsmpQohrploKYz+dwczpuEs+WkzFSLVnEw5aIUErxMwuf7xM/FIO8+Js1/VzDvPfr+HXA7b9Sh8AW34+R2umnaAaRRFuwad6ag0Jb7eRokP6nhipnRaxEQO/HjD7rQp+LaR+1mXpx3X6n0oy8hNp5n9Qo/L+GqrBXmc7Rj6eZiluc3Ck//Lymm1ycHTwlhzzTqaGEflKi23TDZy4yvyExcSRdqXfUIHisEGgK/RfcOmbc8nPuXiW0q7E6UZUsjqn98XJLXhkFz2OPZSkHrv+m2jNVkjfYxMfN9FTGmam+yzdgRMy993qNSWmrhBB44JH48LyzN1aTMHq17H6dKx+ndiogaq3K4uGboRb9Fl6u0H1pNOzuupVwnYS7WoUHfSkBhH0PRpHT2osfq1MFEF81CC+xYSonSBu5jSKbzVoTHvExwz8Rrjifbfwoxr2kIE92P7s8UoB9Qtu92mnL3KLAZN/UyK1x8KvhPj1gJFPZNj6C3kWXqrROH9rk8+FuFNFQLgJprOUMB0hhBBCCCGEEOLOZ/U7WH0tSkcykpy63sKQfadLAEwOd6/0KYQQYiW3pXPhW6OUT6SJfJXYcIPhZ2dJ76pgJALe+Z87V9UWK23WaicbiZw/IYQQQlwvLaYQ32KSezCOkdaY/1GV8uGWBG6IG+InwGiC2QxvenKqXg8ZPOGSXAjQvAi9nUPN/ANXp2KM/8iDCE48kgB1c1dOjZVDtAA8C078hA36tT+f0IDYiEFiwqB+zlt9AyE2sM0SB3kl+XoVQtxqkpwqhLhmIx9Loyc1lt5qYKRUQi8idyAOgGareNWAc/9lCatfxx42iA0vJ+vN/6DG4PPJy1VVAVRNQbUVYiMGiga5A3FSu12m/q58259bN+m9NoMfSlI/7zD77Qq1MyuTZ71KyMzXKwx8KMnQ8yliwwZLbzfwSje/ImwEJB2X+2YLLCZszuYzoGy+H7rrKooYW6yzZ7JMzG2/RoEKE0eaNFIq5++JUx7UL5/XC3timJUQuxlittrZjbWMjuGEbD3RRAsijj2UpDBswXVctrFRg8x+m+R2iyiCxqSLM+9dlZw6/4MqYRARNCOa0+5NT+AOmhGNSY/G5Pp0AEQ+l98zs9+urljnzPsU32l23K4126G9UXt5x3Wr8MoBS280Lv99/q+KDHwoydhPZqidcVh4qYZfu4bkXCGEEEIIIYQQQgghxIahKJDcVqd8NE0USff6elH9kKfenSfV8JkajHNyWwZ1tdkFhRDiLhf4CufeG+XYq9vwfJ3BxxfI7KlgpiW4VwghhBBCbHxGWsUaNIiPGKT22qi6QnPWY/Kvi7jFmx9nKe5CF7Ov7vtRjUpOY2nMRA0irEY77lN3I1pxlWq/jjseEaySwGpWAoaOe6TmfDQXFNrVQwMDWmmVxQc0/OTKfeiNELsY0RhQqfZv7mqhZjWk/8zFIFUFoutITAU4+1GTHX/nMPRimsVXa1SOOqsWGRFCCCHE5iLJqUKIa5J/JE583OTCV0o0p9qDXKf+zZOkWy12FYrMphJM70rB01dEcwTtG7Po93dhz86SqNcA8BUFPYow+w0Wvl/FrwWM/VQWLX7rZws68/94ck1RJ9v/p1dwLybMeZWQ6gnnqsec+HdPtv+NIrYtldmhl9i212YmleDwcD+urrP7//zqDbc58mH678qk9tgk0i0Gxg22vjLDzDcrV01rcuZfP3XDx7tE9dYQnbPGaVXWMnlqaK2+s2hsbdVpd/+Tt1f8HR836H8yidW//BUYKRHhUERze4S73WdQdVlRhzYHhV8oEgEOYI8Y7PlYGj2uUjvjMP1SDa02zyCgfmXPqm2a+pt7MdyQoekWoxeaxBsBjbjGqS0xZkdtfEMlE2sw/p5DvBTQSqrU8xqFTyVBXXkC1zIbbcZa/VydK+RXfQyAba4+uF2pxlZ9jGGuLbNWVVe/Flp1c9XHpDKdE1uvepx99fsboBRFZKZ9xmyFiXGTpbfqFN9e2z6FEEIIIYQQQgghhBAbiz3QovDjPvy6jpG8ybMAijV59PAiyYbP9ECMg3vX1j8thBB3oyiEwlSW6eMDTB0fpFU32bJ/lthjNUlKvUEBKgGbu4rRepPzJ4QQQohu7v2hRrigEy3ohPM60aIOzsXfDsmA2o6I5t6IyNKI/U6WTtFmZ2vxnsdQ1xCwWPN6x5UF4eq/Z/rj9Z7rf2bw3Z7rz7t9qx7j3dJ4z/VNf/Ukx4zZO5at0Eqsug9tlYzByWZu1X3MNVI919ccq+f6qt57PcBQvNpxefFF8A+Cdk4jVQxIF5fPyaWrJVkMGJjy4F0IFXB1lUZMp5wyKWZMTC+gf8lhoNxAvdhtGBpQHVMp7DFo9S1fM312nStbqzYBFGLFgC2vtZgcjlPM2R3baxirJ2Vbeu++y9XWAwSrxJi6gXbVMrvss/f77QIfvg5zz2nE9O73oFsSxe4HSEHhxwr9jycYei5N7oDPuS/2eLwQQgghNh1JThVCrIk1oDP4bBJ70GDx9frlxNRLKrbNW2Mj3XegKJdv7g4NDtJ/roERhuhRxMlcDssP2PJ8e339vMvM129d1VQjrTLxy3l2nz/FdCLF0Vw/vnb1zdUHNac8KsdaZO+LUT7cJHAigkaHG3FF4WxflvO5DKOVKnvnC3zozAVe3zp609rfmvdpzbeTexPbTEZ/IkP2/hil9yRRbjUDzyTJ3h+jtejRnHaJjZqU328S/t8Mos73/1dJ7bYYfCFFa8bjwn+r4lWWrwNFB6sRoHkRoa4QXPwvVAFFQfUjkiWf/vMNBmbbSZALQxbH9qco54yVydKKwoUH1tgocespCuUxg+qgzpb/ZZ7+J5L49ZDq8c7JrEKIlcJIWVMy/XrbDG0UQgghhBBCCCHEjUtsrYMSUT2RIv+QBELddmFIsuERKvDePasHaAohxN3q2JExvvvdAzQrNnayxejuBbY/dIF0X4MTzvB6N2/T2yxjFxuZnD8hhBBCAKimgtWvYw/q2IMG1qCO+4WL8Zh2iDrgo97bQhn0Uft9lFjE/BqSHIW4ZjpUH4LjW/pQ/ZB8wcXTFepJA99qJ5Xqbki+4JCa90nXfWItn1zFJV9x2T7V3k0EBBaUxjQKe3W89NonZQmzUH8gIn5YYWShyehCk+mBGO/t20STs4Uhe15tJ6YeeTZBM6eTjzVuaJfFtxrERnTsIQMzqzPwXJKFH9RuRmuFuK02a1/CZmyzEGJzkeRUIcSaJCZM7MH27Ete0UfR21U8rX6dkUqVpmFQti2iXpVIowgUhUBV+fa27QA8MjPDrmLxcuJq6IZMf63MKhMw3ZDAjVAuVp/sb9Z5tllnKpnmeLavZyXVxgWX9F6biV9q3ySe+NOFro8NVYUL2TTzyThPnpvmnrkCa0m3tYd0/FqIX7/6BFj9Oqk9Fqqm0FrwqZ1yqJ91Kb7XYODpJGZew6+GVI618Gu38ARuUsntJtn723OsmWkNNIWFV2qU3m3SZ6/S2RWCPaxjpDWGP5IG2q/Htl/pw1nyUQ0FzVZRDQW+W7lq80iBQFPQ/faV3ohrnNmdZHbUxjNlNtnNJDQUFl+tY+Z10vfYkpwqhBBCCCGEEEIIIcQmk1Kb1GsxiBSyAxVSanPFuk4MpXsVg/32VMflrXD1ihZXGkt0rvix2KOyhRN1Hu71e1T+0NTOYwjVLpUreoWteH7nyT8tq3vVhj2Hqph+xIWhGIqy/Jx9t/O+ys3uEzmGqWsPqtHUzudZ0zqfl7jldt3XfKtzNZD/4j3edRsn6PyaZWPdJyFtep2vp/lSsuPywOs+KevxyaGOy81Y9+oXmt753Lj1zhVoliqrVzm5in/tr2Xgdr7OlaD7vqJY5/ezYXe/Zkf7Oo/yZa3ur1nV63wO6l2q9vzl5MNd99XXJQC0V5WgRpdrJplodVxernSvSKSZXT4Dle7Hd/zO1/mJ8kDH5cdKg1331bVdXT7LAFJm5/GbPqt7xaPzXufxwiW/82fwkNF99NdWOr+fthud37MAnxh9cMXf2QMxBp5OUjvtsPROEWfe5yAWsLPrPoQQQgghhLjVFA3MvouJqAMG9qCOmWv//g/dkNaCT/Wkw+D/EKAO+JAMe4VkCnHLhLrK4tDVfUq+qTI/EuN8buV9c7zu0V9yaBkapazByPjVcaBr1bgfGvdHHDo+zOMHFxlZaHJ8m08rtgnSNsKQ/d+vYzgRM7stmrmb1+bpv2+f04lfyZPZZ1M+2MAtSqyzEEIIcSfYBL9yhBAbQfHtBn41JL3PZuQTGaIworXgYw/obJ2bB8BVVeaSSabTSYq2DYqCHgSMV6psKVewfZ+Dg4MU7Rgp10ELI5ZiMfqaDS4NHU/+bemWJqYCEIFXCSgMZziW62N7ucS2SomFWIKiHeu6WfWEg6JWGPpwmuqptSWkubrObCrBWLm6anLqwLNJsvfGCJyQ039R4Mrx5OEXU5g5ndaiR3qfTf8TCQpv1ll8tU7oRPQ91h4YVTSFwut14p6L7fsYYYASQUvXaeoGjqb1TMK9U9lD7c6E+jmH5qxH9YSzpiRe44JC4lWV/M8uD0hHQUTQDNFsFSvffk1K7zXxmyFL//Moga6gBRGaf+k/0PwI11JopjSWYvZd+RrcSZrTLvlHEigaRN3j0oQQF22WGcM2QxuFEEIIIYQQQghx4wKnnbhnpbon44mbLAx57KUSVitAC6EW0zi8dxNVjBBCiNsosc1k4OkkS281KLzePaFW3JgQlRCZSPhGyPkTQggh7iyqpWBmNYguhi5GgAJWTsMaNLAHdKw+HUVTiIIIp+DTmPJYeruBs+DjloLLMY8jO+R3gthcGgmD84lrn2yuF9fWqSRNks0merA5kjC3HGoRr4aU+zWm93WfMO5GTP19iW2/nGf80zlmvlmhOSV9tGLz2CxxkFfajG0WQmwukpwqhFiTKIDKsRaVYy2MjEZ83CA2alA46/DOZ+4j7nkM1eqMVmtsqXSfMejBubmu68791yXcpVuf5bX9V/tQDQU1CrGCgGP5fgabNQ4szjKdSLEQS1CyOicP5h9N4JZ85jpUx+ymYRrYftA7iU2F7L3txFivGlyVmJqYMDFzOmEQMflXJfSESv7ROAMfSpK9P8bS2w0Kb9TpeyxBZr+NPaize+p8x0OVTYszmRzzie4z896JFl+rU/hxg8jrPouzWoHs33b+ajz/N0W8UkDoRSgaZPbHyB6IYSQ19IRG6WB7duxK/xo6KDz5kb/Z1c649D2eYPC5FHPfra53c4QQQgghhBBCCCGEENdAt9ud9a2yiZ1b22SU4vqpfsjjP1zCciNCBZbSJof2ZNe7WUIIsSHpKZWhD6eonXYkMVUIIYQQQtxSqqGQ2GYSGzawRwysfOe4uSiKcIsBzoJP5ViL1ryPW/CJNkeunRDrJlV1GV5o0jJVaklzvZuzJpciWzOLAXt/VOPYh25+nLFfDim8VqfviQTjP5MlCiLqky4zX7v+arVCCCGEWF+SnCqEuGZeOaBcDigfbgHg/6pGRdOo2DYn+vKMVmscuFhN9fI2qooWLs+bWbBjlG2LQFHZWiljBcGaqljeDIuv1kjutMhs0Xhy9gJLVoxDfUMMN2qM1qpsr5RwVI1T2TwXkunlDRVozngkd1jEx0zq59w1Ha9hGCiAntTwyp2zU+3B5Y/j2umr92tk2rO4n/nfCwD49ZD579coHWrS/2SS4Q+329mc9dBshfh49xvZjOvw4MIs37G342vamp7DHSGiZ2LqpcdcKbQjmveGOH/qA2AP6Qx/LI0WU2mcdykfblI/u7ZrQdw5vHLA0tsN+h5JsPBSjdBd5doS4i63WWYM2wxtFEIIIYQQQgghxI2L9TdJDNU5990tZH79CIoU87ilHnqthOVGeLrCm09nqRBf7yYJIcSGpBgKIx9LEzoRc9+TyVFvtSBSCGRc4IbI+RNCCCE2H9VUsPp1EttM0vfYaKaKs+TTmvUovt3AKfiXK6aigIKCV2kXdBBCXJt7T5RQgSO7suvdlDU7fyDOwNkyCpBcCiAMQb35nafFd5qUjzbJHYiT3GmT3Gax5eeyuKWA2hmH+hmJyRUb02aJg7zSZmyzEGJzkeRUIcTNpShMp1O0dJ1Hp6YpxmwW43GiSEGLIiqWRcZpYfs+ZhAQKiF6GDKbSBC6Cze9OaqhkH8kjhZXKb7dwC22k2rLh1u0/udxdpcK5J0m+fkm3x3fzpH8ABnXYbxaZv/SAiP1KrF/nMUeWFkNc/STGaonW8z/YPWktIbZ3tbMdU5O1ZMq6X325b/dgn/VY+JbTNySf9Wx3ELA9N+XMdIqiQmL/KNxNGv5RvBENo+rabiqhhGGWIGPAtQM8+5KTF2jMANL/9RHW4T01zW84YjaR0IUF8Y+lcEeMlA1heasx4W/LeFXZfq3u9ml1z99j92unCt9sEIIIYQQQgghhBBCbAqKAhMfvsCRL+5l+vVhxp6cXe8m3ZFUP+Sh10okawFzIxZHD1ycELS5vu0SQoiNSLUVRj6exshqTP1tWSZGvQ02a0DpRiLnTwghhNgkVEhsbSejJraaKKpC0AopH2pSOtwiqEsMnBC3wuRIgsyJEqNzDeb7Y+vdnDVJLLZjjAMN3vlE6pYkpl4StqDweoPC6w0mPpPHHjSwBw3Se2y8asD01yu4i1fHUwshhBBi45HkVCHETRXzPNIth0hReGdkiJ1LRXYuFYkUhQgwwxBPVakbBhEKWhQym0hyaHCQHZy9uY1RYOxnMphZjcCJSG7PMfedCrUzLgPPJskW5mnoBtBOGB1q1LiQylC2bMqWzXw8wZZqZUViamPaxR4wUA2F1C4bM6tz/q+LPZvR0jXqpkFiwryqwmZiwmT4o2lUoz1os/R2ncaFlY/J3GcTHzeY/mql6zG8SkjpYJPy+02S2y2GPpxiJpXiTDZ/LWdMAPq0Qvrb7cTdIBcRe0vFOqMQ9amUDzZpznrUz7sgfXJ3vcqxFvExg4Gnk/Q9luDU/2dRElSFEEIIIYQQQgghhNgkksMNUmNV6vObIzBsM1H9kG0na2w510SJYG74A4mpQgghVmi0dF5/d4SJX8ihqArTXy23q1UJIYQQQghxg4yMRvoem/ReGz2u0pr3WHipRnPawy0FEuckxC02NZLg3hMlTG9lsGm84ZGqeThplXrK6LL1+kgtte9HJ++1ifRbl5h6pckvLZHaZVM97dL3aJzMPput/zhL0IqWJ28KI5ylgMa0S+Vw67a1TQghhBCrk+RUIcTNEUXsKSyxrVji0u1IBCgfWA9wIZmiEI8xm0wRKbd2Fk17UMceNJj+WpnGBZehF1KMfCLD0lsNQqfdnoVYnBPZPuK+dzFRddlCPMlCPMmLx4+jWSqLr9cpvtXAyGoMv5jCHjCw+nXs4VVuDhWF+WSc8bGrb4YGnkleTkwFcJcCoiuKq1p5Ha8S0ph0WU3kQ/WEQ/WEw5l/vXvVx4urRbGIINO+PqyTCpEG7ljE9J8VZZY4sVIETsEntRuiMJIOWyF62Cyzj2+GNgohhBBCCCGEEOLGfOGe8cv/P/iCTmwkzhu/217278+91HGb2SDRdX8BnfsT4ppzzW27J9m5guuhaLT78aPOQWI11+y6jap07sxsup3HO4KgeyBafCFg60wdzQ9RIkg2fGJO+6x4msLhvRnmB2PwgdPhN7sMUXfpminOp7oe/7ulPR2X60bQcXmvdWHYuQEttfs4UM23Oi4/V8113SZueB2X+2H386yrnccnLKtzApsR73791Zud26yq3Tu5vaDLi+N2brPid+9ni/Qux+lx/MZivOu6jsdIdk/s08zO59Iwu2/T8DpfA16P12yh2Pm6tWOdx/vqNbvrvmbCbMflva5zurzPE12O361dAHGr8zVbb3X/nClXOyf+uzGt4/L+ZL3rviqtzucmG+tehvkj/Uc7Lh/Qq123mU5mOy7fYix13aab39vxSMflqq2g2SqarWBmdGKjBskdFooKzWmHhVfqBA0Zj7xdokgl7PI9KtYmkvMnhBBCbDh9L+XQZxVi76oY8wqhGeHuiKjv8glyCjoxGs3BnvuwtNUnS6m5ne8tL/lxoXcgVdXpfj9xian3uOcBGmvYRybWO4FN03ofA6DidL9fA3i1srPn+mawevKhG3a+V7rEWEM7W6scZyje/X7okm79D9ei3Ox9vnSt9zGqrd7XFsBCKdlzfeD3Pp8Alt35XveSjNn9nvOSB9MXeu9jZwvlhzFyVYePHzwProLSVFAu9kFFgBtTOPlEjFamc3/ZaudzLdeGZfR+T/fHl+/Jg/0h0TGYONhieLpF8YCKM6gyFi/13MeBZO9z0fd2976yS843bfpoP99KzSf+uoa2qKBd7JeKmmDmdFI7LSrvt6TAjFgXmyUO8kqbsc1CiM1FklOFEDds5//wKqndFsMvpim8Xqd0uIlmq8RGDKKg3ckw/GJ7RuzxWpXxWpUH5uf59t6tOMbN/xhSDYXUXgs90b7BHP2JDGf+c4HZb1VpLfj0P5Gg8n6Llq4xUS2zlLSZTV+6Wb26U+S7921HjSJa+wz49fayo2HEvrlFJkoVtnw6y6F87yCTqBKsDKpQILPPRk8sD9b4jfCqyqoAtTMOmf0xEttN6mfa60/90VOrnofIWFumXNQt2uMD9MaadrW2461+37+mHL+guYYdAef+6/2rPma3eXz5jyHg51eu1wDvy2NrOt7Sseyqj1G6BXF8QN1eW6CF0lx9wG82uXoHxFq55urv2dU6bgCc1tpm/EomV5/hKrBX7xCNW6sndwM0vdWf3wfD0BSt/VpqloqitxPEhRB3n/n5eT73uc/xD//wD5w5c4YwDBkbG+PFF1/kd3/3d9m1a9d6N1EIIYQQQgghhBAdNCY9MvfE0JMqfk2ima5VftHhgXdLKCz360cKLGVMzm2Js9gvVWmFEHcpFYxUeywzsc0kPmpgDRjo8eVxvSiKcIsBS283qLzfJGjKLKhCCCGEEOL6mX0ayQmL9Fc19IKC3x9R+1CAuzVqB78JIdZF8KCHdthAKaugQZQJCYZDonxI5WyC/JTP/u81qAxoLGwzKQ9qcBsrll4pMlXmn4G+N0KsRRj+Tsjsh4Htt7kdSah/ZGXc68LTJSZ+JY+RUiUxVQghhNhgJDlVCHFTJLZZOAWfpbcbEEHoBHjl5RuDxV/t476ZwuW/W7pGoN6aGyizX2fwQylCf3kAzx7UqdVcSu82ibyIgQ8lUfx2++ZS3Wc8B3D1qz8qQ1Xh8MgAs+kEerDKXU4UMVxo0pxeTtjLPRCj74kEjUkPRYf4qMnSj+uE3tWDjo1JD2fJZ/QTGQCasx5nw/CWnT8hxOpUU2HohRTJHRbVUw5LP65LYqoQPUSRQrQJZt+6njYeO3aM5557jvn5eQzDYMeOHRiGwcmTJ/n85z/PF77wBb761a/y/PPP34IWCyGEEEIIIYQQ4kZ4lfY4QWLCpHx49YnyxLJ41ePAuyVCBV56ZJBmfOWEhMpNqLQhhBCbhdfSqE4nqVz8b+dnk6h6u7859COa0y7l95u4BR+/ERK0Ivx6SNRhbFjcPgFK1wroYm3k/AkhhBDrR9EgNmqS2GaS2GpipDQCNyRIRNTuCXG3RSDhhUKsu+BBn+DBzoGFZ/vjTN8TsOu1BumFgMxCkwhopFWOPhtftyTV5rjKhXEVrRYy/vchQz8ICUaA3kVcbwsjqRK05F5arJ/NEgd5pc3YZiHE5iLJqUKIm6J+ziG1M832X81TO+NSO+XQnPUuT5VdjlkrHh8oCoF6a37otGbayZxGSqN8pEnpYBO3uJwoWz7SonHBJfqtHQSKQqQst0MNQ0JFAWVtbSsk2tUtFbpXTk3XPeKtgKkTy4EtqV021RMOc9+p0v90AiunUznaPfBl6sslYmMmIx9LExs2UKOI1WphqmGI5Qc0zS4VKqOI4WqdXK3FYixBIba2Sp1C3O2MrMbYT2VQTYXpr5U7VjwWQtw9fuu3fov5+XmeeeYZvvjFLzI+Pg5AoVDgs5/9LF/+8pf5jd/4DU6dOoWyxt8XQgghhBBCCCGEuD2cBZ/KsRa5B+OUj0hy6lqpfsiD75RQInj9gf6rElOFEOJOFPoKtfk4XlMncDV8R6O+EKcynaS51K4UbcRd0qM1Cq/XcRbbwcfuki+BsxtUGEEowZk3JJRLWwgh1p8Cye0msVGT2IjB7LcqK+LkeklMmNjDBlEYUT3urChEITYuI6ORfyhOfMJEj6l4lYDaWYf6WZfmjEffD3Pr3UQhxDVwkxpHXkyht0JyUx7ZWZ/UYsCBb9Y59GLvwju3WpBUWXgSBl8J4WWL4AVnXZPe7REdRVXwKlJFRAghhNhoJDlVCHFTVI87EFbI3GuTvscme1+MoBnSuODiN0PSCyVauoZ9sVqp7QfoQYina7ekPVNfKZHZHyOz3ya12+bMfyoQussjI14l5ORg//IGUUSm5fDYhRkWEnGODPWTajmUYzb+9VYojSIOnCgyttAAoO+xBH69ilsM0NMqlRPtG6TERLvyYtSjfy9oRdROOQTPhjRnPLwdvds0VKtx38I8Rhjyg+1bqFvmivUx1+PAzDz5ZjvYJuW6kpwqxBrobsj4z2QIWhEX/raEX5PZ/4VYixCFcBPMnn2tbWw0Gnz3u98F4E/+5E8uJ6YC9PX18Rd/8Rf09fVx5swZjh49yr59+25qe4UQQgghhBBCCHHjSoebpPfaZPbZRNGa5668a2WXHB54p4QawtRYjHLGWn0jIYTYpLyyzvSFAYpnM5QnU4T+8ti2oobEci0yY1W2PDZDerSGlXFRFHj1dybWsdVCCCGEuJv0P5Eg9+ByzJee1NaUnKrFFEY/mSH0IqIgIv9wnNCJUC2F5rTH9N+XiW4wJEazFZI7LKwBHatPR7NVgmaIVwvwqxf/rYV41QB3KbhcBEN0psUU+h5PkN5r4zdCaqcdyoeaa05GFkJsbL6tsrDTYmGnxfAxh9GjDvd/q8bbjxk0UuuX7tGYUIleDVHPGih/oUM8wv/FxvokqV78nogNyUR5Yv1sljjIK23GNgshNhdJThVC3LDMfpvcw3GM5PJgnN8K0WMqiW0WoRdRCkNmMglqlknNMqjaJr52axJTAYJmxNKPG5Tfb7H9V/Mkd1pU3u8867kRBDw2OUPGaVc/Ha3WGK3WADg0NMD5fPq62rB1tn45MXU+ZzMIDDyTZOabFTRTxa9e7BiK1t6zptkqye0Wcd+jYZhXrw9D9i0uMF6tspCIMVBvsmdxibfHhi8/ZqBW58D0PIGqMJ1KMlSrU7AlMVWI1ZjNkImjDfSExuSXCpKYKoTAdV3CsP1ZsGPHjqvW53I58vk8hUIB35dZ+4QQQgghhBBCiI3Imfcpv99k8LkU//5f/yw/9ys/Ynxicb2btWE9cLFi6pF708yNxMBd7xYJIcTNE3oKzrRN81yc5rkYftlEUUPSozW2PjlDdmsFM+miWQGqFsmEBptcGKmE0TqW/bkDyPkTQoj1F/rtuLPmrMfSWw0ak2u7SVOt9mf4zDfKNKc9kjss9KQKikL/4wkmfjmPU/BxlnyCRohfb//nFvw1Ja0mJkyGX0yhaApO0cdZ8AmaEVpMwUhpWH06elJD1ds/qFpzHpNfKl3XObgbaHGVrf84C6rC4it1ykeaPQthCCE2t9m9Fr4BWw86PPpykVpSo5nQiNUD7FaIGkWUsgZHHkzDrQvDvuzCT6mMnm2iHjKhoYAPXB2+fOu4YL+lkvlUFoDAkbhNIYQQYqOR5FQhxA1L7bHRzJUjb34lYOn1Ov1PJ9HjKv31FkuJGJPXmeh5vYJGSP2sS9+jcbxKQHPKu+oxA/UGGcfh3eFBUq7LjqUSi/EY/Y0m980tMJNOXFeF1/mcjb87x/RAnP2nSwCU329hpNr78qrtG6TWvE/6HpvK0RbOYu/EFWfRx+rXaehXz/yTdlo8MDeH5fucS2eYqJQBGK7W6as3CBWF8XKV8XIVABeV0WqN2XiSydTtfV2E2EyMVsjYyRZDkw6BpjD/g6okpgohAMhms2zZsoXJyUlefvllPvaxj61Yf+zYMQqFAtlslt27d69TK4UQQgghhBBCCLGa+R/UiI+ZGGmNWNxZ7+ZsXGGIGkIpa7QTU4UQYhOLInCrJo2CTWMxxvz5HM6UTRSoaCmP2NYmsWeW2Ll9Gt2UcSEhhBBCbExLbzZYerNxzdvFhtuxZ32PJ2hMergln9opB68SErZCrH4dI62R3mOjx1UUrR0bGPoRzqJPa87DLQW05jwUTcHKtyu2+vWQ9F6b/KNx6mdd5r5fJXS6F27QYgqJCYuhF1LYIwatmatj+wTkDsRQdIVz/6VI0JDfpkLcDRZ3WFQHdLa+6ZCq+CRrAZECnqkQKCr5gsdT3ytw8Kk0zfStTQcJkirhw147OVUDZlSYuD2fRbEfqZinVRQUAjekfKRB4Tq+94QQQghxa0lyqhDihhVeqzP+6Sylw03Se2xUQ8EeNLAHVyZQ7pkvUrOMdvVU+/ZNm7PwUo3hF1OM/0wWt+TTnPFwFn2yjSZV26Jo2wDYvs/Jvhznshlahs4nj50C4GMnznKyL4sCzKYSlGP2mo7bsnWm7fbHrO0G+PWA1qyHlmjPPKdeTOid/34VM6sx9EKK839V7P1cXq4x/qks9xQWqZoWRhhgBgFpxyHfbFK1LM709zPQaN98BYqCFkU8PjmzYj++olBIxDjVl6PO2p6PEHcbwwkZPdVi+JxDqClc2G0zs80m/+/n17tpQmw6YaQQRht/CvnraeMf/MEf8Ou//ut89rOf5Y//+I954YUX0HWdV199ld/+7d9GURQ+97nPYdvyfSuEEEIIIYQQQmxYEThLPrsfnifbXyO4oo9g2st13bQQJDsuP90c6LhcVboH5U62Oh+n2Ip33abhXT2ZJUDUo5/jyud3iet2Hjr2mu1jPHR8AQWYT8Zp1az2SrXz89F6jEIrrc4TgkbxzhN4WunulX8+uv14x+Wq0j1A7kfTOzoub7mdz6XjdX8yR2cGOy4f6yt33Waxlui43Au6T5Q6kKp1XD6arnRcfmYh33Vfmtb5NVO7vJYAYbXzuVH8ztdSZPUIUOxyfCPZ/XXW9c77a1a69LkFPa7/Sufn0qh1f50bSpf3YPdTRmKgc6Bko2F1XB7WOrerF8/sXrEwnml2Xm51Ps8pu/uT6fa51XC6t9kwO7+fk3bnCQASRvfXv9vxD2Snum6zzexcAftPdu8CQFFh9KcyxMfaY9ahF9Ga86ifb1cbc4uXylBpvMyWrscRm1uIQsjGH7vYyOT8CSHE5lU90YII4lsM0nst9EScMIiY+tsS5SOtqx6v2Qp6WsMeNIgN6SR3WJcLNFwpCiKK7zQovNHo+ZsZIGhGVI61yNxrM/R8kvN/VSTqXdvhrqOaCun9NuXDLUlMFeIu46Q03n7qYn9hGIK63A8wPNlk75Ea+9+o8uMXu/dd3jQqYEUojor+7RjBMw7R3lv7gW0dVLFOa0RKRO0Fj5lfKt3S4wmxFpslDvJKm7HNQojNRZJThRA3rDnjUT3ZIrnNZO57VbL3xzDzGlqHAdGHJ9tJXd+6ZwL3OqqRXg+/HnLhy2ViYwapXRbWgE56j83g5DQADb39URgpEKgqwcUbuG/t2sZHT54FYFehBMDOQonZVILj/TlqdufB405Ojqfpm6yz7VfyzL/UDiAY+Xia2W9XSe2y0JMaqqWg6PTsYGtOe5QONhh9QMUMy3iqiqeq1E2TsmVjhgH3LSwA7cTUSOFyJ5+vKpzJZVlMxCnHLCKl/UNTvbo/UYi7Xv8Fhx2HGkSKwtSudlJqYMjNmRB3i0plZVCfZVlYVufv/V/7tV8jmUzyr/7Vv+Lnf/7nV6w7cOAAX/3qV/mJn/iJW9ZWIYQQQgghhBBC3BxBK6RRk8mlLjFbPolmQNPSCAONe86XGF5qUkoYnBrPrHfzhBBiTZyawfyJPqrzCVoVk/FPJwiaIShgDxvMfKtCa9bDr0mQ/90oiJSuEzaItZHzJ4QQm1cUQOVYi8qxduCYaiqM/XSGoQ+nOPeXRbji51HQighaPs68T/lQe5nZp5F/KE5jyqN6vIXVp6PFVVpzHkFzlazUFY2B2W9V2fqLOTL7Y5Te6zzRyt0qvc9G1RRKB+W8CHFXU1fGYzfj7fhrNYTth+u0YipzWy1CvftEVjd2fPA/00D7noV61kCd1ghucXKqNxwSQyMywZd5o4QQQogNTZJThRA3xdKPG0z8Uh6iiAv/rQS0O6BGP5HBSK9MQnU0FVe7RTdAPTSnPJpTXvsPFeb+l4dIOS4px6FumUylU8sPjiJyjRZV0yDlekSAq2lYQcBwtc5wtc7CxcqjS4nYqscOVYX6OZfM/hh9j8Rxij5WTmfsJzN4lYAoilAUhW2fyeMWA5beatCc9jrua+GlOqc+fT8KXE4wHazXeHh2lrl4gqN9/VQsiy21Mr6qULEtijGb8Iqb06Tjsm9ukVyzRcmyeXdgGE+7PQnDQmxkYyebbD3WYn7c5Oz+GIFx+z+vhLjTRJHSs1rHRnGpjVu2rOzR/L3f+z1+//d/v8s2EadPn6ZQKKBpGtu3b8c0TU6ePMmhQ4f4sz/7Mx5//HHy+e7VKoQQQgghhBBCCLH+3KWApcXUlUUI7koT52rsPl29qhZaw9J4+d6hdWmTEEJci3rB5uQPJ1g4lUNRI1IDDeyMg1cJMPMa9oDBwss1aic7V3IVQgghhLjbhG7E3PerTPxCnsRWk/rZdmX70VdTPbcbtKof+KtzktKbha0996F//DwDzyRRNQXNvstvyK+kQvb+GNUTzuWqqc+vkrx7rrV6LGPW7L0PJ1g9tDyR6v1bOmc0eq7/cbH3dQGw2Ej0XB8zO8dXXgtLXz25LmX0rv4x00zfcDtWY2urP9dBu9Zzfc03V91H1e89cVtjDft4ZOhCz/VTjd6Tnp2a71/1GGHQO87Vjrmr7iOb6P0+OL44uOo+zpV7Vyztj/d+Hxjq6hMlmV2u0ZTTviY0P2LkXPv9uO1oE8dUObQ3y1J++bUcHZnveYytieKq7XgufYyZ9/o5dXYbZsrhwY8fwYwHl9cP6+We29vK6tfwjx9a/g5QdNj6i3miVMTit2uU/51U4REbw2aJg7zSZmyzEGJzkeRUIcRNoRgKYRBhDxvUTrdv7NxCwNn/3xJmTuPC/3gfehiydanKSKXOJw+f4chIH+f61ml27RCqtkXVtoCrO9ESrscj07MAHBweYCadwNc0bM/nnrlFRqt1BupNBupNjg3kOZ2Pdz3Ultka950qwf52x4+e0NAv9pt4tYDqaYf8g3Gqpxzcok98i8n4p7LM/6BK+UiXGypFuVQQlbjrcmBujtlEgneGhgHQoogT/TlQrvgxGUWkHZd8vcm+hcLlxX2tJrbvS3KquOulFz22HGtxYZfN5B776veQEOKuMDk5STq9PHjQrWoqwD//5/+cP/uzP+Ppp5/mBz/4Adu2bQNgfn6e3/zN3+RLX/oSp06d4q233kKT71khhBBCCCGEEGLDcpd8fF+nVomRzt7d1Ui2n2sHMx7fkcL0AlRHoW4bnBlOSuauEGLDC06avP6jA5gJj3s+dpqhPQUMux0w+9L/ZRfQHtuOvGuo5iXuSGGkEkbyvXYj5PwJIcSdxa+0k6QU/fbEyihBRO6UT/ITaRJbTWa/U6F6XCYP+aD+xxPocZXiu70T3IQQd5/5cYP8jE6sEjLfZ1NOGQwvtuhbcnjk4BJvHshTzPVONr4W1bkYp74zgaqHPPrZg7e0i1BPqmz9xRyq0a4aXT4kialCCCHERifJqUKIGzb1/3yE586cx9dUDn1qL7VfuHp2JNVpd1o10zb5WgsrDDCaoNXWb7Bi13//as/1lY+kSO+xaWISuToa4GFwsG+EyUSTbZUSQ406qYaHdqH7TVzZVZiJ+xTtGK6moUUh9y+2ZyIykhrWoxn8wCe106KhxXFNjVjTJfjpYU78VucZyLVWQMpxMYOAvnoTPYrQo5Anpi+Qclz0KMJVVYpxm6V4jJahE3c9Rio10s7yrFCBAsfz/RTsOHVz9VmtbpdIX30wWGmtLcHHdbonDl/y9TMPr2lfa9K/+gxPihWs+pjIWWMC0xpms9EKxur7UdY2AB/EV3/PrqWbWNNWn/ULYHffwqqP2ZPsPbMXQEZfPZgsdBTO/udxmpWA5p8usPocbEKIO1U6nV6RnNrNu+++y+c//3kMw+CLX/ziioqrg4ODfOELX2Dnzp289957/Nf/+l/5zGc+cyubLYQQQgghhBBCiBsQXeyyDMO7PMkiDNGDCE9XmByLE+oqXnMNfcxCCLHOIh/8VxKER22G9y1wz0dPo5udx6MkMVUIIYQQ4mpGth2r5FdWj2u6GfqO+Qwc8XFSGqXDTUlMvUJ6r0XuwTgLL9Vwi7fnNRFCbCKqytEnUlRry9WSZ0YS2A2fD705zyMHl/jRY4O0YjcnVeTYP+yASCHRX7/lc9dt+cftxNS571WpHpPvBiGEEGIzkORUIcQN21YqE6oK39sxQdDjrkMPA56YuQDA6UyOc+l1qpq6RnPfqWKkNR5WpjnSN8hMcrnCasmO8Y69fFPXK6+vblocHBiGizmEmdZykpynqJQtm5jvkXNamGGI2QpxNRVPU1GiiEhRsD0fIlCjiG2LZbYWK6gfOKajqSRcl0BVqdgmgapSMw0yLZd984UV7fEuPqav0aIQjzOTSEnFVCGA4g/7UE2Fue9W17spQtxxwkghXEMy/Xq71ja+9NJLRFHEnj17ViSmXpJOp3n88cf56le/yptvvinJqUIIIYQQQgghxAZm5nVULSCRvMtn4ldVJsfibJlq8Nwr8/zoiUFWn5JRCCHWV1hS8b+dIipr6M/WuPexkygbv0tarLOQzTF2sZGFyPkTQog7RWLCZOBDSfx6gLPk35Zj2sWQRp/K1J8Wb8vxNhN72GDwuRTlI01KB1efkF8IIS5pxXXeui/PIweXeOqtBb7/ROcCOZf5IZzQIRvCwMUJngoqvGGBGcEjLair+M12ysngvYu3tP1aXEWPqVSOtSQxVWxImyUO8kqbsc1CiM1FklOFEDckucNkuFjmWH/+cmKq5fmkXJe6YdA0dC6N/E2US5hhwI/GttLSN8cs21N/Xyb2f9rOgcU5+psNLqTSEEXoUURL16ma1jXvs2zH+PbWHYSKQnRpVDSK6G82yDotAjNCD0MmChW0KCJUFLYUl5PlPFXlZF+exYsVUWOux97FJYygfWOYdD3MIKRmGiTddpXUpq5RSMRxNI2hWp2+Rju4ZrDe4DF3iqN9/TQMg5a2/HoJcTdpnIzTOJZk4aUKfm1tVV2FEKJaXT2ZPYras0m0Wnd5YKsQQgghhBBCCLHBJbYa5McqTKtpuCIO1426T/D4VmWi4/KDhZGOyzN29z4CP+w8qaepdq+QEnSp9Nor2KThmJ2PY7af+Jn7EjgphV1H6zz63iKvPNw9iM13Og8396pJGFldno/b+bkEVvfzvys+1+NInb1lXj3JGEDc7JyGW21d+1hQqRHruk7pMuOpqnbvm96RKnRcPh7rHMTd9LuPw1l650DzmN49Dflsl7bVKp2fZyJ57cGDrWbn6xKg2eiyrss1owQ9xrq6XZyJaw/Ajxrdwy1ct/N1G4u5HZfXqt1fMy3V+bWJejxP1+m8Py3Z6Li812dG3e28L1Xt/k7vdp2bWuf3v650/5zrVuTl0CPt69LMa4z/TIagFTLzzSLu/xrwPru67k+ISyIUSa68QZGcPyGEuCMYGY3RT2ZoXHCZ/0GV6PbkplId1Rj9sUdyl0XtpCQgfdDwiymacx7zP6qtd1OEEJvQUt7m2M4095yqsPdUheBSV5gfYs9DaxDQVfpeDUiejVBo9+9EagSxCOrLv/OVM+2iPj4RY4/OMHLg1ianKhe7eoKmVIwWYiOYn5/nc5/7HP/wD//AmTNnCMOQsbExXnzxRX73d3+XXbukD04I0SbJqUKI65bcbjLy8XagxGwqeXn5nsUlxisrkzXqukHC9ziTzm6axFSAyIs4NDBEIRZjf2GB0fry86oZJi+Nbb2u/Qaqiun7bK2WmYsnqFo2i/EEi/EEfqo9kFqzTe6dWiRSFI4O56nYJkoEpbiFHy5/fDu6zmtbxy7//fj5KeKex/Zihal0ktN9War2cuDEscE8I9U6+2cXsIKQlOfy2Ox0+/kC3926XSqpirtKUNcofq+P2I461T+Vzm4hboUoUog2wexb19rG3bt3A3D8+HEmJyevqp5aqVR44403ANizZ8/NaaQQQgghhBBCCCFuOkWD2IjJwPap9W7KhjE9Eadv3iW35JEpO5Qz156gKYQQt5qZ0xj7mSxeLWDq78qETq/UeCGEEEKIDUaF1G6L5DYLvx5SeL1O6N7+3zPKxTAxxVBu6/HL2zTiiyHDH0lxvujjFiQRCUDRwUhpOAu3KUtYCHFHmhm02XuqghGERI2Q/jciYjPt6WUiIDRDNBe8BGgPtKCqoJzToalCKiJ6sQkqRK+aqNMGqBHZicotb7c93I4vd4vynSA2ps0SB3ml62nzsWPHeO6555ifn8cwDHbs2IFhGJw8eZLPf/7zfOELX+CrX/0qzz///C1osRBis5HkVCHEdWvMeBTfaWA/muLpcxf44fYtuLrO6XwWgKFaHSNsJ1omfI/pRJITub51bPH1m0mmmU2k2FYusafUnp36YP9ge2UUoUQXJ1q+suroxWppnaqRxn2PHeUiO8pF3s/3M5nOrlg/mU8znWkn/Qbaypmflc6TKl9cCeHF4zm6tiIx9VJbZtJJFuMxti+V2FqsYF58nWqGeXlbIe4WlTczoEDuhQLQfTZ7IYS40sc//nH6+/tZXFzkl3/5l/nCF77Atm3bgPasYb/5m7/J4uIitm3z8z//8+vbWCGEEEIIIYQQQnQVGzFQDYWBbUvr3ZQN5f370zz9/QL3v1/i9Qf7cG0ZWhZCbBzxLQbDL6YlMVVctzBSelYNFquT8yeEENdHsxXyjyVIbrfQ4ypBM0SLqTiLPpWjLbS4StAIb1t73KWAyf9WYuTjacY+lWXyb4q3p3qqojDziEH8XYeBZ5JM/32ZSHKRiHxYeKXGwFNJhl9MU3qvgbPo39i5qShoL1mE+z2iCTnJQtwNtItv9aGFFny5/f9eGupbFWJzEUYZ3DRMf1Rla84DIHq8Q2DyJ1uEp33U79kc/us96LZPvK9FYqBBaqRGfkcZ3ez+nRWGMHVskLe/eh9c8TDVCIkNNBl7bobEUAuAxFaTKIqonZEiI0Kst9/6rd9ifn6eZ555hi9+8YuMj48DUCgU+OxnP8uXv/xlfuM3foNTp06hSO6BEHc9GUEUQly3sBWx+God5xMT3De3gBGEuDrULZODI4McvPg40w945MIMCc8j2sQ/PiJF4Vw6w0i9ihX4DDQb3LO0SNp10KKIuXiCdwdGVmxzX2Ge0XqVJStG3TBYjCdYiCcAKFk2JdMi6zrsW1pEiyLOZnIrtr+UlKpEEXHXo24aHRNdAbQwZO9Cgb5Gi6JtkfB8aqbZ9fl4usbxwT5Op/qwfZ+mrnfdtxB3qqCpUn8/SeqRMlrs9nXsC3G3iTZJgMe1zhCWTCb5j//xP/JzP/dzvPzyy+zatWvFDGGu66LrOn/6p3/K2NjY6jsUQgghhBBCCCHEuohvMfFqAan+xno3ZUPxbZXCgEn/gsvzr83z/ScGJUFVCLH+ooj0oYjMT2ZonHeZ/XZ1XSqMCSGEEEJcEwWMtEZs1KD/iXbsWPn9FtUTLUY+kcGv+1RPOWTutRl8NsXkl4q05m5f5czWrMfUV0pM/FKe1C6bytHW7TmwqjD/wxqjn8ww9qksM1+v3NbE3I2q9G6ToBHS/2SC1M52PGEURoRuROErDsaQiznsoOc8tFiAcuWtegC0FJRFFe1VC6XejkGMxgMiJDlViLtBK6ZzbGeakdkGRiqgdL+C29f+LCjfd4072+Hz+J53OPWdCcqTKSpTSSpTKWbeGQIlYudHzjH8cPmqzcIQvv6/PUW9HL+8LDlWQ7MCAk/FKVnUpxMc/+Iu7LxDbLSJarVjt8IAMvfZ+I2Q+ule1XyEuL02Sxzkla41LrLRaPDd734XgD/5kz+5nJgK0NfXx1/8xV/Q19fHmTNnOHr0KPv27bup7RVCbD4yeiiEuGGh0q4a6mlax/WurjGZynD/4jx6GOCrnR+3GYSqyhvDYzw4P8OO0hJV00K7WB3VVTWyrSZx3yPuecR9j+FGDYC80yTvNBmvVfj++DZcXUePQgJVxVU1lmybXcUCRBA1Q5QIFCJMP2TrUoVLPwlf2TFKMWG3/4gi9DDE9gNGK1W2liqoUUhD18m0HN4bHuBCLr3qc4oUhaZh3IrTJcSGVzuYBgWS91fXuylCiE3qk5/8JO+++y7/5t/8G77zne9w/vx5oihiZGSE5557jt/+7d/m4YcfXu9mCiGEEEIIIYQQoof4FpPIi/j7f/Mcz//GG6T6muvdpA3j8MMZnv3GAmoEyYbPkiSnCiHWkepE9L0SYs9A4Y0GxbdkUgFx/cJIJYzU9W7GpibnTwgh1m7801liw+34rMqxFouv1AhaEUZWw8xoTP19mciL0JPtuLrgA1XhjaxG0Ahv+YQcbjGgdtqh/+kEzWkXrxJyaHGk5zYJs2/V/SpK73ZP/9k2yiWf3W/UGf/v+jnxWIJ6dvneM/dTJ9b2BO4w1RMO1VMOVp+OmdNQdQXNVont0agfTFF7M3P5sYoZosZCIk/BaHSOzWw85ePuVsG3iGle72P71qrt2xlf6Ln+Q8ljq+5jNd93d/dcX3W6F+64ZDBR67neVFdPAn8se67n+pONwZ7r82Z91WOUvFjP9aPW1Yl/V3LC3n02pyr9q+5DS/Q+zkhs9XYcL/c+H17QO354W//SqsdIGL2ras41UqvuY7V2eN7qcc6rfb4dPzPcc70WX/36M83ej1HU7m2Y3JpgcmuCoezF2Mgup82Lrf5c3wq3wQsANXQgrKpwXid8Pc6p70zQMAyCpk7oqgSOSuSpVE+lCBo6Rs7Bfq6CPuihXrxMdcCiSlBVqX8vS+uCxfin7MvH2/V/HLgcNx0p0EyrVL9covK+VFQV4nZwXZcwbE8YsmPHjqvW53I58vk8hUIB3799E6oIITYuGT0UQtyw+USCQFlkoljixEAfShQxUG+gByEqEa6qoYXtG6BV7sU2BU/TeGN4DC2KeH7y7OXlW2oVttQqALQ0nYZucCGZpmDHKNhx7NDn6elJEp6Lq+s8OT1J3Pd5c2gUT1XJOA7bKkXMsPPsb0txi6rd7lDZs1Bgx1Lp8s2Xryqcz6TRwpDRap1Xt45RStgd9yOEaIsiqB9NEN9bR7Nl1kUhxPXbs2cP/+E//If1boYQQgghhBBCCCGug55UsfLLQ6azxwdIPXV+HVu08SgRNC2VpbyMOwgh1o/qRAx9I0R1YeEFlfKfSmKquDHhJq12spHI+RNCiLXJ7LcvJ6aWDzfxqgHpe2xCNyI2ahB6Ec2ZdlW4pR/XqZ5o4ZXa1S2tQZ2tP5ejNe8x+TelW97W2e9W2f5P8qT22iy9cft+b9WzOoefTbH7jTr7Xqpx6qE4xdHVEw/veCE4Cz7OwnLSx94/8/BLOu55C2/SxpuxiFyVwL160gi/L6R1IMQfjWDz1hMRQmxAaiqEe12wIsLvJpn52tjVD1IiUnsrDH9kliWSHfejpULSP7NE2FQ4/oOtpGd9dCfCjSnM7zbR3Yj8eZ9YOST+fJrBZyOasx4zXysTSkFVIW6ZbDbLli1bmJyc5OWXX+ZjH/vYivXHjh2jUCiQzWbZvbv3ZBJCiLuDJKcKIW6Yp2ucz2bYVipzNp8l6bg8MjXb+bHqHTJzpqIQKArn0xls36dumDQMg4be/i/s8DzrmoqvKGSdFloUEfd9FmJxluwYKAo/3LKNsWqZe5YWiFBYSsZYSMZYTMWomwYoywM7W0sV5hNxpjMpXFWlFLMJVZV7ZxfQwpD984vULIOaZVI1Taq2RcuQj3whPijyFIKqgTVcWu+mCHHHi2gnhG90m6CJQgghhBBCCCGEuMniW1YGu371s0lCb9+KZR852L3CRdnrnLB5T36u4/Lt8ULXfZ1pdK44c7bSvRJNzOhc7STqkSyidplJtNrsXhmlqRt4tasDg1W786zomtZ9QkA10bnNfpeKFH6z+/jG//vdFzouz6W7B1FXG52fZ7dz5jndj6/qnZ/njv7ur3O3819qda+S4nWpTBdXO0fhfXzk/a77MpSg67pudic7VxzR1c7Pf9HpHHAI8NbceMflrta9XXa28/Oszyc6LlfcHslSXVaFHQK5L+v2frqOWXmbzc4B9kqP4xtG53MTqN2fp1fq/Nk02eVzRot1P/+h17ltSpfrHyCb6fy5ORDrXLXo3tRM132dbbbbbP5Yx6jpeHt9Br+nE91jUzna6rqdEEIIIcRGoWjt321REJHYsXw/opnt5YU36kQXb60iH9yl5d9mifH270cjfXsyCyMvInCiy22+nTxb5f2nk+x4p8HOtxu8l9Vw45JRqZoKmXtt4uMmRkZj8X9bPieKFaIPumhZHy3roWd9LphpwhRgrF+bhRB3D3WXR1RrMBCroqc9dDtAswNUK0S1Qy6HUq9SWFGNRUwdsJk6cPW6hd0WhCEjvzNDdn+c2IjB1l/Mc/Y/r15lV4ibbbPEQV7pepr8B3/wB/z6r/86n/3sZ/njP/5jXnjhBXRd59VXX+W3f/u3URSFz33uc9i2TGophJDkVCHETbDrv38VbAX1n/TxyN8cofBanYX7YuhxlaAVoRoK2QdiqJrCM98/Qv2MQ+2sS+hsjl9nO/7HV7quC4EG7XHsxMX/emm8mGLn9hBFgdqkS+lrC2znHACZe20Gn01xLpvm6FAfwQcTXC/2OSpRxHipghGGzMTTLBjtwf10tUXadanoNi29QbblkG05lzePgOl4iuPZfnz1YgdVFGGGAbYbYIUBRhhQ1S3qxtVBGeoqN4bQfVz+SqGx+usereHbSWusLdFZa67eMD+xetXMIL+GkwDQK3jhotBZ/TH2/P+fvf+Okuw8D/vP7411K4fOPTkCgxkEIgMkQJAUAVKiEkmJpG1SFCn/zF1rj2j/bB3t0VlTwbuWSetHy3tsU6S9lijTokWJohjAHEGAIBKBAQaYweTp6encXTnc9O4fNalnKvRguqe7ep7POX0wuPGtW1W37hue91naT7TvdL+e2hKSgnoDSxyMonc/n76EbezI0q7nRCXVdZvb0qe7bvO9m1t/O7f+44CZR/t46V/ZVE7KVFpCCCGEEEIIIYQQQlxvUrsutImPf60AerO9PjJgMvuTSs/0ZawU0w3RgFJURrUKIVZXmFUoS2EdavahDT2UxBkwmf5xWWYeFK9JiEbYLmJdLIlcPyGEWJr8izXyL9YuW66ZoOkaodv+YcYtBPjVkIlvFFayiIuYcZ2gcnawkVKLEiqsNGVoHL81Ru5MgfSMz8yW5jg3Z9gkvSeK4WiEfjPQVwUK5avm//uKxqxPbcLreD17iRHVyNwcI73XQTM0qqdcSofqbPnXDYy0j5EJ0J3LB4WFSxhrJYQQy8m4rUHWWeHfKV2n+HKD4ssNNv5KmuiwTXJXhNLhRvd9hRDnFYvFRf8fiUSIRFpP5viBD3yARCLBH//xH/Pud7970bpbbrmFRx99lLe97W0rVlYhRG+R4FQhxLII6oq5pysM3J/AShhUxlzsUQM0Db8csPBsFbvPJLkjQmJrBP0nZfIvXN7ott5N/6iMOx8QuuGimXwT220GH0iysL/KgV/fflmjXsTz2T0zz1C5gh2EnIknmI7GQSm2FPPckL8wA3cITMbihOj01atEwgAN2FAtsaFaoqEbRML2gYiHkgOcjmeW+ZULsTZNfLvI5ndmiW+W4FQhVlKIhtYDAxRkEIUQQgghhBBCCHGd0SE6eiGL4YZfSC9avfB8jbBx5Vkm1xPfbMZ8Oe71fR2EEKvP3xPg7wwwxnU0VyP/7+oMPpDAGbGonfFYeL6KX17CjK1CCCGEEGuE8kF1mWWjfLRB+ei1DbwJGyHZ26IMvD4BX8vz01/IXNMAVT1QKA30s9XQ1A0RBh9K4i4EeIUA3dLQohq6oaGZGpoJuq1jRnWUOhukesZr/vVosKozZDJ6to2icKBO/sUaQbX5rHvDDTK+SQhxfZv6QYkt78kx9OYkyd0OZ75eaA6cFuIa6JVxkJc6Ny5y06ZNi5Z/7GMf4w/+4A9a7qOU4tixY8zNzWEYBtu2bcO2bY4cOcJLL73Epz/9ae6++25yudxKF18I0QMkOFUIsWzy+2v45YCBNySJb7XPN+5E+k3iWw3MWDNbZOlog+KhepejrU/KUyz8rLpomWbA8FtTNOZ9Zp+owHsWP7Sma3VuPz2FrhSnMinOpJPUgwh24LN3bpqBWpVjqQxHM31oqtmYFuo6WtDMtDpYK7OxUiTXaAYDtwpMLZoRaoZF2qtTM+SnQVwfrLTB8FtSeKWAuWer3XcQQgghhBBCCCGEEEKsK87ghWygpSN1kjsdACqnXGZ+XMIryqgmdJ26ZdBfuv4mHBVCrEEWBFub9+biK3XcOZ/s7TEy+6LNCZOfl3uVWLpQaYSq9waUriVy/YQQYn2a+E6JzE0OyV3NrKU3PFXm1E0xho7XmdkUoZJd2bFlAydddAVbDtRIzXpk39TMBHrqCwt0iuU1kzrRUYvYqE1ie4TsrTEAQjc8n1019NXi/3oQeiHufEBj1sevhjhDJsntEVQIjVmfyimXxoy/oq/5HGfYIrbRInNLlMasz8Q3ij0ZXCuEECvJy4cc+e+zbPzFDPFNNlvfl+PE5+ZXu1hC9ISxsTFSqQtZ1ttlTQX4yEc+wqc//Wnuv/9+fvSjH7F161YApqen+fCHP8zf//3fc/ToUZ577jkMw1jpogsh1jiJQBJCLKvyMZfKqTk0QyNsLG4Y0QzQLY2gvrYaTDQT4pttoiM2mgGVky6NOf+azaybuTmKpmkUDlzSWaoUm/NF9kzNUopEeG7jMHWredvO5BvcMXUGgOcGR5iNxpu7XDJLndI0pmJJpmJJzDDADi4Epja3VKjAoG5aCHE9cYZMRt+WJqiHnP5q4fzsgkKIlaGUhuqBAQq9UEYhhBBCCCGEEEIsn8TWZtZUvxKcn2BzYX+1OZGkOG8qE2PrTIlE1aUcs7vvIIQQ14IGoa/wSs3+z9qkt8oFEr1GglOvnlw/IYRYn+oTHpMTHpPfK8Gfb2XLgSq3/LAIwOApl2feniE0Vu43oDBkksib1JIGA6eaWUKDetgxMBXAL4WUDjUoHWpmmjWTOtFhC8PR0UwN3QTN0tBN7ez/a+iWhpU0Se5w0K2zo+mUojbhgQ+ZW6L03RUnDNSirHyNOZ/Sq3WKr9ZRVxm3qhkQ3WCT2esQ3xIhqIdUjrtMP1a66mMLIcS65YMRbbbnnrt/C3Et9Mo4yEudK3MqlVoUnNrOCy+8wGc+8xksy+Lzn//8ooyrg4ODfO5zn2PHjh3s37+fv/mbv+F973vfipVdCNEbJDhVCPGa6bbGhl9M484HFF6pUz/b4afOzjR2KRVAEKydwFTNhE2/kiXSv/hWmL4pCsDc0xXmL8mmaDga6ZuiREebDVdoUDnRoHSkgbtweUbSbpK7I/Tfm2D+2QqFly9kkzWDgL2Ts2woljmRTXFwsJ9QP/swqxS3zUwQCQOeGtpA3omCUphhiK/roLV+6PV1A1+/fGYSvc32QqxX8W02w29J0Zj2OPPN4mWB9EIIIYQQQgghhBBCiOtD9rZmFhUzbmDGDUJPUXyl3mWv68/E2eDUoUJVglOFEKsvBOslg+0f7MOI6KhQMfdUhfqkjNwXQgghhFhWCuZHbYr9JpsO1hg85aIBViOkEVu57FjVtMnhuxMATOyMMPh/O4U7f+XPen4ppFRqLG1jDay0gRHV8YsBfuVsJKoO0SELu+/C+EJNh+iIxcAbEgy8IYFXCvHyzQyrpcONjplOjbiOnTHO/1kZk+iwhW5puAs+E98qUD7mXvFrFUKI69G5oc+Fl2udNxRCXLHHH38cpRS7d+9eFJh6TiqV4u677+bRRx/lmWeekeBUIYQEpwohXrv4VhtnwMIZsEjd4HD8c3P4pd7JPmjGjcsCU88JGmFzBrSzNB2yt8eaA1UUVMdc3LyHbmqk90XJ3RGnPu0x80T5ijo+IzmToB5SPukS22hhxg32TM6yoVBCV4qfjQ4ykU4u3knTGE+k2JGf5+6pcRYiDlHfwwkCKqbFoVz/+UyqQojFMjdH6b8/Tvlog6nvl1BXHlMuhBBCCCGEEEIIIYRYB7RLugcacz7jX8kT1GUyu0sla83+kkDXV7kkQojriVIQ5E3MEwbGpI4+p6GXmvchpSnyh2pUTrjUpz3JKCVeE8mcevXk+gkhxPqXe8erABSA9K9lifSZbPz/nCH/Yg0VQOHRnVd9jqzTIajIgfJfjXQ9Rr7mdFy/LTPf9Rh+2Ay4tc7+XcwF3jrw8uJlRYvKqRjugk1j1qFyOsHQm+LEdlVI7i1iDzQov5KkccbBW7Dx8hbKO/s8qyuCJIQpRb0vxN2sCFOgwjTdRv29WOzcbrHQiHV9rd1+w6Om13E9QDmIdFz/XG1rx/WB6t7GsDnZ+X2bNpMd1wP0RSod15e8zq8D4GS9r+P6USffcf22yEzXc8xYnV/Ly+XRrsfwws5B4xGze8XpdCXTcb3eLYUxUG50vqZRq/Pn640Dh7ueY0tktuP6vzh9f9djTNU7lzMIun9GK8XO9x7N7Hy9gnr3MA4r1jnIfkO20PUYU6VEx/WnzGzXY9yRO9Vx/SZ7ruN6S+v++UvYnV9r7vHF5awUFalvKHK3x0k/GKP05oCZn1/oeh4hRHelUqnrNko173H1ukz4KYSQ4FQhxBWKbrBI7Xaws83ATr8aYsaalbBIzsQv9c7MXV4h4PCnZtAsDcPWQIewoS6bvSw6YjH4YAIrZbDwQpWFF2qLMi1qP4L4tggjb02x6VeynPhfc3jFpQXpFg7WSe1x2PzOZqVJKUW9VGE8k+RYLkPDuvw2nao1iPgBddMk5vtkG82HuqPpLDsKCwxVyhKcKkQLfXfHyd0eY/5nVeZ+2rnhUQixvEKlofXAAAUZRCGEEEIIIYQQQqx/97/Q7Mdwz9gU/qG5rP+3zoCpeOCPp1vuc8rtb3u8yUqq5fIbMq2PlTbaD7rNWK3Xxaz2fS/tBnPekGp9foCfTG5pfawWg+5MN+Sm8XkCHca32Vj64rJkUtWWx/L89gMi83OtB8RZsTavs0Oy1r5067Zet8P5vUbrLvLQbbNP2L7NqF1vkKm17ycKWb42qI1264G6e+0zbffJGa0HgdY7tI0d83Itl7uq9TV7kvYD1GuNS4d5N2kdLkuj3nqfdmNiw1iHmSnbnadT26DW5kQdRlv4bcpst/mcN6Lty1yfjbYuVofPpu61XhdG27yWdq8RQG+9TnU4fzLS+nUOO8WWy5+4dfEX3c4aDL0piTNoYYeK+rRP6Crim5vbTX27ROnIErNgCSGEEEJcRzQd1Arlljj9pTwbfzlD/70JrKTB9GPllTlRj7BTHva+C0FhXtlk9uUcpQNJKq8k0ewQ5WlEhhrYAw1iu8qMRTIEKUWYAGT+JyGEuCphCvLvDog9qRM5qpH+sgEPJJi5zn+fxMrqlXGQl7rScZG7du0C4NVXX2VsbOyy7KnFYpGnn34agN27dy9PIYUQPU2CU4UQS+YMm2z8xQwAhVdqFF6uUznRoP++BNERi9G3p5l7qsL8c60HIqxVylP4XutO1cytUQbuaw6SOPm/53EXLu8YVmFzRvVzsrfGltz45uUDjv/VHHammUHVr4Yc/uS9Lbc1wpB9EzNsKJapGwbT0QQl28ZQik2lAhtLzc7cDZUSoaYx48SZj8Swg4C0W8fTdQZrFfoaVV5NS3ZVcX1J73XI3R5j5oky+f0dZlwUQoh1YP/+/fz0pz9lcnKS6elpNE1jYGCA4eFh7rnnHm655ZbVLqIQQgghhBBCCLHqvAkbDEX/h8+gdU4scV3bdaSIpuD5m7IgmVOFENeAldLZ+MsZDKd5z9F0Dd3WiA43A34XXqhKYKpYFpI59eqtp+snfStCiF4U32rTd3ecoBpSGXMxEzrpPVHcBR+vEKBbGkFNMfdsBb909RGroaeY/G6RLe/JERmQoceXshI+6TvzpG7PUx+LUh+LEr+xjN1/YeKWY4X0KpZQCCHWIR2q94fU90Dq2waZvVGq4y6VY72TaEmItejhhx+mv7+f2dlZ3vve9/K5z32OrVu3AjA9Pc2HP/xhZmdncRyHd7/73desXFJ3F2LtkhqiEGLJ/HKzkap0tMH0Dy8EX059v0Riu83Iw2n67o5TOeXSmPXbHaan+MULwaj99yfIv1ijdtq9bIY5Lx9w5usFRt+eXhSouhTKZ0nXa+fsAsOlCi+MDDBtpVAXTSE9EU9yx9Q4kbBZ3k3lIpvKrWceBoj5rWfFFmI9aoxHGHh9goX9VQlMFWKVKNX8W+t6oYzt/OAHP+Azn/kM3/zmN1lYWOi4bTab5ZFHHuGf/tN/ykMPPXRtCiiEEEIIIYQQQqwhSkHjUJzItpoEpnahnf1LVjxm+1tnbxRCiOU08IYEQUOxsL9C/93NyXYjuebQlvxLNWZ/0jpjshBXSrG82ayvRz3crQJI34oQovfFN9lEciaVikv/3XH8WkjlRAOlIDps4RUDYptMUjf2UZ/2KL5ap/BS/arO6S4ETHy7yMhbU2Rvi5J5vorn6BSGTKppA6XLb6umQ3RLjegWGaMkhBDXSpiFyj0BiR8ajLw1xfRjJYovy8RWYvn1yjjIS11pmROJBJ/97Gd55zvfyRNPPMHOnTvZvn07lmVx5MgRXNfFNE0+9alPsWHDhpUp9FlSdxeiN0hwqhBiSYbelCR1g4MKFOUjFxqpIgMmfXfFiW+28SsBZtzAjOs0ZlexsMuofNzl8KdmiG+x6b83zoafT+NXQ05/OY+XX5xFNb7FJvTVVc/Uu+t3nrxsmW5rbHt/Hwv7q8Senib403u5uKungc6TmzewNV9gtFgi4S0OPg3QqJkWp2Np5iJxaqaFdrb4Su/+xFndfHnG2EulhktdtwGoj6e6bmNUus++bpWW2Ji5hAdqo9b9WPq0taTTad0vFbq3hLIvY+VFW8o1KC5tBJbmdy974HR/vKhmlzbDvud1L9fXuanj+u1PVonM1mWwghBiXfqLv/gLPv7xj3Po0CEA1CUtSdrZySwuXj4/P8/nP/95Pv/5z7N7925+7/d+j9/4jd+4doUWQgghhBBCCCFWmTdhExRMkm/qPJBBwMHdKfrmXHaeKDOTcygn7dUukhBiHYuOWsQ3R5j4VoHyMRflK6yUgbvgUznpnp9MWQghrob0rQgh1ovyCZf03ihzT1c4M906MYJmQnxLhP574wy+IUl9yqcxc3VJJ8rHGriFgP57E3CqOUZt9NXmeLkX35ygkZBZoIQQQlx73hY4/aU8G34pw8B9SayEwfxzVVSLn73YZovQU9SnfJCmBiFaevvb384LL7zAn/7pn/K9732PU6dOoZRiZGSEBx98kI9+9KPcfvvtK3Z+qbsL0VskOFUI0VWkzyR1gwNA8VAdI6YT32pDCCNvT6FpGhPfLFA+7q5ySVdO5aRL5aSLnTUYeSTF8FuSzD9TBQ3MmE5ie4TYRpupH5QI3eWfEiV1g4NmQOFA+9nrQl3nWC7LsVwWPQyJFRVKg4Zugiaz0onrk1kPSU0FzBys9/7UvUIIcZHvfOc7/Ot//a/Zv3//+QYWTdMua3Rp1yhzbt2hQ4f40Ic+xJ/92Z/xiU98gre85S3X6BUIIYQQQgghhBCrx5+00ewQc3j99mssl9DUObgzza2vLDAyXeOwBKcKIVZQ3z1x6tMe5WPN+3N+v2SbEisnVBqhkn70q9Fr10/6VoQQ6031tEvghiS3R1CewisFDL8lhTNkUT7WYO6pCqGrKB9t4BUCNr87S+oGh5mZ8tWdWMH4V/Js+tUMZtxgcodNYj5A6RBYvfXbIIQQYn2pT/kUX66RuTlG7vY4dsZk4lvFRdsMvjFBek8UWPzsrwKojrnMPVXGXZCIVSEAdu/ezZ//+Z9f03NK3V2I3iTBqUKIrty8z/xzVaIjFrFN9tlAyeYPeNAImX+2sq4DUy/mLgRMfrfEyMMpRt+eBpoPMLUJj4lvFykfvbqsqa1EBkyyt8coHW4QVJdW4Ql1nbq5tMyUQqxn2tmvjJmSWRmFWE1KaageGKDQC2U85+GHH0bTNJRS5/97rsFl69at3HrrrfT399PX14dSivn5eWZmZnjhhRc4efLk+eOca5R5/vnneeSRR/D9q5slVwghhBBCCCGE6AXepI056Mq8jkug+yH7Di4QAuMjsdUujhBiHcvcEiU6ZHH6K/nVLooQYp2SvhUhxHpjOBqGrZO9LUb2tmZ9LfQUhYM1UrsdEttsKiddQk/hDFkAzD1dWZZz++WQ8a8W2PKeHIUhi9N7o8tyXCGEEOJqzTxewa+G9N+TwIhdPo460m+ilGLumSqRrIFmaihf4QxbxLfaxLfmCD1FUAk5+b8XlqVMZkJHt5Cg13WgV8ZBXqqXyix1dyF6kwSnCiG6UgHMPbW4YcpwNNC1JQdLrieNGZ8Tn5vHjOuEgWpmSl2py6DBxl9Mo9s65WPLH/gqxHrnxXQWNpmkaw5zTy5PA7sQQqw1kUiEd7zjHbz3ve/lgQceYGBgoOP209PTPPbYY/z1X/81jz76KPV6MzP7pbOJCSGEEEIIIYQQ69FUNYU27qBudZlyU0vaJ6T9wI2E3brt3lOtJ5A8UhtseywvbD3JXsxsP0Fo2OY8p6uZtvu0G4jSKlh338sFdAXP7OynoMXgkiSGs43W11AF7a+Z4QStlxut2yYc22t7rL5oteXykwvZtvuYduvze2HrMqug/WSghtm6g2i8lG67T8RsPQgm1+a1APhtPhvHG63bge51TrZcDrDBaB1k7NP6ugBUw2LL5T+o3tBy+UvF0bbHsqzW5wk6XGffa/36tVjra2lY7Tvu2rWAtSsXgFtvPawibFMuAL3N52xDrtByeWSg/eCoQ6eHWp+/TbkAVLvo+zbfs0ik/ffM01u/zni0/b0pYrR+PSmz3nJ59rYE/fcmmH++Sm28fVmEWE6SOfXq9fL1k74VIcR6EDQUMz8pozxF6CvSe6IUXqlRerVB/vka2dtjRIcsNAPsrIlXDggby3ffcvMBnq2RnvIo9RmtK5VCCCHEKigdbtB3dxwrbTD4xgQAXjmkdKhO+biLM2DhlwIWnl3cHmcmdfrvjhPbYmNnTdC5qvHhI29LEd9kX0gI5YbUTnv41YDCgZoEqwrRhdTdhegdEpwqhHhNgrqiffft9cGvrFylwIhqbPrVLNZF2R5H355m9qdlrIRBZvwMVhjSMEzqpsHJTJqqba9YeYToVYOHXbJjPuXx6yO7sxBrVa/MGNYLZbzYpk2b+N3f/V3e//73k0wml7zf4OAg73rXu3jXu95FqVTiL//yL/nEJz7B6dOnV7C0QgghhBBCCCHEGjFmovkaapsEPy1FuujhGxrTufhqF0UIsU4F8wb99yaYe7bC/NPtg7SFWG4SnHr1Xuv1m56e5uMf/zhf//rXOX78OGEYsmHDBt7ylrfwu7/7u+zcuXOZS3qB9K0IIdaVEPIvXJhBqPTqhcmT/ErIzGPl8/9vRFfgN0/B3EaL4aMu/ac8Xng4iTLkt1UIIcTq88shpVcbJHdHSO+5kN27787mpG0qVNQmLm8f9kshk98tMfhQkvSNDpreHCm/4R1pDFtn5okStTPdsy+aaZ3srTESWyO4xYDqyQaxLRGspE58m42maaT3Rjn2F7OEkreop/TKOMhL9VqZpe4uRO+R4FQhhFiDzLixKDD1nOytMbxyQF3TMQOfTL1CCMzFYkQ9n0y9jhWGjKVSNHCufcGFWEOsWsjogQYz2y0Kfz6z2sURQohl9d/+23/jAx/4AKZ5dVW6ZDLJb//2b/ORj3yEv/qrv1qm0gkhhBBCCCGEEGuXdtxE9QWQvr4n4FyqWtQgXfDIFmsspKLddxBCiCsQNjRqT6QIPcXCcxKYKsT14NChQzz44INMT09jWRbbt2/HsiyOHDnCZz7zGT73uc/x6KOP8sY3vnHZzy19K0KI61lQW5k6sOU3j1tL6+hm2DJ7atapXbbsYnO1WMf1+3KTXcvxsj/Ucf3pUqbrMfpjlY7rF/zukzZVg87JJeYbnV/rTKX7OTalCp3L4Fldj9HtPVnKBBTPLWzquH5ncrbzOeh+jgG73HH9iFPsegxH7zw5WTbZ+X0HuCkyflXnqIfd3xO9S2rGgtP5swMw4yY6ri963ceTdnvvh2KlrscoupGO64Mu55h0U13PcbqR7bg+bnZPZLFvoPO95cXpka7HqHS5puls589XId/9fY1YnQMhk1a96zFOe5mO66fLnT87AMec/o7rtzqdv/PdvicAthF0XN8f6XxPALhp/8XXo0547qsVgjdpU3s1jmroJO8tMPLbra9twY/in2rgfcNh979NoTkhwcHm/X3jL2XwoxrVEQ0/pqE0QAOlgR/XqA7D5q8FmGcDTn0bTv6mA/ri93rH52rotk58c4TSYYlOFeJiUncXojdJcKoQQqxBjVmfw5+aQTPBShugmjPyhF6zQa/4R5u440yzcvxqf47BcoWNpQsV/4gfcCDZvXIsxLqkFOlJn5GXXQITJvZEiMk4MyFWVag0tB6YfauXZkj/0Ic+tKzHM02T3/zN31zWYwohhBBCCCGEEGuNZgJjJuq27gPURNOBm9Lc95NZ7j04zf5tOcYHlj5LuRBCdKIU1H6QJpi2mPhmAdV5DKoQy04yp16913L9/vk//+dMT0/z+te/ns9//vNs3LgRgLm5OT70oQ/x5S9/md/8zd/k6NGjaC0CnK6G9K0IIcTy0m2N7GmPiRttJm/sHIwmhBBCrAZdP/cPiGx0iWxcWruwudnDTwaEJ87+vmkK6+EiwZEI+gmH1DFFM6fqYueWFLfoVAc0Spv0iwpxwcxPygw+kGTwjUlqUx5+sXOAulg7emUc5KV6qf1D6u5C9CYJThVCiDVM+eDONXtijZhOfIOFEdUZnFs4v82Ns/Pn/+1rGsdyWU5k0ugyubC4DsXmA7Y8W8OpKMo5gxN3xQit3qlUCSGEEEIIIYQQQgghVk58s43ma6ht3WfqF031mMmTNw5y78Fpbj0+z3hfvOWAKiGEuFLeEQfvuEPs4QWq/6lzJhghxPpQrVb5/ve/D8B//a//9XxgKkBfXx9/8Rd/QV9fH8ePH+fgwYPs2bNntYoqhBBiCaykgR5CNB9CqECX8TlCCCHWD/s9CwQvOuBqGK+roZtgbvE4UkhilkP0BqBAOxun6swp4qdDyiMGCzd1DtEpvtLAL4eM/nyare/JUXilRvmES2PaI5R5FYUQQvQgCU4VQoge4AyabPzlDJqhoZTC8z3KloVv6GgKihGbqUSChahDcHZQyGoMDYlUA1xHR0ljo1gFuZMem56vU83qHLozSjVrrHaRhBBiVdTrdU6dOkU+n0fTNNLpNJs2bSIaja520YQQQgghhBBCiFWV2OGg+gNIXT6rvWjNrvvsGSuiAcWYJYGpQohlEVZ0aj9OYe2sYW9vANKnI649pTRUD2UOWYuu9Pq5rksYNjMCbd++/bL12WyWXC7H3Nwcvn9tg9alb0UIIa5cY84n1CAz6aOFoKS6KIQQYh3RddBvrbdc5yd0SCxe1hiEwh6DIFzaD2J1zGP8qwVGHk6R2Rcjsy8GQOgpCq/UmH2iclXlF2I9krq7EGuXBKcKIUQPsFIGmqFROtog/2KVl//VHSht7XSUpSsN7vnuHJanOHhLgplRZ7WLJK4z/cdcNu1vMLvV4vQtEQmQFmKNUar5t9b1QhnbmZ6e5jOf+Qxf+MIXePnllwmCYNF6wzC46aab+PVf/3V+67d+i8HBwVUqqRBCCCGEEEIIsTo0s5k5VW1rrHZRekZ6weWO5+YBmEtGePoGaU8QQlw9paD6wxQYiugbiqtdHHEdC9EIkT7Fq3Gl1y+TybBp0ybGxsZ44okneOtb37po/aFDh5ibmyOTybBr167lLGpL0rcihBBXb26LRXwhwKorMhMukbJibotFNSeTjwghhBDd1MY9jv2POSIDJtFhCztnEN9ik70lhpUy8CshzpAJIdQmPTRTI7HVxojoBI0QNx9Qn/Sonm6mWzUTBkZUx6+ElI81IFzlF7gO9co4yEv1YpnPkbq7EL1BglOFEOIaOflH93Vcb4QBGbeOZ2nknShK0zDCkIFqhToKv15j4w5I7oiw6cgxACaScZ4fGYIWgapBdGlPkrq3hI3M1jUUp+Fz88k5BosXZgcqjJqYRtByewCWUCx9KWODllppWkJ/mFrCr+FSn8v9dPeCqXj3WV618hJ/osPuL9C3updJi3V4zy6SznafjanWsLpuk01Wl3S+1NuPtl+pQ2yDTfomh8S2CAv7qyx8qkJ8SUcWQoj147Of/Sy/8zu/Q7FYRLVpSfJ9n/379/Piiy/yiU98gv/0n/4T73//+69xSYUQQgghhBBCiNWT3OWgWxps82jX4tsuwGJHZKrtcU/Fci2XzzVat1RO15Jtj1VyIy2X39p3pu0+epvX8pPJLW33qdbtlst930APQ/pnGxgqZNvpMgA/vb2PUtrG5PK27cBvPeDY6tAObllXlgkt6bTvNMjXW8+I7nntB0K3G4jjxN2Wy6OR1ssBvKD1ecIOnQpWmz4Ux2jfYRMxWl+zeti6PT4ftn6PAebCWsvlx7z2E48+WWsdIPRUflvL5TPV9i317bLsuW6HfpE211M12lx/vf0bEEu0/jwFQfusFm0zA9bb7xO0+Z5NRlrfA4bTpbbH0tqcxoy3/8z4tTbX02/9Wjp9Z/rSrfuGUnb772bEbP2Zfe71FoMPJEhsjXDm6wUq/5ek1xLievNv/+2/5Td+4zf40Ic+xH/8j/+Rhx56CNM0efLJJ/noRz+Kpml8/OMfx3FWdkJs6VsRQojloXSIFUL2fufCM2P/SY/Dr49SHpDhyUIIIcRSNGZ8GjMX2lK2vDdLYmuzrVgFCjRwBpvtgIEb0pj3MRMG0RGL2KhN7vbL2+JUqGjM+eT31ygdlgkbRW+SursQvUNqf0IIsRqUQlcKU4VEfY/RWonhWgnj7INT1TQ5mBvA8X1ump9ZvCsX4i1HShWO5lxKTusBKyvF8gKylQY3n5jD8ZuBj8WswcG7EoSGzC4rVpaZ1MneEiOxM4IZ1XEXfCa+XaR8VCrQQqxVzRnD1v7vQy/OEPaZz3yGj3zkI+cbX7QumdWVUhQKBT74wQ/SaDT4rd/6rWtRTCGEEEIIIYQQYlUZUY3+e+MUX62TSvZgA8A1YLohNx4uMDpd4+K4vnLUoJRuH+gohBBLZRYUo+/KglKc+UaBysn2gd9CXAuh0gh7oO9iLTt3/YrFxVmQI5EIkUjrMQwf+MAHSCQS/PEf/zHvfve7F6275ZZbePTRR3nb2962MgU+S/pWhBBi+cxutxk8dmHSlJO3RYhUFdWMZE4VQgghXquTn1/ATDQn9PLLzTHaZlqHEPzS4mQ1dp9BfJONCsCrBAS1EDtnkt7jEOk3GX5LiqGHFLUpj/nnqtROLyWjkWinV8ZBXkrGRQohVpoEpwohxAqx+wzSN0UxYzq6rTE0M4YZBpgqxAxDLp4HuK6bHE9kmYom0I2QG+ZnuX164rJjPjmykULEIYycfUpUqmXW1JU0mK9yx5GZReU/NJpm4RYNJYGpYoXlbo+RuyNG0FCUDtUpHq7jzi0t66sQQqw3p06d4nd+53dQSp1vfGk3Q9g5F2/3O7/zOzzyyCNs2rRpxcsqhBBCCCGEEEKspr6746gQZh4vk0ICLS8Vq/jc+9NZdKBu6xzfmMC1dOq2wULWwSDsegwhhOjELCoGvx8S1ELGv5InqPfgiDghRFuX9jN87GMf4w/+4A9abquU4tixY8zNzWEYBtu2bcO2bY4cOcJLL73Epz/9ae6++25yudbZ6a+W9K0IIcTyaiR0XnokzujLDeJzAfNbpc4thBBCLIdzQann/7/Quo3WnQtw52qLltUnfIoH6qBD9pYoqRsdoiMWG9+RIfQU1TMutdMetSmPxrTf8rhCrCapuwvReyQ4VQghlpkZ14ltshl4IEFQDXEXfIJqSNGK4Os6vqbj6wa+puPpOq5uULIi54NMAxueHt5A0m3QV6+Rq9cYqFWpmBaFiLP4ZNc4MBWl2D5VPB+YOpWOcmBzllrEImcUO+4qxNXK3Rmj7844c89WWPhZFSV1YiF6hlJaT8wY1gtlvNh//s//mXq9jqZp5xtibrvtNvbt28fg4CCxWAylFLVajampKV588UX2799/viGmXq/zX/7Lf+Hf/bt/t8qvRAghhBBCCCGEWEEaJHc5LDxXJWxIMFQrN71SQAOevSnHTH90tYsjhFhPQkXykCL9oiKIwfjXChKYKtaMXum7WMvOXb+xsTFSqdT55e2ypgJ85CMf4dOf/jT3338/P/rRj9i6dSsA09PTfPjDH+bv//7vOXr0KM899xyGsfxZ96RvRQghllfibccAcN6RxvMUif9r+rJtyt/a2vEY1UbngNanJjZ3LceGdKHj+tlqvOsxig2n4/r/ffT2rscYTJY7rq96Vsf1dbfzeoDDs/0d14eh3nE9QKHSue5vmt0TBSSdRsf1826s43pfdS9n3Ox8PdJWreN6gM2RuY7rN1gLXY+x1cp3XL/b6vb56p6l8JR/ouP6jFHteoyT1kDH9X64lGerRMe1p8uZrkfo9jmu1Dp/509Fu09SUg86hz+k7HrXYww6pY7rPW9j12OooPPnuOF1LqcTd7ueI1/s/F0qVTvfuwCSsc7XY26h8/sOMBVLdlx/yBnuvL401PUc3e7VNb/7PfKAGum4PlxCHbDPqXRcr2ud2zVMs/vA1oEnO1/zjNX9O98IO1+Pi+/DZQA3IPqiRuS4TtyySWxp1tuUUhBC4CoWnquSf7H7vfV61qttCb1WZqm7C9F7JDhVCCGWkZ012PKeZuW4eKjO1A9LnJtQ/OQb9y39QJpGKeJQijicSGfRwxD90hk/lCJTb2AFARXbomZZqBUKVtWUwvYCtk2V6Cs1G5Ze2pzl5GCq4356oLBrIbFyQHLe58z27hVhIVrRdMjeFmP+Z1Xmn+5e8RZCiOvBt771rfP/vuWWW/jCF77Arl27Ou5z8OBBfv3Xf52XXnoJgG984xvSCCOEEEIIIYQQYn1TEHqK6KhFfN6GGR36Qug+BvK6kSp5hDoSmCqEWF5KMfBYiDMBpd0ahVs0gk9IJmaxdoRKW9LAZNHeueuXSqUWBae288ILL/CZz3wGy7L4/Oc/vyiDyeDgIJ/73OfYsWMH+/fv52/+5m943/vet+xllr4VIYRYGUZUJ7rBwBk2qU/KbPNCCCHEmmND7Q5F7Y4AXDBnwP33DSI5g9gGGzOq03d3XIJTxZogdXcheo8EpwohxDLSrWbny8L+KrNPLJ49J+41iPnNWbCqpkXVtJccTBrqOiFghCF9tSoD82U2Fi+fae1MMsGZVILZeAxoHlsPQ6wwxA4CHN9nNhZb2nmVIuk12FLKMzxWRgNCDVxDxw5C9p1aYMt0mdmUQz4eIVOtE6mF9J9xsdvMPl/Kmlw+P54Q3UWGLHRTo3yk86x7QghxPTl16tT5f3/yk5/s2gADcOONN/LJT36St771rSilOHny5EoWUQghhBBCCCGEWBOmf1Bi6M1JRt+Whi8D0RDuq8M2GTALUEhZZAoehCHoErUrhFge8WOK6BmYeVCntkECAIUQ8Pjjj6OUYvfu3YsCU89JpVLcfffdPProozzzzDMrEpwqfStCCLEyvFJApM8kvjkiwalCCCHEWmeDvwEWnq1iZXQS2yKEvmL8a/nVLpkQgNTdhehFEpwqhBAX0W2N9N4oiW02VsrAcHTyL1aZebzSfWegPu1TPt4ge0sMO2tSHXMJaiGJ7RF2zYwt2lYBNcOkblhoKAylMMIQNChGIownklRMm5jvkfBc+mpVBmuXZ4ysmQZRPwBgtFRmtHR50OrFnhkeZS4W63wdVMits5P016v4msbBDRk8U2c2FcUIQ/aMLTBYrJOseyTrHlBqe6xizqSYM5nZYFNPGCDPeuJKaZC5ySFohDTmpQFbiF6kzv6tdb1QxotVqxeeC0ZHR5e834YNG87/u1aT2e6EEEIIIYQQQqx/lZMuhZfr5F53tm28psP3Ytjvn0dzLrQIlP1Iy/2PM9j22KbWOgvg6UK65fJSuX120lis9eR8pyrZtvvoWusWDddv3w186fyVEyMOmYLHwz+ewLV0Dm9KMzaUOL8+nby8b+Ic2wxaLrf09tkRo6bXcnmf07ov5vDCQNtjZaKt2zZGssW2+xTrrd9nLzBaLlcdsuptzS60XJ4w20+0OFFtnVnOD9sHBscNt+XyeS/ecvnTtW1tj/Wi3vr610Or7T7PFLa2XN7utUSM1p8LgCDS+rVUS63fFwDavQdG68//5uH5todK2/WWyw9Nt/+eK7/Ne9Pm/AAErctcr9otlx+bGW5/LLv198l02veZWPHW19loU+ZHtr/S9lg3x063XD7ltb7PAfz4vjiZX89SON4g/6nOfZdCrBaltI73eNHdlV6/Uqn9uIILx2zep+r11vfrqyV9K0IIsQI0SGxtPs8XD63M/VsIIYQQK0CHTb+aBQ1O/0OexoyMz+2mV8ZBXqrXyix1dyF6jwSnCiGue5oBiR0R4lsixDZaaIZG5XiD0FfERm0C98oeySa+VSS5O0Jql0PfPXF0Q6Mx73MgM8isE0dTipjvEfNd4r5HJPAJNY1A0wg1HWUo+mtV7pxq31F7Kp1iPJ0k70RA09CUIlOrM1ipsmWhgKEuL3M+EuFUKsNctP3AF4CY57J3foqk5/J83zCmCtm0kCddvdCJXbMMjgyn0BUk6h7Zch3f0ShlTWY22hRz5uWjW4R4LXQYfXua2AaLqe+Xeq+GJIQQK2hgYIDTp5sDw/72b/+W3//931/Sfl/4whcWHUMIIYQQQgghhFjvNBPSNzks7K8y8K98VMlAsxREpMERYGJDHKcR0j/pEq977Du2QAiMXxSgKoQQS6UUDD6QQPmK2SeWNgGwEFdC0yG22aY67qE8+S3vJecynbz66quMjY1dlj21WCzy9NNPA7B79+4VKYP0rQghOtFMUCHQfq4d0YKVak70c/rLebxC+4lqhBBCCLG2DL0xiRHRmf5xSQJTxZoidXcheo8Epwohrmvpmxz67o5jODq1CY/8izUKL9dBKTb/Wo7KqQbzz7SfEbwlBaVDDfxiSHSDRaTfxEzobC/Ns6FSYD4So2xFmI/EOBO30JRia3mBgXoFKwzQlcJQF1o5a4ZJNGg+9D8/MMRMNI4fXRz4qTSNhViUhViUQwN9AOje0oNDo57LaLVE3HPpr1dpGCbPDGzAMwzeMNFMdbp/S45Q1/B1nZl0lFBffPzcUPtZyIV4rdJ7HGIbLc58rUD1dOvZ3IUQa1+vzD7eC2W82J133snp06dRSvGxj32Mo0eP8u53v5u9e/cyODhINBpFKUWtVmN6epoDBw7whS98gf/5P/8n2tlJJO64445VfhVCCCGEEEIIIcTKS93goFsa+f01hrcASFvjpY5vT3Jw2MJ0fd70s0luObaAZ+pM98VWu2hCiB7ilwyKP84S32Iz8Y0i4RVOAiyub0Zcxxk0ieRMzLhOY9ZHMzUMR8dwNDRDQ4WK6KiNnTYoH2tQm/SIjlpMfrsIVziOVimNsMf6BdaaK+1Xefjhh+nv72d2dpb3vve9fO5zn2Pr1q0ATE9P8+EPf5jZ2Vkcx+Hd7373CpRY+laEEBDdYDFwXwK3EDD1vSIqgEi/SXqPQ2qPQ9hQnPlmgfqkBGgsVXTUAsBdkGsmhBBC9IwaJHdF8IoBhZck8/lS9co4yEv1Wpml7i5E75HgVCHE9UmDgdcnyOyLUnilxsLzNbxCQKTPJLHdJnNzDJRacqbG439y3/l/O57H66YnSHourm5Qsm0WLItGRCfZcNlQLRApN4NPv3fDZjLVOjtK85zOJKhZUfSKgdI0rNAnFnj0uxdmFN66UGBeJdHr3R8SQ3tpnb27Pv5TNv1qFjRwFwIWTjbIv1Qj55/Byhjw3hwAeTNGOWI3d6rDpSXIH84t6XyG273sur+Eh2B9SacjcLpfB2V0P05oLu16KmsJ0yf63QuvEktrsE1muwdPm3r3Mm3NzC/pfNvic123eX5hY9dtklZjSefTLQ0VQl1mZRJCiMv82q/9Gl/60pfQNI0wDPnLv/xL/vIv/7LrfupshnVN03jve9+70sUUQgghhBBCCCFWlwaZW6KUjzXwyyFLbly+Tvm2yQ9fN8ybnpvgdYfn+G4qstpFEkL0AOVrFB7LUj0UR7dDJr5epHLKXe1iiR4S6TfZ+MsZdEvDr4UEtZD0TVFCNySoK4J6iAqaWVPrUx6V4w2yt8VIbG/+TuVujzH1TOGKMt0pmpl+xWt3pZcvkUjw2c9+lne+85088cQT7Ny5k+3bt2NZFkeOHMF1XUzT5FOf+hQbNmxYkTJL34oQ64eZ1LGSBo1Zn9BTHW9KdtYgvtUmtskmOmxRn/ZJ7ohQG3eagak3RQGYf65Kao9D5uYYk5MySf9SDLyhOf6ufKJBUJMfViGEEKJXJB7TQYPJ78kzj1h7pO4uRO+R4FQhxHVHM2DozSkS22ymflii+Epzxpfs7TH67mzOAF4d95h5rNS10czOGRiOznC5xHClRNJ1qVoWMd/jmaFR5p0onJ2Bw0+c7QlTihum5tkxW+DBV8coxJodZoGuM55JEuIsLq9SDDZK7C1N4ev6+eNdrf5ahe3FeVLvzeGXQ0793QJho/l6dVtj4KE4qd0OfiVg/w0jFwJThbhG9IYiOmKhGxpGRDv/+RRC9CDFlY9QWA29UMaLvO997+PP/uzPeOqpp9A07XzjSjfnZge7++67ec973rOSRRRCCCGEEEIIIVZdfIuNnTaZ/G5ptYvSM1zb5Ge7+rjj1TnufmWGV4YSq10kIcQaphQsfKePximH1L15YnvLHPqPTvcdhbhIak8zy/nxz83hl872q2t0bLc3k81AI3feJ/u6GKRC+M41Ka64Cm9/+9t54YUX+NM//VO+973vcerUKZRSjIyM8OCDD/LRj36U22+/fcXOL30rQqwPZkJn8zuzGNHm5EOhpygfa1Addykfa6BbGokdEWKjNs6IhRnVCQNFfcJj/rkqhZdqbP9gP4MPJgnqITOPlym+Wif0FLnbYxcCVwdNgrpi4WdVGbPSxrmsqVbCQNNBXcFEEUIIIYRYHfoCWFMajRlfssVfqV4ZB3mpHiuz1N2F6D0SnCqEuG4YUQ1nwKLv7jhWxmDiW0UqJ1yioxa5O2JERy3mn60y/2x1SQ9hzpDZzDgKbJydomzZhJpGX73G6USK+Wis9Y6axvH+DFXbwvF8ts8WqJkGw/kSm+eLTEcSnIpmKVnNTlulaUw5KaYiyeW5EEqxszDHtnKeuUiU6cfKlI81FgWmbvylDGZCZ+aJCsVXakx+ctfynFuIpVKK7JMKe8hi8jtFvKK0XgshRCtf+cpXeOMb38jBgwfPN650o5Riz549fPnLX17h0gkhhBBCCCGEEKsvc0uU2qRHY1oG2VwJ7exgD7VME2YKIdav6itx6sdiZN8+Q3RbbbWLI1aIZoJawZ/S6phLZm+Ubf+4j/Gv5qme9rr22U9+u3g+gDW+1SZzz5VNthyioSG/c1cjfI3Xb/fu3fz5n//5Mpdm6aRvRYjepRkQ22TTd3ec0FNM/aCAZoCdMem7O07qBofwAYXyFZqtUZ/yKByoUTvjUZ/2zv+WbXlfc7yXXwkY+2Iev3L5mJTBBy+M04qNWox9MX8tXmLPGfvbBaKjFhvekSG+1aZ8zF3tIgkhhBCiA3MMEo8bAEx8S7KmirVL6u5C9BYJThVCXBf6742Tve1CsGj+xRpmTGfTuzM4/RaNWZ/xrxaojXtLPmZj1ieohRhRncOZHMczOQD0MCTU9Y77uqbBWC4FwHQqzj3HzjCZjpOPOWyfLHBXY4wFK8qpaJY5O9bMltriwSrhNWgYBp6+tNu5EYbsm59ioF7hULqPU4kMW185dX69psPoz6cxEzqn/yGPuxAs9XIIsTxChTMOyYOKyCyc+UGJyglpuBZCiHYGBgZ49tln+Tf/5t/w6U9/mlKpcxaYZDLJP/tn/4w//MM/JBqNXqNSCiGEEEIIIYQQ197ok0n0OY3oV2zqD7mM/l5zYLGpt687V/xIy+UHStm2+7hB6/b5bOzKA7TKlTaZBjPt93GM1v0autY+oqdRtVqvUBf6ITZNVwD46Y2DmLX20Uh2stpyuaG3n3DQDY2Wy+fq8ZbLF4ptJgMFTKN1P8ZIvP3AqorbOngpDFtfs5jdvu/ohuRUy+WNsH2/TdG78oySnmrd77TFmW+5vBq2/iwD/Ky8+YrPX/Vbf2bKjdbnSTn1tsey27xnpt2+TypUrQcfqaD18vHZTNtjzUdb9zm0/V4AtDmP5rfvD1TOFfaxRTps73Xud2xlNNf6O+CYrT/PO5yZtsfaYC20XP43e4bRHY2t781SOVnn8KcApM2xV+14usW9qaIx+39XxLdFiG9q3jtnnyyz8PzyByFXTrjMPV2h7674ooxrycf62+6zIzF70f+51IsV+PyyF02sQ9K3IkRv0kzY9M4skZxJY87nzNcLF41rcqlPe2x4RwaVg2AAanf6KEfDwCaBTeLslgemhtj1zeZz9NO/OkD47sHz59h6sALH67iOxvQum40vNgCYfHuSyv+RO79d/G3HrsVL7gkqhOppD78aYudMaBGcGrM6j/vR4p1npJivtK8TnuO1qWee06mOfM6udPtnYoADwXDXY0zkUx3Xb861frY+x+pQlz5nKt85wYVhdD/Ghmyh4/pSm7rexRJd3tfT5UzH9TdkprueY8Du/Bt9rNr+WfEcv8tnoy9V7nqM+aBzPb5gdH4+drTuYzsrYed6Xyns/gxyqNr5M1oJuk/mUmx0fq1zS/g+Wm3q/ecMZDpf86PzfV3P4fud31fT7F4nf76xoeP6OzeNdT3GsULnso4mOn/XlsJXnV/r8flcx/UA6Q7tNACxwe7jprcmW7dBnbMr2rqN7JwbYpNdz/HFidd1XD9Tad12eDEv6Hy9OrXznZNNdf5O14LOMzdlrO515qjR+R661ZntuB5g2uv8m3P4rsai/x/9hRTRERvdbGahnP5xGb8sSWPE2iV1dyF6iwSnCiGuC7Upj3NDR0JPkd7ngGo2jp3+Sv6KglLPMeM6pWMNMnujbCoVOJ7OgqZ1DUy9VCEa4cBoP7eOzzAXj/JkbgsDbpnN1QVuLZ6hbNicimWZiiRQWvPYmgrZXZ5lY63AdCTOi+nRrufJ1avctDCNFQY83zfCbPSSipoGubviRIctxr64cL4BV7M04g0XXcGW+QKb8yWe2TTEdLJNRU8pds/Ns2M+zwvDg5xJLVPGV7GuGWVF/KgifgyMOjT6YOZNGpVPSWCqEOuC0lBtBpCtKb1Qxhai0Sif+MQn+MM//EO+8Y1v8PTTT3P8+HEKhQJKKTKZDNu2beOuu+7ibW97G7FY984CIYQQQgghhBBiPbAOmISJkGCzDLK5EnoYki27+IZGaF55UJwQ4voxcH8CNJj9SfcB3WLt0h0Nxg2oaVDX0BZ0mDXQ5g0GH1y8baR/BYcZnW2ij2+2Se6KYGdN7C82l/spqG+B2jagzVhjVb+y3yzVK30Xa1gvXz/pWxGi92iahp0xKJ9oMPGNyyfiqJ72yH9gCeO/dI3n708DEBoX7mMjJ2psON4M3jn4c3GS0xcCT0YONhg67BIaUEsZFGM6QVXqmRcLvRDd7N3fBSGEEGI90h2I9Fmkb3SIb4rgVwLy++vMP1c9n1FeXKFebUvoxTIjdXcheokEpwoh1gXNALvPxM4YOIMWzoCJmTJQvmLmiTKV4y6zT5aJb4kw/rU8mq6hQvXaH6412PKeHJqh0Zj3eXbf5paZTZdqPJukr1Jj75lZns7EmIkkmbETZLw6m2sL3FSa4sbSFA3dpGGYmGFIImgG7RXMzrN7mGHArsIcGytF5iJRXs5uoG4unv1Z02HozUmSOx3cvE992ic6apG6wSF1g8POo6cXbV+x288evW9qhk3FUtfthAAwKorsUwpnEkILqluhskPDy/ZmRUgIIVZTLBbjne98J+985ztXuyhCCCGEEEIIIcSq0ypgHNdx7/RB4iuvyK6xAlagGOvvno1ACHH9yt4WJbXbYfK7RYJ690xUYu2xMgZ9d8ZI7nTgG81lylCQDqE/gPlmFKhfCSgerFOf9qmOr9zEsuXjDeyMQWJHhKAW4i4EBDtMUGDNQeopSLwI5X1Q2375/nrsyoKEQqWh9ejgzLWiXWbrXiJ9K0L0jtBTzD1dpf+eOMNvTTHzRJmg8toCRCvpy4fNDpxp/sYdeihGaGoURi0OPGyQmvaJlEO0AKy6ov+kh7/RovRq47JjXM+8fEB01ELTWZQFXQghhBCrI3VDhMGHkmhnx7YHbsjxv+qcAVeItUrq7kKsfRKcKoToTTqYUZ1Iv0l8m01iewTDbo4ucRd83IWA+qxPbIPF0ENJjo/NsfB8jYXnawAorrKDVMHEN4v03RsnkjO5/8wpXN3ANQwahknDMGiYBvlIlLloDLWEwNUDo/0MFSvsK00yb10IOK0YFm4khaFC6rpJLPQIdA07NLBVgBN65BoVqqZNXTfPB8kaYchotcjW0gJmGPJyZoDxeKplEG329rOdjoCdMdn1kYHLtilFLI7n0pxJJ9pmh81Va+cDU7+/bQt1S35mRHtGWdH3mEJ3Yf4ejdpmUDKLohDrklLNv7WuF8oohBBCCCGEEEKIpTEPmmCCvytY7aL0nEBvttOODUlwqhDiciqEl3+4nf57E8w9U6F0WAIzekl8s40R14lvsolvtfErIdM/KtH/nzSIqwujiELQXrUB8Eoh6b1RcnfoFF6uMf2jlcmU684FTH6ntGhZ8o8i5/9tFJrBqamnIH4AvDsdzF11tDaZVIUQQqwOzYTEtgjOkIWZ0Jn7aQV3oXW9LHdXjKCmKByogWru2y7RgG5rRIebP1TJHRFiGy2O/Y+5ZSv3wduTaEphZi6U1YvpzG21z///xp/Vz5ZFZkC6VP6lGqNvS7P5PVmmf1SmNr6ELLZCCCGEWDGpPc1x6DOPlwnckPJRab9ZDr0yDvJSvVhmIURvkaghIURPiG+1Sd3gYKUNzKiOEb3QyOcWAvL7a1ROuEQGTAZen8DOXri9lQ7XX3uG1A4qp1wqp1ysjEH5n99IJPBxfJ+E55JpeBj1kO2FPFXT4vnBYfJcnkXUCEKy1TqViEXNtjg8mGPzTIl+t3LZtk7go6M4F7o3EUngagbDjTKbagUACqbDK6lBhuslNtQKGCpkOprgcLrvsmyp59hZg+ytrdPYN+Z8Ci/X+Nlv3UxgtG9Y1ZRic77I3ulZAJ7cNCqBqaIlqxySORGQmg6x5yGwYfbNkilVCCGupUqlwt/93d+d//8PfOADq1gaIYQQQgghhBBi+WkmWIeMZmCq3X17sdjQQg0FlKNy8YQQiwW+xnNf3cPU0T6mHytROFBf7SKJJbL7DAZfnyA62ry3N2Z9Zn5cpniwjgqhP+0s3kEDdbNL/dsakT4T3Wr25VVXMdAkSEPhDVDZB/EXwf1hEu9nMazbK5g7r3yQba8OKF1LrqfrJ30rQrShA2ezZNo5g8EHk0RyBpqlEdQVZlTHKwTM/mTxOChNh42/ksEZbI5lGrg/jnZ2khyvFJyfAMOM61hJg9qkh50ziG+JUD7eoDbpUR1b3mzertMcF2XSfoKj4rBJ5ozHwP1xDFtj/rnqspbhWtMsDSvVvMZWysAZslC+YvqHpSvOflod8zj5hQWGHkww8kiK45+dW5HxekIIIYToLAyh/lwCZ8gkqIbkX6ytdpGEuGak7i7E6pHIISFETxj+uRS6qbHwYpWgGhJUFX4txJ33CV2FM2jiDJlk9kXxKyHzz1QI6oqgFtKYXdmWLi8fcCaZItWoc9v0BE7QbKRsaDonk2ly9Rp3TJ3hx8kNACQbLom6y0CpRq5aw1Dg6xo/2rmJE/1pJoNcy/PEfJfhRpGC6RAJfXaXZymZNlORBHYYUDUsNtUK3Dt/Cl/TGY+nOJVItw1KBdDDkOG3ps53JgKc+Pw8yleEbvMP6BiYOliqcPvYFOe2ODDQz0I02nZ7cf2yyiHbvtvsGG6MQnm3Rm2TZEsVQohrbXZ2lg9+8INoZ7OpSyOMEEIIIYQQQoj1JnWjAx54eyRr6pXYOFVi53iRmBswlXXwTckGJIRY7MD3djJzPMddv3KA//Vfh1a7OGIJnCGT1I0Oqd0O7kLA5PeLlF5tQLegQg3U3Q38L1pEhy1CT1F8tU752OpnWvEzUHgAco153GfiuD9I4f4kJNxQ6rqvEK+V9K0IcUFiR4TUDQ7OoInh6ISBQvkKI9KsP+RfqrHwQpXQU+z4YD/ZW2PM/qSCbmuEvgIFuTtjOIMWtTMuC/trzSQFClSgiG+xGX5TiuE3XThn/kCN0uHmpBheMSD/wuoEWRRHTA68LcHGj03Rd3ccI6oz+1QF5V2baP3MLVGSuyOc/mL+ioNHzzHjOtnXxUhsj2DGLtT5Qjc8nxG2cLBOfeLKJ6Tw8gFTPyix5X05Rt6aonzCpTbh8RqLKoQQQogr5Bd0il8cQNUNwkbI2Jfzq10kIa4pqbsLsXokOFUI0RPmn63Sd2eMhWerBPULDXrJXREGH0qiGxoqVNQmPWZ/UqExc22nXtv2ez9h9OfTOJttyscbNGZ9crfH2FJqZjT1qyEPHD6NGYboQIDGQiTK4VQ/ulLsLs6RmfOYc2z8eOsGyyIWRfoA0AIoxmx2FubJeVV0YLhRZjyWZNaJMR+NsfH/9RTDXcrdd0+cyOuaWVOP7oqz9WgF/fc2MrHRYXSshkKjHtXpr1ao2iY12yTUzzZMKsWWuRL7zsydP96TG0bJR6NonVoVlxCHGDjL12gbRLofS1lLON8S4yfNZPfGWd3o3uy6uX9hSefbm5nous23jt/YdZvKgzNLOl92/4UZsJUCVdcJazph3Tj7X52BT8xiRDUMR8dwdHRLoz7tERu1CSyNsb9bOB/4LIS4PiilodTaD0TvhTIuJ6XU+YYYIYQQQgghhBBivdB0yN4WI9gWopLSDrlU6VKDm48voDSYyEX52c6+1S6SEGKNOfXiEKf2j3DrI4cY2jEPSHDqWpe9PUb/3fGzGeiq5PdXUVc4b0NkwKR8vMHEt4ustcgSvS/AeaRIuGDgH3KovnRlGb97pe9iLbser5/0rYj1Snc0kjsiJLZHcIYs0KByvMHUD8vnAy81Ezb8QoboiEV1vBlU6pcDjKhOYouNM2RRm/CY+XH5/HGLr9ZJ7XbY8U/70Y3md2f6sRK52+MAnPlmkbCxuN5WOtxg/mdVnAGLoB4y/JYUmb1RMnubE+Xr9up+B5WhMf9MldBV9N0dJ7EjwtxPKxRfrXef/OE10gzI3R4jd0fzuu38PwZYeL7K7JOVLnsuZucMht+cItJv4hYClFJMfKNIfcojqCv674uTvTW2KMnBlfKKIVPfK5G9NcbgAwk0XaP+HZ/aoEbgQHVUx0/IfVQIIYRYTv6cSe2FBO6rUVDg3FbixY/Uu+8orlivtiX0YpmvhtTdhbj2JDhVCNETiq/UyN4WZeOvZKiccKme8QhqzQbI4qt15p+t4hWDFWvkW4qpH5TIvS5GcleExLbIonVzPy0TfXiAwNSYjCYINZ2MW2NLOU808CmbNguRK8s2WohEeXawmY0VpdhULnBjfhY00DRAp2sHYX3KoxHRmRx1qMUMQl1j84kqm09UL9nyQsNxw9TRFVjBhYPPJBz2DwzjGcYVvQaxttk5g+iwhRHTMaLNQNO5LyUJa8bZoNTW73dmX0hQP/tXa2YwTu12QIPxrxUkMFUIIYQQQgghhBBCCLFikjc4mHGdXfcdxUm5l63Xtfbtky9XR1suDzsM3Kj4rQNh2p0n5Vx5xjlbbz8hZ9F1Wi+fSbQ/YHD563FKdTTg8MYURzalzy5tvgbfa9+lPD2Xarnc6DBJYxC0zsiq/DbLvfYZXAt2676VSqN9gFK1Gmm53LJaR2zVXavtsb5R29NyeRi2/8w4dutJLm2zfcRYPWhdhqjR+li1NtsDHCkOtFy+UG3fT6W1+TzH27yWIGz/njX8Np+nDt/Ndp8N3Wi9j2G2//yViq1fp6p1GDphtT6eanN+AK3NPtH45fclAL/NawSIRlpf51z80v68CzbE8y2XD9jllssjevvJVz+5cw+RfpONv5Kh9GqNv/1UDsi13V6svn1/Z+MfdQiORbBurxC7s0pGgw0dvpu61vr3afyYQfbWKJl9UQoHaouCW9OP9RE7ALGXNcIINLZC9QZF/ufmWh7rtSg9MNt23fPn/xUAFXyuLMNbrw4oXUvk+gnR+6KjFht/KQOAChXVMZe5pytoOvTfkwBNI6gGxDZHsNMXxoiMf6Ww6Dj5F2poJqhLqi5zT1dI7XbOB6YCaOaFf6ug9fOUOxfgzjV/dI7+91nMpI5h64ReiFdcG7Ml5PfXKB9r0HdPnKE3JYlvtZn4ZvG1H1CHoYeSpHY7hH4zG23llItfCUnd6GDYGnNPV7DSBqndDmZCJ3tblOLB+qJEDwBoEOkzifQZ6BEd3dbwKyGDb0gQuIrpx0oUDiwOWDHjejPL7VMVqqdaP7O2YyZ0NB38mkJ5itLhBqXDDYyYzvYP9OHMKZy5s2X8Wcj8Pp38XhljJoQQQiyHyk+S1J9PABqaE5B4ZB571APatw8KIYQQy02CU4UQPSGoK858rUB6b5TEzgjZ22Ln19XOeHiFK5zidQUE1ZCZx8vMPF5uBoYqzgfLZm6NkvKaHXpZt9m4VzJtpp04806MuUgMdTUzdGgaY4k0N+Zn2VApsaFSYmq3Q/Fg55lvvEJAw9HZcvzyzut6RMezdfRQEa9cuL4Rf3Ej74GRHCf6UxhtAhVFbzETOul90WZDdkxHBQq/FhLUQoK6woj7WH0e/ryFO958zzUzxEj5+PM2GCFhIyR01eIsxuf6utdGH4EQ4lpTWvNvreuFMl7kRz/60Wvab3JycplLIoQQQgghhBBCrBFaM2tq+ZiL03dlg2mvd7lKsz8h0HurfUQIsfL0iMbIwynceb/ZDyrWtPg2m8a302CFRN5UxNx95ZMiXGzumQqaCf33xcndHqM+7ROezaDnfF3DnIfabtBCiL7SDFRN/mqG6rjH3FNXls3tqsn8uGIJpG9FXI/8r2whe8JbNBeIFkCkFJI+c2E80MQ7dcJoFIhilhR8VZHcESFwoLjRoN5QpMZCiht1wu9uuuw8EaPFpDqBYvakorJJIxIEZH4KA/ddmEgn9r3FE6f4qvPYoxNzfR3Xz8y2n9jnnEys1nF9y9dxCfMHI+f/PQ+4R0L6ieB8bZggruE9NNH1GJfSTa058fvZf09viTDo6HiWxsyozcRWh02bIqTONOu6yZ0OyZ3gvaePE/sujKMbPNVgx4sXjQOzFHgX6nnWPysw/P+AYazF17uiweeh7zcscv9fB87O9/PczMbLy+orIpWQ7BmP3GkPp3ZhMFCgc368mX3R5PWeoxGaECkrci+FnNnlnM2+0F2nSVnOme8w2Q5ArcMERuc8H7SesOqcTLR7BrpCpXM5Ts1nO67vT3Z/foq0mbzmnKVMHlH1OgcsLZRiHdcDVDtM5AQQ6TABE8DLC0Ndz7El2fl9y9ndPxuNsPMw+e8Xbux6jNFIoeP6Yvxwx/VxvfszeSXsfM2PN1pPNLWoHH7rybjOmal1mMjsrJzT+TNo6N0H/3Wa5A0gbnVus8t3+R4BWFbne7Xrdg+P8KqdP18H5wa7HqPb9y1hdX7vZ+vd35PThXTH9Y1G99d6fLK/4/qhvs6fcYCS1/nzNe93fi1Jo/s99Mb0VMf1MbPzPRTg1dnO75vXZtK8i3W7PyXtzu/rhmi+6zl2ONMd1++NnO56jD+66Xayd8TouzOGXwk5/ZU8fiGE/wgSmLqCemUc5KV6rMxSdxei90hwqhCiZ9SnferTJQCstIEzZIIGleNrcIDJRXVwM6HTd0eMsXiKI6k+DKUI0ZYny6hS9NWrhJpO2VpcWW7ML66AW2kDO22gFKRudHDzPn13xCkHilf2pVjIWbgRvWXDX2UiRsz1STQ84g2PQNeo2hbz8Qih3r2yJtY+w9HI3RUnvcch9BTFg3Uqp1zqUx7KByOmE99k0feQSe3VOKqhY/a7ZN8+i5FsNiaGNZ3qwThj/9UmutFi5JEUJ/7nfPMEEpQqhBDL7qGHHkJ7jZNbaJqGUjJSRwghhBBCCCHE+pLc2czmM/mtq8hWc53aOF/GMzSOj3QfFCeEuH4oBcNvSaLbGqe/XFyUNVOsLbqjkdkbJXdnDGN7g8jPFZca79FZCLNPVCgcqJPcHSGSM9Ht5oGDBJRfp/DOxueUXwfRw5AILCKD5rUPTr1CodLQemxw5lrTLfBgLZK+FXE90QyIb40QfaFB5nTzR9y3AQ1CXcOLaUzutahlDZxsgzB64bvhJ2D65zTQwM1BJWwGOEzce4WFMDTK25vHDSMw/yYw85D7EZRvWoYXuUZUtmj0PQuJ44rCviu/xzhDJum9UVSg0AyNsX/IM/apbZzeEaUeb47l0gNFbqo5Rs6zNE7cFCU95zNwxmVhyGJwrEF+wDofmJrvN8m+Y7aZ0Tavo/42BYDa76Dd2SJAKK4I766jPR1Bf8VGJUOIKm7wL0xOYroKuxZinH0m9E2YGY4wNxghNMByFVYjxHZDQl2jFjeoxg2ifS6h1bwumq8wXbXkwFQhhBBCtJbcFaHvzhhBNeTEX8+DtNmIdUTq7kL0HglOFUL0JK8QrIlsqZ1YaYPkzgjJnRGChuJIqg9fN+g+v97SpdwGt882Z9ubisZ5vn+Y22YnqRomjekLZ0rvdRi4P4FmXPyg1pzJ6IU7sniRLgGmmkY1YlGNyGw6640WKjaOVdnyvhwAs09WKLxcQ4UQHbbI3REnvskm0m+ilCIou8RuLhHZUscacNEu+ujo0ZDE60rMPumQ2uMw9MYkmg5KAlOFuO4p1fxb63qhjK28lsaU19p4I4QQQgghhBBCrGW522NUTjZozC1nS3zvMv2QqNvMqGJ7IXPpizJPhCHJukei7hF3PYxQ4Vo6yISUQoiLFI8liW+OMP7VPH5ZOnzWothGi8EHk1gpAxUq5p+tsumfVZc93sMrBMw/vTgzVfr/uTh7nYpAdR/oX3VxBmU4kljbpG9FrHsa5O6Mk3tdDE5fGF+V32Qyeevlmc+syCWfb03DvThJ3zI+BvgZmP6l5TveWqCsZlbQxPGQ+qBG57yWTbqtkbs9RnyLjZ01cQs+sz+tUDxUJ2w0gzfriQuJD0JD45k3Z0nNexT6LJQFpaxJrBhw01PNANL+iQtnrsd0tLM/x1omRO1twIEIPO8QPu+g3VWDm324+K2/2UNt8VFTBtq8AS40avr57OSVjIbn6HiOhhvVqWQMKkH3jKQR60K5lKnhmXI/FUIIIa5W9tYoKCQw9RrrlXGQl+rFMoPU3YXoJdIaLIQQK8BM6mx+VwalmhlfZ58s4994ocHQ8T0G6hX6GlU0pdifGyG4kgEfZzOm7p2fPr9oqFZhqNacfbZmXggitVI6gw8kF+8eNjNjFg/V8R4efI2vUvQ0peifabDzcBmnHlA83KB4qE6k32T4LSmiGywMW8evhlTHXOafr1Idc3n907Wuh9ZMSO9xmllXZZyCEEKsOGlQEUIIIYQQQgghILapOaB36gel1S7Kihv4GliFs+ODNRc0UGf/0EHpsMU9iRmqReOMQ625j352PMfF6xRwaHP6Gr0CIUSvqE1HCWoh1dNLCbEQ11rmlij998apjnvM/rRCfdLDr4RsXuUmYytlUJtY+5+ZXh1Qupb08vWTvhWx3iRviJDeksAZMjGjzfFH5yaw9xyNM7fZxOZD5rfLcNGVMneXTualkJHvBdR+NUP5WIPysQZ+6fKBM7qjsfGXMphxnfLRBjOPl5f0vBVYGgtDzWBQDUUjbnB8X4ybn7hQD3YjGs++JQ2axuhF+2q31VEHLgQmq6ejEK/Bjksmd0opSPmos+kXTswM0JEEwwghhBCrwkqbeMUAJfM0inVM6u5C9A5pbRBCiBUQ6TfRbZ3Zn5apjnnots5opUjcd8k1qqQ8d/H2gU9Vbz2TnKYUdhDQMAzOTXG7rbTAzsL8ZdvWDZMX+oYp2hG2cgqAoKEovFJDt3VCNyS9J0rhlTqVEy7REYsbDhSZ77OZGXaW+SqItWL0dJVE2Wd6yCHUNdJ5l4GZBpl8s2FbAakbHTL7oqhQUZ/0WPhZjeop94ozDAQlg52/1WyYnvhOcblfihBCiBZkhjAhhBBCCCGEEAKcAZOgFlKfWv+jccKz3Ql+GnwTtODsXwh6CIQQGDqzqQglx0JXCisIyZYbaEDDNGiYBlXbpBKxKDsWpaiNSshsg0KIC8rjMWafz1E+0VjtooiLGDGdzC1R4pttIjmT+Z9VmXuqcj6j2WrSaxB9VcNK6cw8UV7t4nTVDE6VtvKr0cvBqdK3ItabwTcksW2b+Z9V8UsBaBDbYJPYHsGqKxopndKoDBVdSdXNOtVNGrFxReyvQvruijNwX4KZJ8rk91+YCN5M6ow+ksZwdMa+mMcrXF10ZzljcOCeBJW0gVMJqSUvjC+7mBZV8IYq6sexCwujPXwjF0IIIa5zmg6hK7/lYn2TursQvUNaHIQQ4rXQILbBws6ZaKaGl/cpH7sQcFo95VI6Uqf/ngTcc3Zhfvqyw4zHUhxLZqlflOn0nJjnsm92mlSjjg5MxeK8MDgCQM2wWLAdJuJJ4p7LUK2MEwS8kh2gGFkcZBo2FNM/LBMZMNn8riwAmb1RMnujZwtRJ17yJTh1Hdv1agkjhI2nL8962rB1ZgciWP97Bq8YUJ/0rqrCGlYvZAjO7IvSmPXx8jJNohDXPcWaGBjTVS+U8SKpVIpisYimaXzyk5/k1ltvXdJ+ExMT/KN/9I9WuHRCCCGEEEIIIcS1sedZE6Ug+GIELeGz59lm9+e8n2i5fTmItFwOkDYvb0MFyKaqbfc5XBlsuXy2Hm+5fLraulwAYZsAmZcnhxf9v7PT5/Uzs1SVxY83bWy5j+a0b5dVdaP1ikbr8+sJt+VygGSi9TUbSbbPYDtXi7VcPjOfarncjLU/v+/rLZfXiu37PDSjdRBuvXx5X02zAK9hAEybcwB4kdbX33HaZ0ryg9b7TJaSLZdnY63fFwCvzbFidvvzm3rr12MZrT9nQ9H27/9UrXWZg7D9oKFqvc0Er2120bT275mmt143snW27T75SrTl8k5BbXqb82zNXT75LEDFa/0aAQq11p/nkVj7SUJ/ue/5lstvtKdaLv+XW+9b9P/RDRajP5+mPukx80Sl7XnEytv3bPM+p+oa/jMxwkMRMBUju2YZ2TND7v+8/HOQ1FvfAx7Nt29Dnqi3zp694+l6232O3jV3/t+6rbHlPVkMR2PhpSqVE+3v3UKsJulbEevVzOMlqBpUxy480xUO1NFtDffvNhNEZID2NaFpVDdqFL5ZJHtblP57E5hxnaG3JImOWKgArKSOVwoZ/8rVB6aeO2exv1mXqWRa14/Ob3qjC1UN9Vzz+VZ7MoJ6RxXaP4oKIYQQYo1SocJMdv7tFyugV8ZBXqrHyix1dyF6jwSnCiHEFTITOht/OYOVNAg9RegrzKhOddxFBRDfbOMVAxrzPo05n0hf81Zb1w2qpk3dMCnYDpOxBL5+YQCAphQZt06qWifqewxUK4Saznw0Rn+tih2cbZBUCtcwqJsmN+Rn0ZRizonxfH+Okn1R57QGdqZZxuiIydBDKdy8j51plsevhpSO1jnzj4fJ56SVcT177I2DDE/UGJxuYASKUsKkHjUopizyWQs0jU0vnVqWc1lDLoc/NUNyV4ShNyfZ+t4c9SmPxrxP6CuUB6GvCOsh1XFveRrahRDiOnXHHXfw/e9/HwBd13njG9+4pP1Onjy5ksUSQgghhBBCCCGuvQCYN9H2Xh8BVPWoSTFpkSp65Eo15pOtA+eEEOK10EwYfkuK2hmPM18vgCRVXhP8n8QJj9sYt9cw9tbZ2390tYu0iDNkYsYNxr+WXxQYtZYppUnm1KvUi9dP+lbEelU82MDULp9sJXSVBKauEs1sXvfsrc3JeWpTHrUJD78YUDzcQHmrFCGww4NzwakLBsrXwO6xaAUhhBDiOufWdVQAZtQgMmDSmPFXu0hCLCupuwvReyQ4VQghrlDmlii6pXHqbxdozDYf6KOjFqNvT6NbzYZFK2XgLvj41ZDCgRKFg3VO/OF9lx3LDnz661X66xVyjRqWCvE1jappMe/EOJrJ8cB480FJV4o7J8eJuy6RMKBsWhxN5ZiIJ3GNxbdzK/DZ8p7s+UBUgPq0x9iX8pd1IM/8n5Ixdb0LDY0zG2Oc2dh6NvqVUDrcoDLmEt9ik9rtEOlrZhnWLQ3N1DBsDc3QqJxymXu6IpVjIda5Xhng0QtlvNhdd911vhHm6aefvuL9tXapJYQQQgghhBBCiF6TPzsR5HU0oPblPSnueXqOe49O8tyWQSazrTO1CiHElUrd4GDGdE5/qSSBqWuIKhjo21zM17XPjAygFMyfSTE7liGWqjO8Yw7TXtnJYu0+g8EHmlmRg+r181ssepP0rQghrpX5Z6rMP1dl4PUJ0jc5zDxWPj/ObFWZCgZ9tD0Ngu0hSMI1IYQQoqeU8w5f++9vQI9oNOZ8GXt7jfXKOMhL9VqZpe4uRO+R4FQhhLhCXj5AtzW0C0lPqZ3xOP2VPAP3JQi9kJnHK4szQmqw9789S2J7BIDKmEskZzRnx9OhPuVTPOVSGXMXVRSGOcbxpE5qt0N0g4teCakUA6ZPudSnfDTOMNqijEMPJWFvjCPpNDvnF1DA0b0jjL3+xsu2Dce7dxAa9e4tkUF8aZ2aZsnouo2f7N7TrdeW1jqqljIYKdl99t5YsrGk8904MNV1m7IX6brNqfnsks4XMbpXLB/Y3H3m5OizS3skeGxmZ9dt5r96IQh2ts02fb/yKvGtEfruiLH5XVlqkx7zz1Z6ZiZlIYRYC+666y4AlFI888wzV7y/UkoaYoQQQgghhBBC9DzlQ/D9OOR8tM3XT/tiJWHxxL393PfkHLefnOZEJcnB0RyhLiOLhRCvXXTUYuD+BIWXa3hFiUxdS7QBn/DlCMEmG4Az9gCp4TKJ/mawahjC5CsDjD03TGk6gWEFBJ6BFfHYdc8pdt+1MpkjoiMWI29P4RUCxv+6sLiPfI1TZ//Ea9eL10/6VsR6NfP53Rix1mNRfmVof9f9Hb1zXeqF4saux5iopjquH6+mux6j7l6e/fViqsuNx1vCeJxytfM29hImddiYyXdcv+PpixMF+ChVZuNvmVw8XPdYqa/jMaJu5/ek2rC7lBKmG8nLF5rAIwAOU8UW6y9h6J2fCcOwex206nV+X7em5zuuX2h0n4zf9a9+KLShd/6ALVSjV32OVKzecf09Aye6HuOJ6W0d1y/lWtS9ztukE50nRFkKP+j82bC6fLYAdiWmO66vBt2/BwfKIx3XN4Lu18tPdB7veKp2T8f1lSWUc0us8/eg3yp1PUbG6vy+VSPdy1H1O29TX8LnK+wSAGV2ee+H091f65505zGaPxrf3vUYeqrzd17Tuj/tNrp8l549s6njesfu3pbZLaDMq3R/XxO5atdtunlleqjj+mMLnX/X+uLdy9Do8vnylvCbszXX+bsUM92uxzie7/xa9Ejne3m37wDAtNf5uenv9tzedt3Qm5Mkd+lMfLtI5Vj31yNEL5K6uxC9R4JThRDiChUP1UnsjLDhFzPk91cpHmrgFQIa0z71KY/kboeNv5xZtI9uNTNGNuZ8UM0Zh0NfsfB8lYUXa4T19hVZvxQy/2wVnl16GTUDQjQ2FwpAs1NoKtGcNV0PQyJ+QM0yYZUevIwwZGOpQMWymY3JbO7XI+VD+UiD8tEGia02mdtibPiFDAsvVpl9vLLaxRNCrIReHKGwxj344IN87GMfA0C/goGn/f39/I//8T9WqlhCCCGEEEIIIcQ1Yzga4Y/iUNQxfrWIdp31fNajJj+6YZT7j0ywbbbEltkST+waoRB3uu8shBCX0EwYfkuS2oTH9I/Lq10ccQnz3gpeUcf/fjOI5GWa/33du16mb2uBF7+6m5nDffRtXeC+dz3P0LZ5akWHI89u4uXHtpOfTMIbl7dMkX6T0V9IU5/0OPONAqrHkrX0araTtaQXr5/0rQghVkXv3S6FEEIIsRbpENtkQ4gEpq4mGQe54qTuLkTvuc66aIUQ4uqpAM48WiB3R5zMzTFyt8fxygFhXRHpN8kfqOGXF8/upEJF7bTXDE4FjJiO8hWhuzJPqMVDdfpujKOHigCYicXYvpCnv1ol5nroQM00eXzzRlyu4SzqSjFUKXPb9CQAU7G4BKde7xQEdXU+TnqlvhNCCLEeDQwMnG+EuRLxeJzf+I3fWIESCSGEEEIIIYQQ105qj8PA/QnUKdAfrKLlrs8Mf1XH5jv7tjC8UOb2kzPcdXyKp7cNUXQ6Z6YRQohLRUcszLjB6a8U4Pq8pa5pmgHWm8uEx220VMDmfIGjj29m/mQGgJnDfdz0yBFG982Q1JsZk2LpOre8+TCRuMvLP9qBfdc8WmyZ+uICGHooiZv3OfNoASWfGdEjpG9FiKVRCuonouiRkMhoY7WLI4QQQgghgOE3JzEcjblnrj4brhBrmdTdheg9EpwqhBCvgfJh7qcV5p+pENtk4wxaGDGNhReqlA53b5QNqivYO6fB4INJrCBongsYrlYJahqGutDZGPV9HN/HxV6xoiRrLv3lGrYfYISKjfkyVnDhtb80MLhi5xa9YfCBBOm9UerTHqf/IU9twlvtIgkhhBBCCCGEEEIIIdaYPc8u7tIMX44QPh5F2+2y4cEJDOfyNvdpN9XyWJUg0vY8OavScnldGW33iRqt2zQdo3X6uPA1ZBiLRtq3m27alT//7wXLIHsk4A2HJ1CHYb7PYv/t2cvLEG89aWWj2jqg1bSCtudPOa37RIacUtt9dK11YFS+HGu53LLap+Jrl7HNq7bv+zCs1n00QZtjqXr7918L2uxjtn+fvTbH84rtP5uldrFkVptrabafGDSbbZ0RcyjRPlNmELb+zCTtesvlVb99cHTUbP15zsZqbfdJRFpngmj3fcpXo22P1dfm9RttPpcAyWjrz7mht+/vK9ZaZzCeq7X+nDtm+895zG59zVJW6+sPYGity5bT23+f7YxJGCi8fPttxLX30h2XvpfN78rLRBn9BZfjwQgnnhqhdsblH96VhjB92TE2/nIGKx2S15PQpiu73fep6LX+LNuHNaI5g7G/y/duYKpCsp1cLbl+QqwLSkHY0AjKJn7JpPBkFm/uwvP0pn9+YvUKJ4QQQgghzotvieBXQhaeleBUIYQQa4sEpwohxFVQAVROuFROtO4UXw3Z22JYKYMjuSw75xc4NNAHaAyXyuTqdSbjcQpOhIVolHIkwor0GCnFLadn2bTQuoP/ZCrNiVQGX28/oEOsP1qoiFRDItWQ9F6H+JYI8c020z8qUXi5/QAKIUTvU0prO1BwLemFMgohhBBCCCGEENc7NWkQPh5D29lAf7DaMjD1ejXzOou5Gwxyrwakjofk5jwIQ9BbBxYKIcTFQk+hGxpoSMBZj5j8TpH0HoegpigerrfNeBt6CjOmo9UDVPvY7aVTYI3puAsBjbn2gdVrXo/0Xaxpcv2E6FlhQ6NxOEbjhIM/aaO8y+sM0Z0Vsg/MrULphBBCCCHEpcyEjm5plI6snfHq16NeGQd5qV4ssxCit0hwqhBCrBca2DmD1O7mzNojpTLT8Rin0mk04KaZWQCeHxkCbWUfMndN5RcFppYiFlOpGPMJh2IYJ1jiQJhE3SVXrXM6kyCUwTNrRmQ+JDkWYlZUc3yCBkEEqsM61cHL36dYwWdgzKV/3MX0mqMZ1P0J6jM+k98tLinbsBBCCCGEEEIIIYQQ4vqmahrhU1HUq2ezS/raSjd196QwpjN7m44+G5BZaJ9xVQghLhXUm5GNhqMR1CQ6tReEDcXC8+2zDp8z8+MS8X/UhzGv4W+4+vfWOq5hndYpF+R3RggheolSEMyZ1A4kqL8ahVDDGm1gjbi4p5qZsp3NVVJ357EHXalvCSGEEEKsIbrV/K8KpM1GCCHE2iPBqUII0eM0A9J7o2RujmIlDQov17CzJnHP42B/HwA3T04TAof7cgxWKjh+wHgySWAsf8Bnutpg93QegIap87NNg8wlnPMBsWZpaefcsFDi1vEZAFxDZzKdWPayiiujfEgfCRh43sd3wEtqqLMTaEcWFJmjIaEO/X0htaSBFkJy3ideDHAjGtObbQoDFvWYTuI9R2XWbSGuJ4re+M73Qhk7+KM/+qMr2j4SiTA4OMh9993HjTfeuEKlEkIIIYQQQgghXhtn2CSoKYJ6SPC0g3rJAV2h7WygjtuQC1a7iGtXGJJZ8KhHdcmaKoRYMjffvK/aWZNaTYIO1xOvGOLXQiIv6/iDAVhXcbAAIq80f1tmnyx32XhtU6r5J1679XD9pG9FrBtKseuFEpFaSDltUuizqMUN7HpI+XQab9LGXzDB19FjAbHXlXH2VHCPRyk/nsYeqtP/89MoX6Mx4TD9t6PYQ3XcKQd7pA5voTk4RAghhBBCrAp3ISRwQ5K7HWZ+XFnt4ly/emUc5KV6scwXkbq7EGufBKcKIUQP022NTb+awc6aeOVmh3Fie4SpH5TQf36QuViUrfk8I+UyM7EYOxYWMMPmE2beiVA0nGUri+UHbMiX2TFdAJrPsc9sHSIfa30Ox/fYMzeLphSv5voo25Hz6/pL1fOBqZ6uMR+PLls5xZVTRZ3wQAR12Gaw4VPcojN1pwn6RT0PSmGVFfEzIdYEZKY80KCaMjh9g0N+wLpk+2v/OoQQYr37gz/4A7TXOIXxvffey6c+9SluvvnmZS6VEEIIIYQQQghx5WIbLTa8IwOAUgr1Emj76ug3N9AcBW+qrm4B1zi71Bw3PjMY6bqtEEKc4xUCgkZIdMSidkaCU9ebqe8WGU2kSf9vE39AoSKgLMBU6HkNZUJ9b4g/SNvgI2Meoj81MBY0yg/7eJ8Kr+VLEGJFSN+KWC/2/bRIrmFQjev0T7psOFE/v65ux1Buc2IBe3uN1M/NoxlQeTpJ9ZkUAO6Uw/Tfj+AXTFDa+WWAZFAVQgghhFgjGrM+0ZGrmXFKiN4kdXch1j4JThVCiB6W2RfFzjZv5VbCwK+GzD1doXiwztF/Oort+9w4Ow/AYLVKxbIwQ495x6EYWYZBKUrRX6uyoVhisFrGuCjg8MBoX9vAVICNxSKD1QoNw+B1UxM8tnELaBoJt8Hd45MA1E2Dp7aO4JrG1ZdVXDEVgtofIXwuCpZCu8Hl+IYUXqLFA76m4SU18jfozG+OXfvCCiHWOI3emEq3F8rYnXoNU5X/5Cc/4YEHHuC73/0ud9xxxwqUSgghhBBCCCGEWLraGY/apEd02KIx6xP/FxW0qMx4t1RuvDk/YDovwWVCiCugoHraJb7ZZv5ZmQRgvame9ij+so99UseY1dA80GugeTpBUmEUNVLfMik9GOBtWfyba8xoOC/qWKd1goSi/EhAMND7v8tKaSi1PvoFVst6un7StyJ6XS2uM7YxyqmdUdDAqYZEagG+rXNf9TS1FxIQahiJAO3sEJyw2gxYxQzB1wmqBpk3zGP1ecx8afj8sY2ET+SghRZAfZ9qVjbWz9dfCCGEEGLNi260GHwwiZXU8csyUdTq6pVxkJfqxTJfTuruQqxdEpwqhBA96Mzv3o+hAuL1GUKvdP5R143bHHzHbvhFjdAOGChXzu8zlYzRX64xF3N4dvMQoQGg0DJu1/PteP/PFv2/ldJJ3eiQ3O1gJZqt1oGmAQoFHOtPcyqbQgsvf5iN3ZAHYKauseUxDT8K8bJPZus8Co17f9AMpvViMPUWjY2xqZZl0rWlPWBOVxJdt1nKsTanFpZ0vjfmXu26Taj0rtu8khxZ0vl2xyaXtF03X9+bWfT/zrDFwBviRHIm+f015p6poHyAUtdj5ZalREIIIV6rpcwSppRatJ1SimKxyPvf/37279+PaUpVUQghhBBCCCHE6lEhnP6HPIMPJkjudNbLuIlrx9QpJw3SBZ+7npjj6XuzoHdvlxZCiMpJl6E3JbGzBu5CsNrFEctMJaCxt/Ug1jDUSH3VIPYznaoe4m1SaFWI/9RoBqWmFZXX+3jbFKyXnxSlnc8OKF6jdXT9pG9F9Lri/3sCU7MYvGiZEddRnqL6G314xQA7azL1dyanPpVGtzQ0S0O3aqhQUfyXady0hlkZIXomZBj//HGqryaIn/137OzwoafekKUWX/yZz8ZqHcvoBd0npg9bjDO62Giu0HH9bDnecT2A73cuR73ePRvZeCHdcf1SgvcnS8mO6/2g8w+uaXQPTDm60N9xfcqpd1wPcO/AiY7ri3606zFOlDuPJPLDzq91KZ+dhNPouk03MavzBE/5WvskDedoXcagVRp2x/U/nNjZ9RxXWwaATJfrFTH8jusBZqvdv2+dNJbwvn5zfE/nY3jdf3vdLt/5vkT3iXmOFjt/l2JW5/GX4RLuCVV/uOP6zbHuiUhOVDp/1ype588fwJ5M67Ga5xwKBjuuBxibyXZcX412vl439E93Pcee+JmO6w8lu5ez22+GvoRH3Uy882/fxHSm4/ql3Mu7fac1s/sxuv0uLeUzuiXXefxssdH5HrmUe/ld/Sc7rj9aHuh6jHyj8+/Shli+6zGKHZLyAMTMzp/hmNF9TPZYvfP3BC76bJmw4RfSoKByymXy28WuxxdivZK6uxBrl3yzhBBihWgG5O6ME+kzsbMGxYP15ZllWIMRN8/WxjyGChmzc0zYKZJBnb21SaKhR81oNiQUoxGO9aU5mUtx2+lpyhGLp7eMEC6l5txGao/D4AMJtEuOEWpwMpfmZF+Kmt29odZzdGZGI4yMNRs648WAfc81K01eDMYfNgkj66cz6xy3YBF4BnbWRVtjHbeaAQMPJEhsiWBEdRqzPmNfzNOY7d7gKIQQYvVt3rwZTdMYHx8nCILzM4VlMhkA8vk80GykiUQiDAwMcObMGcIwRNM0lFIcOnSIL33pS7z73e9epVchhBBCCCGEEEKcpWDu6SrpPVGSkz6xXa3b1ycbrQcF18LWA+42RtoPpCoErQcvfevUje33WWg9kG3z6FzL5fFI+8FJ88VYy+Wa036AbJ9Tabn8iVs3cvOhPCMzNe55fIHH7xwkPBugGmlzPMtp3RZsdBgol6+2vmbPVTe23UfXWx8v2ubaGHr7QXjFSuvBYpFE+4G27V5PaLUOxAuj7fsqfLf1wDpV7dANb7R5PR26RAynddlMq/V7Ztvt2/WtNq+/5rfv2zHbvGclt/X1T9rtB7nbWuuy1bT250/Yrd/PmTYTlCaj7c/vmK3P32nwdahaDwJu+O3fZ8to/Z5NzbS+Z8WT7cvsuq3P81Nvc9t92t3rrDbX/5zykQa5O+IMvD7B+Fc7B3+I3jNzf77j+lKfwcD9CRIFi4WfVUnti6J8xcQTRcpHrz7gQ4i1SPpWxHqVuTnKwOsvPCuVjjYw4x7xLRHiW2yUpwh9RegpDEcn+20PpcG5+JfAhnZxFa6t4ZtrbMCLEEIIIcQ6ldkTRdM0zny7QOVY98BXIdYjqbsLsfZJK4EQQqyA2GabTe/KkntdjPhmGytpkLqh++xpSznu5l/Lsqs+w5wZ56nEVk44fQTobHTzAIQXzfZRiEY4ONyHGYQkGh7pukt/+bUHyPbdG2fojcnzganV0y6zT5YZ+9IC371xKwdH+pYUmHrO5MYLnfnnAlNDDU6/fX0Gpnplk6N/uYMT/2srr/7n3ZSOds/qei3lbo+R3OmQP1Dj9JfznPq7BQlMFUIsD9VDfz3sxIkT/It/8S/wfZ9IJMK///f/nvn5+UV/f/Inf0IkEsH3ff7gD/6ASqXCZz/7WVKp1Pnj/MM//MMqvgohhBBCCCGEEOKCoBriLvi4492zQ4hL6Dov7skxl4kQqwfsPF5a7RIJIXqACmH28TKxjTbxrd2z6oj1xZ0LGP9qgcopl9wdcdyFgJN/s7BuA1OVkr/l+Ot10rci1isjvnhYaGyTTelwg+OfnePY/2+O4381z8m/XmDsb/Oc+F/zTNxnMnObyfgDFsd+0ebYL0c4/GsRTr3ZYuIek+fuzfD4m/v44SMD/ORN/XgRGXYqhBBCCHEtOIMmSilqpyUwdU1Y7bGNV/PXw6TuLsTaJ5lThRBimfXdFSN7e4zGjE99ysPONW+1Uz947QM/7D6DgfsSxDbaVMddnotvomw0g12Tfo0b6tNYKuCl6AgNfXFwaLzhcv/xMxhne4buHJviOzdswTVbz+bdimbC0JtSJLbbeOUAK2Ew/3yVuScvzMj+WrKxllMmrq2x0G/j1ALSCz7H9sTRjfXZwWlGfVI3FCgeSgNw5tFRjJjP5neOYWfbz3x/LWg6pG6KUni5xvwzy5DhVwghxDX3xBNP8C//5b9E0zQ+/vGP89u//duL1mcyGX73d38Xx3H46Ec/ykc+8hFuueUW/sk/+SeEYcgHP/hBAJ599tlVKL0QQgghhBBCCNGa7ujosfaZO0VnmlIo4MSm1hlehRDiUpVTLpWTDQbuT1Adm0e1TgIr1isFk98qYveZzUlse3zwohDdSN+KWK+Kr9RRnkIzwIjqpPdEyd0ZY/zLBSL9Jv33xXEGTOozPvkXa5Q36BgNCCLARZPiN/p0Gn1QKi59onohhBBCCLE89JhOYnuEoK4IJTZVXMek7i7E2idTWAkhxDJK7XHI3RFn7qkqY1/MUx13QYPxr+Wpnbmy4MPIoEnfPXFGfyHN5ndnMRM6Z75eYPwrhfOBqRm/yuuqpwnReCG2gTlrcSbO/lKV+4+doWaZ/GjHRo72pzmVSeIZS7/9227Axl/MEN9sU5/ym4Gpzy0OTH2tjKDZm5mZ80gvNDN07ny5gjO9Pns5NQM2PDLBro8cZvjnJgEIqibH/+c2znx9hMpYFHWNxlgpBSqA0NXxqwZ9d8cxHI3Cy/WrPrZmQnyrTfa2KOl9UVI3OiR3RohvtYlttHCGTew+AyttXDZbpxBinVrtWb+ukxnC/sN/+A+EYfOH5OGHH2673SOPPAJAEAT8yZ/8CQDvete70HUdpRSTk5MrX1ghhBBCCCGEEGIJNEvDjOqYmdWd3K+XuXazDTZTlGsohFi6mScqmHGd3O2x1S6KWAUqhMbMdRCYutr9Eevlr8dJ34pYr7xCwPyzVeaeqlI51YxkWHi+hu5ojL49heHoLDxfQzM0Rt+WZsffu2z/ikvfSwFasA6+3EIIIYQQPc5M6mx7XxZ0mPpecbWLI85Z7Tr4dVp/l7q7EGufZE4VQohlotsaudfFKB2us/CzZubJ5C6H4qE69Ul/yccxYjpDb0wQ3xLBrwQ0Zn1mflym8EodLgpctEKfG2uT5I0o+2MbFs1ciFJsm81z49Q8M4kYL430U7dNDjl9Sy7H5oky28ZLRNwAldCpnnZJbIsw90xl2TJrbjtYwXYV/iW/RqkjIfWh9Ru0qFuK9J4iqd1F5p7pY+6pPkpHkpSOJNHMkEhfAy1igtIWVwwiCjIhKhtCJoTU0iNZlYL6pEPplRTVUzH80uJZLbO3weyTZbz81U1/Hd1gMfRQEitpEDRCNF1Dtzpn1Q3qIfkXa8w/V+35CpAQQqymJ5544vy/Jycn2b17d8vtTp48ef7fjz/+OADxeJy+vj5mZmYol8srW1AhhBBCCCGEEGKJYhua7Zhmeult7GKxg9vTDM7Wue3leXxToxC3OHZTgmpSuomFEO15hYDysQa5O+KUjjZw5yV96noW22ST2h0BDSa/U1rt4lwzSmko1bkfU3S2Hq6f9K2I60FtojlRTd8dMdx8gGZqjH8tT1ANmX+uSmTAJP5v+onOhOQOBmQPBvhxKI8azN1soIze/64LIYQQQvQSu89g069m0QyY/G6J6phMPCiub1J3F2Ltk15HIYRYBoajsf2D/QC4+YDBNyaI9JlYSYPQXXq0XXSDxchbU6gQJr5VoHzcbR2spxS769PoKA5GhxcFpuoqZHd9mqFSiYahE3M93nz4FOPpBC9sHLzsUHqg2DhdYTrnUI+Y54+/9UwZPVS8ujXN6NcmSd8UZe6pSjOAcJkoXaMW05kbjJCbblBOmQxOuiROKyonQypb1m+AKjQzqfbfM4eZ8Jj63jBG3CeoGtSnHNgUgKaaOc61s391DV6x0OvN66I0xansZqyci332z0p56FYIGgRVA79sURuPUh2L4RctzKRHfEcZO+uiGQrNVGiG4if/KIJfeu1pWzUTRt+WJrbRpjruMv7VAl4hWLReNzU0sxmsqpkauqmh2xrRDRa5O2M4Qxbzz1SoT8tAMyGEeC0KhQLa2WeC3//93+fRRx8lmUwu2qZWq/Gxj30MAKUU+Xz+/Dqlmg8d6XT62hRYCCGEEEIIIYToRIP+e+NUxlxGBt3VLk3PciMmP7pniBuPFsjmXfoKLtmfzvPYm/tBX99t8EKIqxPfGgFA+TKz6Ho2+GCC9E3R8/8//eMyYV3ec3H9kL4VcT04d193hiycIYvJ7xUJqhfGhzRmfBo3NccL2fkQZ15hFxWZIwFuSqO43ViVcgshhBBCXJemdDa/MwsanHm0IIGpQiB1dyF6gQSnCiHEMghcxcLzVeLbIpgJHSOq4eYDFvbXKB9rLOkY8W02wz+XonbGY/K7xY6dfhvdPP1+hZeiI7j6hVu5phR7qxOkgxohYAch58JWzbB14OG2MyV2nyoyMmtzYHuzQrNtvES87vPU3n7683XSN0WZfbLMwvO1tmXSw5C+Sp3ZRJT/P3v/GWXZdR52n/8Tb06VY+eIRmpkgARIgCQogjlIr2SREilRokbyWONZmrFly5RsfXiXlyx7OKKWJXKGFjmUmESYEAkSEEQQBEDkHBoNdO7K6eZ44ny4narrhupGdVfdque3Vq2uPvuEfc4Ndc7e+3m2rywva2ItqKLbPq4GmgtvXhPDCpYYOV6l/ymXbNont0fFDa3vLIzJfXl8R2Xh2S70qFOf1TTq4Ud8lKICBRUsBQwftjj4wVPvDR9CXgUrY5J/NYFbafxn3UhZRDaXiGwrEhqt0OjlOX8m1QsVGTUJj5jYBZeJH+aWlPsOuM7pKWAXK52wKJ+0GP5Qksgmk6PfWMAte5hd9Q4OycYtxDrgK/Wfta4T6tjC6OgoR44cAerZwjZt2sSnPvUptm/fjqIoHD9+nH/8x38knU6jKAq+7zM6OgpAtVo9s7y3t3c1T0MIIYQQQgghxAZ228tng1Crb4Uo/FSn77dnSRrNkyaebQVfLOo3bpsvuoGm+zpR7mq4vFJr3n6qBxon25tcaDzIQdObJwnUm5R5XvMg0hfGRpoc52y7qqsrvH5VEoAbnlsgkbcJeB6O6hEueVgBFcdUCUUaD3QK6M0TCjpN6qapzc/Tchq3ZQeMxsffFMs031ei8UD56VK86TaFauP3QLOzdJvUF5q/np52EYFdLTZRtcbt5MNdS9vjATZFm1+z8VKy4fKI3jwIvOpe2LCCot38c+b6jd8zYwuN6wU07NdoJRpq3jcXCFQbLt8Rm2+6Td5pfD7PT4423cZq8r2hKI1f6FazD7pu42sWDzY/T0Nt/I4es7obLv/A69ml634nhh5zsPMXn9y0k/Q/2fx7A0BNK+CB1+2DAjO35i9TzS6tyJYAlSmb2oJDYm8Q/wISL68LG+x0xVLStyI2Ctfy0EyV2ccLFN5qfg9hJVWsZP330IJH/LhLYZMktRFCCCGEuFz0h4OgwPh9WaozMtHLmtMp4yDP14l1Poc8uwux9klwqhBCrAQP5p8qMf9U6aI216MqA++JUzpWY/rhArTo443tDDBQm+eEmWLBiJ4t8H12V2dIuWWyWoiEW2E6HqGrVKFoGrw0vHTWVADTrg9o6Mpb3P7SzJnlU90h9hzPESvZzD1RJPtK88BUgNsPjROxHY51x3ljsKfpetGcw8BYlVyXjuKDYfvYpkqg5hGoeBzbEyXQbdH7vEfyrfqPHYbKoEr6ahXP7Owb5GZS12RJXZMFYP6ZLuZf6K4Ptoh6EPMg7IMNzGiQV1Hc+nXIGwZmyiK8qYwWclEMDzXggaegBlzcso4Rt4nuLlzw4I1lUaDntgipq8IAVKYvLktTedzGLroYUY1Nn0qhKKCF6h0chSM18m9UKI9LBighhGjl4x//OH/xF39xpoEll8vxta99bdE6p7OAASiKwic+8QkAnn76aTzPQ1EU9u7de1nrLcSGoEDX9WHCwyZu1WPm5wWZgUIIIYQQQogW3KJK8fEkge1ljL5L0y7ozun4NRV9ZGPNyhou1wc0XflcnmjeQaEel2ObCoevDVPoM1e1fkKItSO8qUzu1QSKXsHfiGMhLTAPa+jjKmpWQa3UO9rclIeX9DESGnau8xOspp8r0XdHjNCgwfxTRfyNEYssxBnStyI2iqNfW2hZ7jRIIDKzz2D0Fxap1z3CN8y1PcZQqHXihpf84bb7yDdJJHNauhRuWd4sqce5HLv1TLC9qULbfQxHGyeJOS1nhVqWAzht6qqqrfuRTL39fYjXpisqFWieCOq066InWpaXvNavGUChSbKX03Sl9Q2IZbafGKJHa912cG1ivO0+Hpi8omW5obW/Uao2SUZzWqukNAA39I21PUa/2fqz9sjszrb7aCddaf1ZA8jkIi3LtTbv0S3JdNtjVN3Wky0czrUPMOlr85keiLRPOpOptb4ettf6e6Vst580wmySlOo0Pdr+M5+ptv7uWc7QwbwdbFkeMdq3oyXj7b9bWjkwO/C211FbJE07LRJofS4L2WjLcgClzXe1brR+3bZ3NU+Uddpy/qa0Uym3/h72vPbvDrdF8jyAUrV1m+Jyxq5ORVrPaNgbLLbdR6N7mnNNlJNt91Frk6Tt5u7jLcsTWuux1gBP3dT4eyHQqzP6CYXKlC2BqUKcQ57dhVj7JDhVCCHWgMS+EIoK6RfKzP/RjQQ9m7BnEXdqzBkRFsz6g27KLrG9OEn+YBXrkbcY4q0z+0hdG6Lnlvp6SbtMMWjSny+RCwZ5YWgA39VQGzzr9jyZpqTC7KNF9IgKqoKdddDDGvFfTjH7eJHnP39N23Mw52aJLBTYupCnHNQ53hNv+ES56a8m6L4hwuA5bX7h/zGJ/Y4oN/4sjZVxCe4BHx2l10G7uoI2q2O8GSA+42PcWUQdcOgz2zcGA9w8eqTtOjG1cZbsc2W95T3kT9iptuvk3NaNcz03pdlyy0TTB3Lfg1repJoOUFiIUMuY1NIBSscjeLXFjV2K6uF7KtZrIQa2LqAbbv3HPPuvZrh8+okymuGiGR5G0EFtktX9hwvXnt13VsF4zkCdULFutHB3uBgG5P9oe9trkCksbbQrzVXpWahRC2jECjbZpImrKIyGywxvD2AZKvmoTi5uMj4Uphaon6tdbj9YatdvPdd2HSHEpeP79Z+1rhPq2Mp/+A//gW9/+9uMj4+jnPoj4p93UucuHx0d5Y//+I8B+M53vnNmnXe9612XqcZCbBzxPUG6b4hQmbaJbg1gdunM/rxAZVKSbwghhBBCCNFI8dEUiu4TvSO74vv2KgqVnyZwJwKg+MR/d3bFj7GWvbEnzhVv1gNTK2GVhX6TYNmje9Zi7zMlDl/nkx5qP7hYCLH+xa/IkXkhRfLKEJmX2g+sXA/UnELgRQ01r6BlVHzVxxn0cEZ93B4P3wR9XMU8rNF3e5SJH7UOTOkEuQNVSmMWiqqsi2DbC+H7StsAEdHaerh+0rcixFmK42OUfeywgq8rlPtUnJCCttFm1RZCCCGEWCUjH0mAD3NPtA/EFaujU8ZBnq8T63wueXYXYu2T4FQhhFgDikdqdO0Ps/lXuticP76orNsu8QszStSpcmVxioweJv3o0oyE0W31wSK+75N/s0p8r8JMNMIr/X14avNsQEZcozpt4xQ9nOLZjFFuxaE6axMZbZK5y/e5fnyaWM3ike2beG2km2jNprtYZd9EmlSpxkubevHVxR1S6RfK1OYcem+PYkQ1Jn6UpTxuU53NEtseILYzgJ/RIeKiXVdGHbVRtllo+6rYP4ti/yiOdkUV66oqZvf6HczfKlOUokIwadV/tpwNrPV9cMoabvXsn3czYdGzUOaNJ7dy/JUhHFvDsTT8FhmijKDNnvcdpX/X4gx1taKBdlRDnVFRp1XUnIoX9rDusvBG334a5fneIPO9i7OveZ7C2FCYRN6mJ10jWrLZNF5i68kikwMhjo1GsZFM/kIIAZBIJHj44Yf56Ec/yoEDB4CzjS6nnW6U2bdvH/fddx+JRD3r4A033MD/+B//A4BPfepTl7HWQmwMib1BSictJn+cw0ho9L8ryvCHE8w8XKBwqH22ZyGEEEIIITYS3wVrLED0thxq8O2PmLCOBam+EcaeMMFZ3C4a+WT7WTrWm7m+EE+NLG33N6ouNz2aYeurFQlOFUIAYCQcEldl8awkpRMWVmb9Bi4qKpgHNAIvaeCBF/Wx9rjUrnTwz8s562yu94kZeY0z0093OKewQadL9VkXr9+qWgfXT/pWxIajgB5VMZMaRkLHTGr13++vYlTq73UfqMUVnJCCWfKZ3q+hs37vA4QQQggh1oLElUFUQ2XuiSLWgtx7CXEueXYXYu2T4FQhhLgMIptNFF2heLS2qING0SFxRYjUNUtn5SxqJuOBJNNmnKBrc3VxkrJm8lp0kCHvxKJ19ahKsK8+mERRFBJ7QxxPJjjY012PcjydHaRBxKOqKySuCIEPs48tzrbj2T5apHEQ41C+SF+pXD++52EpCi9u6uWONycwXY+hbInJVISZxHk9th6UTliYXVV6bo5QnXUwkhpd14WJbg2gGgq4QEnDeTAOIQ91yEYdsNF21nA9cN8MMvP6MHqXhdltocUc9JiDFnNP/eugGuugJ+wCKQoYERcjsvjBtG9Tlr5NL575v++D5yo4toZraziWTqYWwbVVXEtj6o1eXv3hbo72lPE9cGo6rlVf1wS8uIc34OFc6+BuckHj0lIUcgmTXKIehKo5HqOTZTaPlRieqjCXCDKTCjOXCFExtdaRvUKI1dEpAzw6oY5tbN++nRdeeIGvfvWrfPOb3+SFF17AtuvJHAzD4LrrruM3fuM3+O3f/m1M82xw/2/91m+tVpWF2BBqCw6xHUG6b45Qm7XJvFphaMgkcUVIglOFEEIIIYQ4j3UiCJ6CMfz275WtY0EKD3QtWW5cUSZ4SwGlSW7GjcgOalgBhWDFB8+DFkkvhRAbR/dtC8z+LEb/XTHG7s2uizbURnpujRB8Vsfa5lK92aFlXlQflGo9AXBkk0nphHXZ6imEuDSkb0WsF4oOvlP/XQ0qmAltURCqkdQw4hqqXh9T4Tk+ds7FyrqUN2lYMQU7rGCUfEIZD7PgM3eFTqlfJbGK5yWEEEIIsRHEtgfwfZ/sK5XVropopVPGQZ6vE+t8Hnl2F2Jtk+BUIYS4RALdOsEBndjOIKGB+giX9AtlFp4poUVU4ruDJPYG0cMq+UNViodr2EWPk793A65yNtpP91yuKU7gKiqvRIfwlKUDQhRtcTDe3C+KHPzsdjTX45rpafrKZdLBIM+MDi/ZduwHWbquC5O8MkT+rSrVmXpLdWjIIDxsMvlgDt659Pw2Z3LkTYOQ7XD70TGO9CcY647x6mgP1x+fBaCrWF0anAp03xSh67ow2dcq6BGV0Y8ncWs+6RdKVCZstv+TBwr4MzrehIk3YeAcMamnHz7LSZs46dazZg59uMDontmW62w0igKa7qPpDoQcoIbnnX3y6NmeYfqNHnKTMVTdQzNd9IBLMFrjmfAmCK9e3QFcXeX4pignhyMMTZfpn66x73gaFfAUqBoaVVOnamqnfnSi20ycoodd9HDLGzT7sxBiwzBNkz/4gz/gD/7gD3Ach3Q6je/7dHd3o+vyCCjEapj7RRHP8onvCaLvr99M2QWX9POlVa6ZEEIIIYQQa9DpJvC3mYPOzWlnAlND1xUwd1ZQgx6OqdCgmV0Ap6cADBU8Kgm5SEIIUHWfmUcKjH4sSeraEJkX1+cASSOh4Qx7VG932q6rH1cxxjXyh6rU0u3XF2uZwtu+4djw1s/1k74V0emS1wQZuCVFbcHBiGlowfr9vO/7OEUPK+tSmbDJHahgZ12snLto5mzn3yUX7S+39XLWXgghhBBC+B7rIoBQiEtJnt2FWLvkEyiEECtMNRX674wR3RrA93wqkzYTP8oS3xskOKBjdmuMfiwFvk/phMXCsyXs/NkG33MDUwE2VTMEPIdn4pux1cZf23bOpXCkSmx7kKkHc5THbQbzBa6ZORuUeSLZOI+hW/aYe7xIZJNJbEeQ6kx99lT91Iyp5ZPnZfv1fbYvZEhWa9Q0DcP3MVyXKybT7JrOcKI3fmbVoUyJg0Nd+OfMZBkcMOi6Lsz800UyL1YY+kAcp+Rx8t4svl1/slKM+rGVYQd1uN6p63uAB35Bw5/ViVg2bkXFK2u4FQ23pOFklgaqqpoEIl4oRYHBK+YZvGJ+aeHCpstfoSY8TWF8OMKxVArDcUkVagRtl1DNIWi5BG2XeNkiZLlod599/+feqDD782KLPQshxPqh6zp9fX2rXQ0hNjzfgfknS8w/WUINKigKuBXpVRBCCCGEEOJ8mwPzuNsUXqSbxEKNnoEMAAN6ruk2JT2wZJlV1vnFP1wPgP6OIt4VFlU0QCNrN8++N1eJNlweMJsHH1WqjadfVZrEali15t2zgaDdcHl/vNB0m3w12HB5b+TC2kBDkx7BiouSdLl577FFZfNW4+sCoDYZMRXSGp9LfX9Lk1pC8+tveVrD5QCm6jYta6ZUXvqeAdCa9Cf4fvPAm2ZlarB5vbxa8/NpxnUab2M0Of+E0TyAMKM3/gyoSvP+lLDeeGZIXW28zeszA033Va00Tjra7DMD4Dd7hG6yPOc0D66OmI3PJaA2f89aXuP3bK3WfPrlZqcTjjaeFbon2jyB1bzS+PgR48Jn7DxU6W+4fCDQ/Hv23Q+nST8Bip7k6r/IEhyon8ODV8abbrNWXfn84veGN63jL2g4TwTQFhxuSR1css239gyd+T11bYjI/jCVjM3MT5t/NwshOpv0rYhO1H1DFM/ysRZcikct7JyDlXWxcy7+hd8yCyGEEEKIy8wp1yf1CQ3pVCYlGZYQ7cizuxBriwSnCiHExVAhvjOAFtbIvlLGdyHQpxPfGSC6PYiiwdRDeUrHavWgSiA8YhLo1um6LoJTdBm7N4tnNx+Qrvg+o9UMm2sZjgW7qGrNO7gBqrMO0a0+4U0m/e+No54KTB2PxzjQ24Onts5yXpm2SV4VonC0RnXKxq3UK959U4Sjroer1be/Ymaezdk8C+EgqUqV54cH0DyPnQtpwpbDtpl65/V0PER/vsLm+TzHe88GBib2BrEL7pnMysEBg8zLlTOBqU2vhwqooKRcSLnEzcYdvr4HXlXFs1T0uMNwtEGApVh3bF1jNtVkUJnvs+f3X0A/NWNx6powpeMW5QkLX57hhbg8fKX+s9Z1Qh2XyfM8HnroIR599FEmJycBGBwc5I477uDuu+9GbXNfIIS4dLyqBKUKIYQQQgjRimb4KJqHZ1/cs6vvw4vf2wuAMmShXdE4EEycw/Hof9IFFcyPZFe7NkKINSh1c5rKRIjZB/sZ+uQEerTzo1zcNwI4j58Nig8kWgf7dt8YJnVdmNxrFdLPly919cTl4COz0rxd6+z6Sd+K6HRaUCU0ZKAGFAJdGqgKdtYh83IFRYPEFSHcqkf+YFUCVoUQQggh1piFp0vEtgUY/mCS499K4xRlYp41qVPGQZ6vE+vchDy7C7E2SXCqEEIsk2oqhIYMQkMGkc0BzEQ9S7VneYSHTaLbAthFl8LhKtlXKziFxQ8GdtFFj2l4lk91xmkemOr7dDtltlQWiLs1KqrOWDDVtn65A1Vi2wPEdgSx0g7BXoOJWIzX+peXFaTwVpX4riAjH0pw+KvzlMdt0i+WSV0bYls6y6HeLqCe6dlTYDIeo6tcJWpZHO1OMdkXZttsjp3T2fqssAGDk906eyfSxCsWxYBBtGoT3x1k9rGzgaWKprQNTL0Qigpa2EMLy4OZOEVR8Go+Vs0l81KZyJYAQx9I4FbrswYXDsvgNCHE+vLoo4/yO7/zOxw+fHhJ2X/9r/+VHTt28NWvfpU77rhjFWonhBBCCCGEEEK05nugKD6ee3EDCKZe7aW8UE9kZ7znwmYP3YjUqsfwv7goDujvLKI2nohVCLHBKRr0vX+GyXuHGf/WKN3vWFjtKr1tvlsflGd8PIvS5XJFbHzJOpV0oJ6geHeQ5L4Qc08Wyb7cfGZi0WEkOPXtW0fXT/pWRKc7eW+GaG+IQLeO2a2jGgq+D4mrQiT2hfB9UA0FRYXU/jDp58vkD1bX1edYCCGEEKKTOUWPiR/nGP5Qgk2fSnH0Gwsgw6CFWESe3YVYuyQ4VQgh2ggNGiSuDBHdYqJoCnbepTxpYUSDOBWPrhsi+K7P9E/zFA41D3KrTjuomoJr+RinAlsb2VmZY6SWo6iZPBsbpagFQGmfscS3fcbuzZK8KkTPrRFmIhFe7+tZ9nla2XpaREVT0GMqTsFj4ekSRlxlyCiQDQXIBQO80ddDtGaxcz7NWCLGtoUsZcNgqifEkf4kJ7pjXD02z2i6yLNb+6npGv25MgPZMq6mMPtogdyB6pnj2nkXI978egixktyKz4lvpTFTGl3XhRl4bxy0PIU3JUBViEtJ8es/a10n1LGdf/7nf+YjH/kItm3j+41P6NChQ9x999388Ic/5H3ve99lrqEQQgghhBBCCNFa9mgcz9GIjxbar3yeWtHgyGObANCurKAE18HD/iU28s8uegWyOxUGZZZZIUQLRtxh5FfGWfhFN3MP99H/7iqzjxU6duY1b8xA6XJQut2GXbHzr3dx/KFRNn0CnIrH3BNFsq9IYKoQ65H0rYj1wM64FLK1JeOW9IhK980R8GH+6RKqDl03Ruh/V4zUNSEWnilRPNp69nAhhBBCCHF5VCZs0i+U6b4+QmxHgMJb0l671nTKOMjzdWKdzyfP7kKsbRKcKoQQLcR2Bhh4T5xa2mHuyRKlEzWcgodqKCT2hDCiGrW0w/h9Wbxa6zu32oKDW/PAB7O7STCmAgO1AicCKY6GupcVlHqu8IhB7zui5N+s8uIHt7fe3vfZks2x8/d6mfxxjtJJi6mH8vTcGmHzr3SRfqFE5qUK6RfK9O6JcsP4NAC5gEk2FKSrUsVTFPJBk/2TM1wxq/LkjkFKQZNDAylSR6Z5x+EpDvUneXzP8JnD7vqr6UXVsPMuRuLiMuALcbGsjMv0Twt4jk//u2K4ZZ/ymHS4CCE6W6FQ4NOf/jSWZaEoCkqL+wDLsvj0pz/NkSNHiEajl7GWQgghhBBCCCFEa3OvdhMZKBHuq7Zf+Ryeq3DgJ9vwXIX4YIHCdOgS1XB9cYKgVyB9pcrgaldGCLHmaWGXvvfNEhot4zl9BPt1Ckfq/adOxaM2Z+NWOmO0mxLy8GZ07B/FwVU4klLpvTKNGbNQdZ/jD40S7itz8kc+2VfK+M5q11isOF+p/4iLtw6un/StiPXOKXnMPHw28Y8LzPy0QOalMj03RRi8O1EfL/SBMXy7+d/w4C9SbY8V0lqPudiWmG+7j+NKd8vyrmC5Zbmuts+a4XitE+jPlNt/vjO1cMvykmW23UfQtFuWD8fzLcuni7G2xzDU1vdlJ/PtX9f7lGtblped9ueaqbZ+PtfaREsUqoG2xwgHWr//PH+07T7a0dT209d1R1u/RzPl1tciorUPQopprdtLLLf9JBEL+UjL8oDZ/uZX01t/3kKB1u/x8UKy7TEK5WDL8u5kse0+7uhfOrPauW6Jti4H+Jfcvpblb+X7Wpa7XvuxkX6b91fFNdruw2tzb1aqtf+8vlpt3Tq0s3uu7T729463LD+c721Z7nrt7zErbc6llG39HgewY61DKBKx9smJ5qfjrVdocy4vHWv/3dTX2/rvQVe4fT0nq+3fP+1kcq2vqdLmPTyQap+IMGu1/o6cq7b/G220uRew29wHAGyLLbQsj7b5Hp6oJdseo9WUqNXp+venHpVx1UKcJs/uQqx98ldLCCFaiG4PUJ60OPndDLnXKjiF+gOBZ/tUTj0A4NE2MBUAH6ozDooOmqkS3b604SzYq6PjMW9GLjgwFc7Oflo8Vmu5fciyuXFiij3z9Yeo2kK9Qal4pMaJ72TIvV6h+8YIg++LY2dcfr5tE49s28RLQ32UTYPhXP1BMWrZPLNpmMe2jBBwPAazJQAKIZOf7hvl4GCKnTNZ+k8tb6QenCozp4rVMftokdJJi8G74wT6JGeHEJeM30E/HexrX/sa8/PzZxpffN/H930SiQSJROLM/0+bn5/na1/72mpVVwghhBBCCCGEWCJ7NE7+RIzeq1oPADqf5yq8dO9usmNJPEcj0lPBn9epfSOFX+78oIlLJTjtEcicahIxpdtYCLF8sT1Fxu7NYGVdEvtC9N8ZY/ieBNt+s4dNv5IicWUIZY13u+i3llE32/jTBjiQeSvFW/du57Vv7OHYQ/UBwrs+cYTMCxKYKsR6Jn0rYqOyFlwmf5Jn4v4swX6d0Y8m0SLyTCCEEEIIsZpiuwMM/VL9OaR4RGZNXZNWe2yjjIsE5NldiLVojXcHCCHE6lEDCoEencnRFIfeu2dJ+XTV4qrJOYrboxz6611t96cVVAILs6SqVaYNg967FexonJlwBFvT0DyP7dk0TrpE/CsvEm+fbG0Jt1LfyIhpKM7SATeK77M5l2VnZuFMdoLX+3o4+efbF613COgtltivzRC4tocd//bpM2VFoKSDHtVwii47nJMA5N8dY1thAfU/H1p0E1v6QJxr8lMc/1a64c1tZdImdXWY8IhBebwe8Jt3Vi6j/YTZPsvfsJ5pu47tL+9PZrtsfgCvlYbarpOzl3cNxpaRRa471DorH4CpLq9X/fXplcmdX8u2zmx3mhFrP5upEW6/TuXBrU3Ljjk+235RYehXU4x/PY2da59JUwgh1qIf//jHQL3xRdd1/vzP/5wvfOELJJNJALLZLH/zN3/DF7/4RVy3/l13//3382/+zb9ZrSoLIS4xxVBQlHpynU5vaBZCCCGEEOtfbEeAw//UQ3Jbnq7d2QvaduyFAXLj9VljNMNlx7tOMD2Xqgccyb3wIua8x8ATLloVFL8+4dnCNTIIXQhx4ay0y9SDp2ZwUUCPqAT7DaJbTHpvi5C8MsjE/bkzyX/XGiXgY9xZxL+5BCGfndYcvqtw4qcjFE7G0MM2enBt1l2sDN+v/4iLtx6un/StiI2uPGYz/oMsQ/ckGP1YkrEfZHFLy/z754CWAbf1BHhCCCGEEGIZ1CD0vzuG7/hM3p/DzkmbhBCnybO7EGufBKcKIUQDekRl62e6AZiPNAgS9H0M12UhEiTguFwxMU/V1JmPhsiHls6IelreDLKpkGc6HKGiGwyWCmwq5M6UVzWNuccLcJHPFL4L+beq9NwSYc/CHAuhMJlAEEdVSVUr7E4vkLDOZtN5o6uHk8lEw33NRSMc7k6xYyHDcUOpD2g/fRwH7OziAL7sqxViuwN03RAm/Vz5zICf9AtlRj+eIjRoUJm0lxyndNyiPGnRfXOE8nj24k5ciLfB1xWO3xJi+6Nlhj+UYPqhPNVZSYEthOg8r776KgCKovBnf/Zn/Lt/9+8WlSeTSf79v//3uK7Lf/pP/2nRNkKI9UMLKSSvChPbGcCIaWeW+xp4Ovg6+AZYvVDaAanBYtN9Hb+pcjmqLIQQQgghBADJq0P0b1ngjk++iHJe7sWdevP71s9ueicD741hdnvUZi3mnyxy8K+28J6nJjj5jc2E31TouvVsgsKn57Y03ZehNU5cFw40T5Dn+Y1nZrWsxt2w4UjzjPe1qtFwues1Dx7tjxYaLn9reukI8a6FKvtfy6D6YHeB1Q3FK8ELeQTxmKnFGu4rbzVPpujR+PxHwtmm28xVog2Xp0vhhsunsvGm+4oEG782pt68jVdVG3fCaFrj5Z7b/PqbgaX9Hu1Uyk266NXmET5dyVLD5aORbMPlr2aaJ8lsdp2DZvNz2RxvnOTzRL5xgtBW+2p2nasVs+k2jqU1XO47jV8bv8VrNp1t/D5/1t/cdBu3yee82XupXtb49dSbbBMxmn/PDPblGy4PaM3f57bX+H0WaJKs9IcTVzfd1zv7jjRc/vEDc023+dFtA2z51S62/no3h/52bs0kCnjt+uav2evU+4ZVs4IRt3BKLm/89/YJZ0UHWwczh6y6dXD9pG9FCLAyLmM/yDL68SQDd8aY+FGu/UZA7GEVY0Yl+wkHL7K03FvQ8C0FtctFCayDLwwhhBBCiEsoNGSiKAqzTxaoTMr4VSHOJc/uQqx9EpwqhBANuFWPwuEqsR1B9k3PMxMLc+5omKsn5xjJFanoGlVDJ2LZmG69M/MX24fIhRvPCjkRjRG1a+zMZahoOq939VIxTDS/PnwjbwbYenT6bdV99pECdt6l/2adzfl6g3FV0wi6ZwfVlAyDN7p7WQiFadRjpHo+Ecsi4Dhovo9qLg5ObaS24JB+oUz39RFi2wIsPFOieMyiOufguT6RTWbD4FSAwqEafbdHQWlYHSEuOTegcOydIbZ8PcfIx5IsPFMi85IEYwixYnyl/rPWdUIdW0in02d+v+eee5qu98EPfvBMI8y52wghLo4eU3GK3pq4j9UjKiMfS6KaCoVDNaozNr7roxoKwT+Kozig2KBaEJyAyCHwRoK4t9QgvgZOQAghhBBCbGie5aOq/pLA1OVwKz54MPOzs4Gaigp4CtkXkqRuTtf/v0FFijbXvZomVPPwFEjfDrXR1a6VEGI9s7MuuQMVEleE2PLrXcz/okjxWPMA3LXEs3xq8/VBoEZcxc7LTCVCrGfStyJEnVvyWHi6xMB74vV+j2XNfF5/eAs/pVK8c+n6tfsTUFVB89F2V+EaoHk+EiGEEEKIjUuF3lui+L5PdUYCU9e0ThkHeb5OrPM55NldiLVPglOFEKIB1VDQIxqe4/PGcPeiwNTBXJGRXJFXB3sYT8bYNp9lx3wWW1U51pMg12LmVBSFN7t6mYzEuG1qnN5qmTcijTOEXyzfg/RzZZ771NXcOjlG3LLOBKbOB0NMR6NMRuP4DUb4hGybXfNpBopFVB9cReFQdwpKzTMfnyv9bJnS0fosqIPvT1CdtbFyLqqmNA1MrdfZR1EVtJCKW5YOXrE67JDK+H1Zum+I0H1zhPCIyfTDBXlPCiE6hmmaWFZ9gFc2m2263rllhtF4RhYhxPKYXRqbf6ULqA+CL41buKXVu3eIbK3Plnrsmwv1gNlzuLsXr5vzIHQSkq+o6D8I49xTgR657xFCCCGEEKunPGkze7ILz1VQtQtLnuJWPPTw2ejT2M4AY9/qQg269Nw+v6EDU7cfzbPtZH3Wzcm+EAd3xNkzOrPKtRJCbASzjxdxSh7dN0ZIXBXqmOBUAEWHrusjdO0PM/1wnsJbzWe9Fh2sUweUriXr4PpJ34oQZxWP1XAqHt03RBYl/lnEhfiDGooF1T0exoyGOamS+pZCrTeBtruKEvTx5vV6YKrqo+8v47wSIjIGpQ/ZEqAqhBBCCHGe5JUhjLhG/q0q1oLbfgMhNhh5dhdi7ZPgVCGEOI+iwfBHkmhBlYkfZpn6j9vPlIUtm33T80zGI4wnY9x4YorucpWjPQmO9KVwtOWNcKlp9a/feK1GolohFwxdghNROJrs4trZaSaiMd7o7sVVm9TP99mSzbFzPo2tqbzV3UUmFKQQCOCqKjs1UIMquD5utf0MqpM/zhEaMuh7V4z4zvrNXaBHp3RyaadzaNCg56YIpTFLggDF6vNg4ZkS5QmLgbtibPrlFDM/K1Bu8N4VQlwAnzUxo2BbnVDHFvr7+ykWiwD89V//Ne9+97sbrvdXf/VXi7YRQly8c+9f+++MAWDnXYonapSOW1SmbLiMt7i1uXpCGCOhLQlOXUKFyhaIbi+jfzuC9qqBe6cMtBRCCCGEEKtHNRVcR2NuLEWtbBKKVekeyp0JVPV98H0FVa3/3/Mgnw8T3REgvNnEs30UHfrvjBPbHiA0XKT7jnn08MYdzBMuOWw7WcLWFZ7Z3005IoMxhBCXh5HQGP5gAiOu4bt+R/WzKBqMfiJFoKven9v/rhhO0WuZiFcI0bmkb0WIs3wH0s+V6Ls9xvxTRdzK0s5TtQL6Qj0wPfKsVt9O86nu9okUPexHY4vWN95ZRN9TQ9tkUdmtvZsAAQAASURBVP1Bkvi3AlRutrH3yPggIYQQQojT7Hy9Dbu2ILOmrnmdMg7yfJ1Y53PIs7sQa58EpwohxHmi2wMEunQWni9Rnanf6Adthy0LOUZyBWxN4/XBHhKVGj3lKtlggKlkFEddflZQS9d5vbuXfQtz7MhmeH5g5YNTddflyrkZpiJRXuvpWzT767kM1+W6yWlSlSonknHe6uk+G8Tq+wQchx2/03u27lmH0phF+aRFZdLGbzKupzJpM/0veUY+kkQ1FNTQ4uNrQYWe26LEdwWpTNvNsy4KsQoqEzYnv5eh/84Yw/ckyLxSZuGpEr70jwgh1rCbbrqJI0eOAHDvvfdy55138vnPf57t2+uJNo4cOcJXvvIVHn/8cQAUReHmm29etfoKsR64VZ+j31ig/11RIpsDAKhBheiWAKmrwriWR3nMpnSiRvmk1TbRy9tVnXGoztr0vzvG+D9lcQrLu3lRbAXlmIF7vQXxDm+RFkIIIYQQHcut1O9ff/7d688sM4M2I7tnMPYd4+Gf7WNqqgvTtLEsHai3OQ++t76ulXXY8flefM9n8oEc7/zR/OU+hTVndKKEAjx3TZcEpgohLgvfg8zrKQbfHwfgxHfTWOnOShKgBlQCXTqe7XPiO2m2frqb4Q8mSL9Uxqv5BHt10i+WO+68xFKKX/8RF289XD/pWxHirOj2AL3vjAL1v4duZenfOi8KXshHrdSfx9K/6sCpR42uUAFvtkLtB0kAjDsL6DvrSTHVHpfSB22iPzQJvKrjbLbwL0EefyGEEEKITtRza/0eTAssfxy6EBuJPLsLsfZJcKoQQpzHypxqXD3VkZIqVbh+fAaA8USMY90JbE2jpnvMh4OkKjXeeXiCQsDghc39lALmso4zHkvQVy6h+CvfY2OmNK6eq9f5YHdP08BUfJ/9k9NEaxZPjwyRCYfOLO8rldm5kCZeq2cydqses48VCQ8bZwfb1zwyL5bJvFRpuPvanMOJ76Yxk9qSbMKJfSHiu4IUDlWZ/qkEpoq1x636TP4kT/KqED23RAgNGkw9mG8/C5kQYqlOyRjWCXVs4dd+7df41re+BYDv+zz66KM8+uijS9bzz7n3+NVf/dXLVj8h1iu37DH5kzzdN0VIXhlEM1Xmf5GnOu8Q2Rwgstk8M6tqdcome6BK8Wjtks2oOvVgnuGPJNn0qRT5t6o4BQ8r7YALegGcBKfH8AOgHqiPGvG22xDq8C9CIYQQQgjR0bIvV/js372I7ykEwhaFTJiJt/o49uowf//yCF1dRW65+RBPPb2z4fZmUif/Zv1+u3Sic2bou5TiRRsfKMaW128hhBBvR3UhwNhPhqllAuC5zDxS6MgAztMDQYtHa4x+MgWAoil0Xx85s46R0hj7x+xqVE+spE7pu1jL1sH1k74VIc4KjxgoikLhcJVAt46ZqM+A7jlQ/FgB/Pp4JPvaMIFundyBCgvvLp7ZfgEAG5irL/ib84+QIzigM/i+OMaXVSZ/nEMNqKiGgpV10AIqQ7scAl0aC8+VsXNL7yMaj0466/2v5due57wdbVmuKu1nWDK11vc4V6Xa1+ON7EDL8oIVaFluO1rbY/THWo/HmsrH2+5jutR6nWKt/fPmQJt6pCvhluXKMrIhBPXWM81V3fYJmxxPbVmuqe0794w2742g0bqePzl+RdtjLKce7fh+6+Cnaq399QoG7JblsWCtZXnJan+M3nixZXlfuP2Yw4OF1p9p22//WXor39eyvOa2HoqfDLb79gK1zfv8rVzrOgDMZWItyz2n9XscQDdav4dny62PATAUyrUsL9Raf79Vl/He8LzW72E92H72SbfN9SiUW9ezXpE2gYRtyv1q+/dfzW79/lrOd6Tf5vutWmx/zcPxasvykWS2ZbnttT/XoNb6e2U5+4ibrevZZZbb7iOitf7+GjXSLcv79dafAYDXGDlbpxvDmAmN4okaC8+0r18n0KP199y6HGvbqW0JnVjnc8izuxBrnwSnCiHEeYL9Or7nU5mySV4TYvuJKdLhIC+M9uNoZx9uKqbBM1uGUHyfrmqVKyfmuWZsjie2DzUPBj2H7rqEbZuIYxN0bKr6289abiQ1em6OEN0aoGJZvNrbj6U1/6rvqZTprlR5ZnjwTGCq4vtcOTPHSL7AfCjEC4P99Py/D2JlHXwXikfqD15mSiN+RZDumyMEunWmHy40vHl1Cl7DGZsyL5cJ9OjEdgbRIiqZF8qUx1s/XAqxGrKvVqhM2Qy+P07/nTEmfti+8UAIIVbDhz70IW699VaefPJJFEVZ1NhyLuXUfcqtt97Khz/84ctZRSHWrL5/O0B2W5T5gQBOoN5I3vfRgxe0j4VnSiw8U6L/3TH674xTnbMpT9ikny1h5VzCQwaxnUEG3xvHKblkX6+SP1Dhjb+6oeH+dv3Osxd1Lk7JY+z7GbpuCBPZHEAP1wd2eP/go2oKtXkHt+aBD1bOxRk0UGI+R/4f2Ys6nhBCCCGEECvp/7V/z5Jlip4nujXA0TGLFwLdbPk1KB6vkX62jFP1+MNHDvDz/72f3defYPf/c+zMdgteZMm+AG7tSzQ9/pOzWxsut1oM+jWbDIDVmwwWfe/om0339eDJpecPsFBqPlB3rtD4PD1XQ3PrzfZaxcc2z/YVnMilGm5j6o0HIBoXMfC1O1C64G2aDbarVZr3nzQbjKhfRJ9Ls30ZZvMBjc22saotjq82GQnUYsCi12STWpNBebbb/D2bLzSeosoKNd/mLbu34fJytfFA9FYDnc0m11PVmr/PVL3xIEq3yZhZ32l+fKvcuM4zfvMBttv7Gs/ErKWaj+qq2I3fA9FA4wGOUaP5wMe+YOMB1ym9+YBFj8bXoOw1Pv/3DDT/btoamG24/O/3jmDENVRDIdCj0//uGL7vM/a/s9Rm2w8EXuviu4OUxiymXygT3x0kvid4pszv/NMTQpwifStCnFWbr/+Bi+0IEtsRbLpedcZm/J+yS5LUL0d12mHywTyjH02y7bM9Z5a7VQ/VVPBdwPcJDhpUZxwUrT7uaOHZEp719kbUVyeD6AkbJHePEEIIIdaQxBUhPMtj6iftk1t0gs3/qgszXm9n9D2fmZ8XCPYbGFGV6UeKeOV1GLAqLjl5dhdi7ZPgVCGEOE9l0sazfEY+nMT3fU50xXmjvxu/ScCprygsREO8MdjFDSdmGE0XGOtunjVO8X32pOfZVMjhKgpTkSiW2j6jz3J0Xx8mujXA3C+KvPjr1zSt82mpapWqprEQOTuw5cqZOYbyBV4e6GMyXu+Ijy0s7WG1Mi7zvyhRnbIZeG+c1ILTdAbVRnynPqtTZJNJ101hhj+UxC64FN6qQl6BeIenaRHrSm3eYeaRAiMfTtJ9Y5j0i2UZeCCEWJO++93vctddd3Ho0KEzjS3n832fnTt38p3vfOcy106ItcsxYesbZba9UWah3+ToFY0Hdy/HzCMFSidqRLYEiO8M0HVtGM/1KRyqMvVgHj2uktwXouu6MF3XhTGOzzPWHSUbDbS9f18uz/KZf6LE/BP1weCBHp3YjgAooAVVFBVQITxi4lU9ph9eH50cQgghhBBiffIdKByqB225VZf8m1WiW00WPB+35JHoLvGRzz++yrVcm6Z6Q+wu2dzw2gJPXtd+9h8hhFiuSjrA5l/twkycHWwIUDxc6/jAVDvvkn6pjG/7ZF6u9wdVpmwWni9hxOszyJ0O3hEdzlfqP+LirZPrJ30rQtTlXq+Se70KKqi6gqLVZw9XNAVFB0VVsPMuXu3tjeepzTqc+F6GQLeOW/HwXZ/ojgDWgkvxSA0trJK6NoQR0/Acn9juAIkrgyiKgmd5WBkX3wctqDD+gyxutXV9fBcmvz9MbTZI8roM3Gi9rfoLIYQQQqwkLaBQnevcdobQiEF0awAjpqLHtDOBqZlXyiSvCtH3zhiqUX/O2vIrBke/sQASnyougjy7C7G2SXCqEEKcx0q7HP9WGj2s4pQ8PGueHRxpun50e4DE3iChIQNfgcF7jxNsEKSp6BDZZJK6Lkywx8Cteoz9IIudnWULx1ak7rmDVWI7g1SmbJyoT8OpTE/ZOZNmWy5L8ViNHX/9FAChQYORjyaZ+Vme8Jtz7Di17lv/86aWx90zmWbrDZB7o3rBjdClkxalkxbBfp347iBd10fwv+dz+CuNs1Cf9oHXs8va/9OFbW3XeWF+tO06ZWt5WdYToWrbdZplyz7XQja6rOM5pfb7mo00D5Y+TVGW97pFI+3Pb1Mi23adQ2pP23UAgmb7TJvpufbnN1bsXtbx+Frr9coTWXYCkVtivLK7i9GpEq6mMD4QIZMInFlv+6+/uLzjCbFRtP6TtHa8jTq6rsvXvvY1vvnNb/L6669TLBbp7+9n//79fO5zn+OjH/3oytWzheHhYZ566in+03/6T/zd3/0d5fLi2RNCoRC/9Vu/xX/5L/+FVKrxLClCbERv7o9zXDfombIYPVxmzwsFZt7G/orHLIrH6oMbzJRGZLNJ1w0REntC9YEWQOlYDafs0RPSGV0oYmsqc/Egk11RZhKNZ7G5WLV5RwZNCiGEEEKIdWP2sQKBnhQD74lz8h8zq12dNc2w66N8yiHpEhZCrKyTPx8BYPyHWTzLX5FAlbXCd2HhqaWzPzsFD6cgoyeFWI+kb0WI83icM0vppfn7bmdd7Kx75v/VmbN9GF7OZfbnxTP/1yIqkdH6dKdqQCHQpWMkNMykzsjHU4x9P9NwVlXfhdLRCAuP9uBW6s9EiWtzZKj3wfg+2AdDoPr4FRUl4GPuXX5SfiGEEEKIleAUPQLdndl+m7ouTPeN4TMzWfoO2AWX3OsVMi9VTgWtavi+z/xTJXpuibDjd3rwXZi4P0t1qgPHsXTKOMjzdWKdzyPP7kKsbZ35l0wIIS4xr+Zj1dy26w28L05se4DyhMXsY0VKx2u4VZ+ed0QIDRh4NR+34qHHNALdOqqhUJ60OHlv5pJkDY5uC+DWPKxM+333FusNqjOPFM4sC48aOCWX/Ju1Czru0d4E26azxHcHyb5ycQ211RmH6kwRPaoR2WSy43d7cGs+1Smb8qRFedxe1DAtxGo4NJxkajDEja/NceNr81RNFV9RGJ4t89KeLqZ7w+13IoRYdzKZDPfccw9PPfUUiqKwa9cutmzZwuTkJPfddx+6rl+24FSAVCrFl7/8Zf77f//vPPvss0xOTgIwNDTEjTfeiGmal60uQnQSx1SZ3hxEc322vFlmIVJPVhMaNggPGahBFd/z8V1wCi7VWYfaMrJXWhkXK1OhPGET2WSi6AqKAvErgqi6Ql5XqRkaNUMjUnW44cgsNV1lIqLilmTAoxBCCCGEEOfzHZj9eYHRT6SI7Qy036DRPnywfpQAD8wP5FHMdTAy4zzDU0W2ThSpBDRe3i0DMYQQK8f3wSoYVCYtKhPtk4wKsWZ16oDStWQdJP08TfpWhFi73JJH/uDSROpGXGX0UykG3hNj6qE8/jldNpP3DlGdXJwIdNNvHUcLu3Dq9sXLalQfPS8ZuubD4EqfgRBCCCFEc+UJi8TeEPqpMSodQ4fuG8O4FY+x72cb1n38R1l6b4mSP1ildMJCUaDr+jCqoZLcF2J6qtBgx0I0J8/uQqxdEpwqhBAXyUhqxLYHmPl5gfwbZxtBI5tNUleFKRypB3hqERWn4FI8WqN0wsLOXZoAy0CPTuKKIPNPlPCXcYhMOECsaqEFlDOZjI24hnUR9bMMjeLRGom9Fx+cetrMw3nCm0xUXUGLqISHTHpvjaJoCqWTNRaeLlNb6MBsOWLdqIR0nrmql65cjdmuEPsOZwjVKlx7ME31aBZPVXDeEyP3epXqtAzKEAIAX6n/rHUXUUfP8/jIRz7CU089xSc+8Qm+9KUvMTIycqZ8fHyco0ePrmQtl800Td7xjnesyrGF6DSa7RHJOQwdr9A3WZ/xVA0rDNwaI7YjiFP2cMouiqqgaAp6VEXV6oln0s+XlzUQsza3OJg1/WKZ2PYA1Y8P0puvkCxbZ8oCjkd8Z4DMS5KhWwghhBBCiEaqsw7lSYvo9gsPTvUtBevnUbwpo/7/nIbSu/7anHcdz+Op8Nh1/aCqq10dIUSH8j0oTETIj0epzIdwahpOVaeSDlEez6929YR4eyQ49e27yOu31pJ+nkv6VoToHHbeY/qhPIN3Jxj5SJL5J0sU34xipc0lgampm9KoxuKACS3lEnpPlspPk2eWVX+WgF8DOqBrWwghhBCdL7YzQHx3EN/1cSqdE5jadWOY5L4QiqIw+2ixaVCtk/OYevBs+1HmpQqp68L4vs/0IwXiewP03RED6pNK5d+sMP9kueG+1oxOGQd5vk6scwvy7C7E2iPBqUIIcZG0QP1GzbPqPS56RCW+N0jy6hDVGZvphy5fh6xqKgy8N0ZtwSH72vIGsM9Hw2xK59n8a12c/F4GK+1iZVxSm0xUQ8GzL7wnyUzp9Qbat5MhtepTeOvszK1pyig6RLcGSO0PM/KxJJMP5C7+AEKsgGpQZzJYv42a6I/QlauRjxrkoiaq7zPSVyO+M0kt7ZB7vUL+YHVZQeNCiM7zla98hccff5w777yT733ve6jnDfYcGRlZFKwqhFibbnwkuyh73su3xun6QZbYjiAzjxSWZuRW6klpuq4LM/LhJJVpm+zLZUonrWX/zfdqPrkDVd76tz0ovk9XoUrYclB8n3LAoOsrcyt4hkIIIYQQQqw/XtVH0ZqX+z6Mv9bP3NEuytkgkVSFvu1pPNfAO3Y2qLX24zih30xfhhpfPtGchel4TPWG8HQJTBVCXDjfAetkkNJzceYXDLSAQ7inghF2MEIOQzdNc+hvYqtdTSFEB1rLST+FEJ2nPGYzfl+WoQ8mGPloktmHQIs4hEbLVMbCZ9bLPNNF5pkuUjcv4F/tgAKVf07gHA8u2aeeBSd1GU9CCCGEEBtW1/X1+5WT92agQ2JThz6YIDJq4tkemZdLlI5b7Tc6R+m4RXxXkO2/2Y1q1NuuSydqBAcNUtdESF0T4cQ/ZrDm119CSSGEWM8kOFUIIS5SdcaheLzG4PviuO/y0EwVz/bJHaiQfv7yZm7pe1cMLaQy+f3MsgNDbU0lFwrSVa6ih1WstEv+zSrJa0IMvj/O5E9yFxRM5zn1Aw9/MMHs40Xs7MpF4vkOFA7VKB6rMfRLCQbeG8f351DWVyIX0aHmu4L87JahRcvcPzlGaNggdXWIvtvrgzNyr1cbbS6E6HBf+tKXAPjzP//zJYGpl9I3vvGNFdvXb/zGb6zYvoToVDOPFPCLKoEuHa/mEf6bOZSh+ixK1dmls6Ie+vp19V98n55slR2xPIMDBramcGI4yonhKLax+DvB9xrfvO769LNLli0dCiGEEEIIIYQ4nxZScYouf7rt+oblPbdFSF19djByYS7K9Fu9uAYoKqinBvtkNhkcygwDkKs0vhu37eZRsLVi49lbzUjjQTkPT+xsui/bbtx12xUrNd2mXDOXLNv9VgEFONqbwK0trXux3Pg8g4Glzz8Amtp8ZFTAuPBBQoVa42vmNLvOLfoCPLdxe0y1ybWs769xR0oi2rhvp+Y0f/3jwVrD5U60eTtRrhRquLyabz4TcCYTbbj8icK2hss9u/nxVb3x+Zt6836dQrFxnZt1STV7BgZQmlz/cLD5QLZKk901O0/FaP6eNQKN37NeizpXHKNpWTMRs/H5uF7jOhft5q9/ONx4X1sDs023GTYyDZcXvMav5f/cuQNUiGwyiW4PENlsopkqlWmbhaezVKbO/36QwFSxDsjMqW/fRVy/1Uz6KX0rQqxPtXmH43+/gJnQuf3BLFqwfi9YPh5m+keDi9bNPN2NdswieFd+cWCq7mFsq6FvreEkkw2Pozjga8isqkIIIYRYMW7Vx0iAonXODYZ+qt3zyP934aK2n3m4QLDfQAso+LqPU/SY/El9Mqidv9cLQNe1Iab/pbBk257bIsR3BVF0Bd/x8ez6j1vz8Co+vld/SHUtn/knivgS39qR5NldiM4kwalCCPE2TD+UJ7LJxEhqWFmXyqSNV7u8PViKBrHtAdIvlLHzy0+dc8XUAslKjblfFCmP1zuUnaLH1E/yDN2TYORjSaYeyOOUlrfP2Z8XKR6z6H1HlOF7Ehz/h5XPNO879eCA8IiJU9QxYvLkINauyoSNU/KIbA4Q7DckOFVsaIrfdMzfmnKhdTx06BAHDx6kq6uL2267jfvuu4/vfe97TE1N0dvby3vf+14+85nPEAg0H1h2sT772c+irFCWBmmEEQKKR2roikFt9uz9ZW3BwSl79L4zyuRP8vh2gy8JRWE+FWI+FSJSttk8V2DbWIEdJwuUgxpzqSDpZIBqQKMUMJYErAohhBBCCCEuTuq6MMEBnbnHz2tzUyDQpTP8kQRaQCXzSpnkVaFFz9CaDU4Aiv0qkUkPo+ijl32ccOcMAGrHsOrPL7rbIen2hRCrTg0ojHw4SaBHp7bgkH25QuFIbUWT0QohBKxe0k+QvhUh1jPfqffrnA5MBQhvKbPtXx8583/PUqhOBZn5WT+lb/ecWR56bxZ9aw3l9FfS0jgIFAcGvwvVAUjfdanOQgghhBAbTeblMoN3xxn9eJKFZ0tkXqisdpXaO3W7tf23usm8UiH9XBnVhN53xAhvMtFMBU7dV/mOT+FwjdmfFxft4sS3Go8vX3i+RNd1YaLbA2zuM3AKLoquoIVUjIiKoim4VQ8776IaCqpRLzNVbVECEUVRiO8M4lkengt2zqU8bpF9+e1f304ZB3m+TqqzPLsL0ZkkOFUIId4G34XiseaZnC9XHcoTFol9QRaeaZ49/Vyq56H6PplQgOyrc4vKKlM2s48WGHhPnMS+0LL3qWgQHjUwYiqKqtRv9Ff4ZjbQo9N1XQSAwhtxkvszqEYH3TGLDef0oI34riDzT5VwyzIYTIj15Pnnnwdgz549fOYzn+Hv//7vF5V/5zvf4S//8i954IEH2Lx58yWpg++/vb+DK9WQI8R65NV8pv45z9A9cTZ9Ksn0QwVq882To5TCBge3Jzk+HCWVt0jmLXrTVTZP1e+nXVXhxT1dzHU1nqFECCGEEEIIsTyJK4L03BQh81J9lsvBX4qjR1X0sIYWVOrt00DhSJX5J0vMP1EiPGIw/KHkmX3oNQhkfTwTolMe0fstyn0Kfk8Fy1QpRzUqkc7sRtUtj9Cpdsi+bIWFhDyDCCFaK2cDjH48iRZSGftBhuq0JIcVG4Sv1H/ExbvA67eaST/PJX0rQqxfD14Zb7uOGsjQdV2Y5NUhPMvnwGddnOLZYPnAz7UGG/mAR3Aa+r8PY3+Xw87Vx4MoKhgpDS2g0nNzhGC/gUOK9EtlKuMWwx9KMnF/jvLY4vFl2s9ajx9xHaNledA8f2b7pcJ66zFtmtp+DIvttU4kEDDa3zvmasGW5bbb+hia2v57u+q0foZXlxGR8d6hN1uWHy93t93HW5netuu0YlkN3n9LtF7HNNsnmElEWwfnhI327y+lzTWdycValr978+G2x2jn2ZlNbdfJ5sMty8cTybb7aPdZmZ1v/d3T290g6v0CjxEza233kYiVW5Znc5G2+3Ds1u+v6Uzr1xXg4dKuluV2m2O0e38CpLPRluWRSPtJJMKB1t+RM3OJtvtoN5u2Gm39WepOFVuWAzhtviMXlvG6BoKt67GcKTccp3U9eoKtxxlnrfZtlDPl1u+v5Xw33ZI82rJcW8ag5iez21qWe/7WluXL+ZtzenB16ZjF0f9fms2fStJ9Y4TKpL3m22Umf5IjdV2Y2I4A3TdE6Lr+7PesW/XrieBLHtGtARRDIbLZXPa+08+Wyb1epf+uGKF+HSNmgAee62NlHArHLDLPt/6uA0hdGyJ5dQgU0IIKRswgMmrSc1OE0gmLuV8Ulz1xk1g98uwuRGfpzF5VIYQQi/guF3SjfPXEHGHL5umtQ/QxvqTciNcbALKvLz9LjBZWSV1Vf8goHK6iqPV6rSQr65B5uYyZ1FD0FIU3Ywx9ZBIj0f6hU4jVUjxeI7olQP+7Y0z+OLfa1RFidfiseMKCS+JUHfP5/KLFgUCg4UCIqakpAJ599lmeeOIJPv/5z/Mnf/InDAwM8Pjjj/O7v/u7HDx4kE9+8pM888wzlyQD+NtpRHm7DThCbATVaZuxf8ww8N56pkrf9VFNlR1PjOEp4CsKvgK2rjLeF+H45ij981W6s1V01ycbM8kk6p/T4Zkym6ZKEpwqhBBCCCHE26SF68/XqWvD+J5PecKmOuPgli2csoedc6lM22cyuAOUx22Ofn2e4Q8mMQZ0PA1UZ/FzcXjWZ9fs2QFhP3//2xtQulocU+W1G2PseKnEtpkCAcflpe2deS5CiEvPKus89+0rARj7fgY7LwPzxMbRqbOdrCUXev3WQtJPkL4VITY6r+Yz/2SJ6oxN/11xtvx6F7nXKsw9UWrYp62VfdwQVHshOAdaDUJDBk7RRQ2qjHwkgZlYOgy369owXFsfRzX8wQSH/z9z+Gs71kQIIYQQq8Are4x9P8uWX+9i+ENJJn+cpTJ5eW8aem4NE90eRDMVFL0+OZHvglP2yLxYIv/G2QB5p+gx92iRuUeLxPcG6LoughHT8H0fLaDgFGHuF0WiW+tj7fIHlxP+fJZb9pj80dsbZ5t5qULmpcXj3+NXBOjaHyGy1SSytQsr47LwTIncsQscf94p4yDP14F1lmd3ITqLBKcKIUSHU02FyCaTmZ+3z7AFYDguQ7kSrw32kAsF6GuwTuFIje4bIwR7dUql5c0M6xQ8Fp4t0X1jhNiOILEdQY59cwGnuHKd2L4D80/WMyy957ESEz8YJv1civ73zK7YMYRYaVMP5Nn8qykim0z0mIpTkIEdQqx1o6Oji/7/p3/6p/zZn/3ZkvVKpfrfJNu2uf322/nqV796puw973kP9957L/v37+f555/n/vvv58Mf/vCK1lMaUYS4POy8x9gPsqSuCaGoCk7RY/a3N6H4Pgr1ZNmRis2usTw7xuvB7QvJAFVTI2i5BGsupuVh6SrTPRKYKoQQQgghxNuVfq5MedzCSGhUp50zs9W041Z8xu/LMvAfegmmfU6+z8QNKag1n2DGJ5j2cBZ0rKDK9HDrWV3WulyPyU+vSfLO16cZXijjM8fLEqAqhDiPa6uceG4Ip6Yz/k8Z3LL0XwghLk4nJf2UvhUhxGnFoxblsQXie4P03BIheVWY8qRF9ZBHcYeC4kBowqfnSR87vng8f/+7YvS/K4bn+nhVj/F/yuIUXdyaj6Ip9NwcIb578XOlL7daQgghhGjCKXlMPZhn8JfiDH8wSf6tKsE+AxSY/HGu6TjsgffF8SwPu+DhWR5u1ad4vAbLiG0NDur03hol0K2jaAqe5eGU6z++7WPENYyERt/tMdyqT+nY0rHkng16VMX3fawFB9+DQK/O6CdTABSP1lh4pv1Mp5dD/kCN/IEaZrdG721RQoMGQ7+UIFUIwDdXu3bifPLsLkTnkeBUIYToQG995cYzv6uez/aXTjD9mS2M98TOLA93FxttSv9UPQuN32sR6m+8jp11qaUd4ruDlI5b7Pq/PLOseqWfL2PnXQbeE6d4tIZzCTux5yJR2OpQPBbFqTXPXPPs3Ka2+wob7TPfTC8kllWvbCbSdh2/1P7Pr2Ivs6Mt0P4aKyfaB0H4y0wwk9/UfsVpvf1gsFrVXNbxynPtr6dabn+tfHN5Dyp+sH3dU4lS23Uy9+9c9H9trMaWlysMfKGXV98dg1MZfVIfPLSsegkhLq+xsTHi8fiZ/zcaQAEQDJ7tUPzDP/zDJeXXXHMNd955Jw8//DAPPPDAiganep70XgpxWXmQefFsVsWxgeiSVXJRk+58laObYhQjxpJy37v4jH5CCCGEEEKIxarTDtXpC88e79k+07cYbH7AoudVh5mbDLyAQnlAoTygMpmPt99Jp1BVHt83wO2nAlQ9ZZ5Xt/Wsdq2EEKvM98Gu6Bx/ZpixFwbxfYV4f1ECU8XG1Kmznawlp65fpyT9lL4VIcT5PNsn+0oFLaTStT9MeMgk/JxP/ICPWgP11BASI7902+qsTXnCJnegglPwUE4NXfFqPjM/KzD7WIEdn68nCZr+aR7kK0gIIYQQDegxlZ6bI4SGjfpMkRok9p4d86uF1IbBqaOfTBLsXTo2xSm7HPtGusUBoWt/mK7r6jO8WxmX0vHGQaRmj86mTyQZen+iHix4qho+oEA9qNXxOfaNebxTsavdN4dJXRvG93wyr66NwNRzWQsuEz/MgQ49N0UIblv5pEjrjeu6fO1rX+Ob3/wmr7/+OsVikf7+fvbv38/nPvc5PvrRj67o8eTZXYjOJMGpQgjR4TxVoRTQiVfaz3AaLjrseT1PzVQpxpY+lJyrPGGRuirM8IcTpF8oU5loH8AJUJmy8WwfK+te0oZV3wVvykDpvfABSEJcbvOjATxNYcfzZXTLxwlIcIoQa1k8Hl8UnNpMKpU68/uePXsarrN3714efvhhjh8/vlLVE0KsUWP9USaGw6tdDSGEEEIIIUQbnqmQ36IRG1vejKsdTVV5bN8Ad7w2xeh8CV9ReG1r92rXSgiximbe7Oa1+3cBMLhvloE988T6Sjz/n7esbsWEEB2tE5J+CiFEK8WjNbr21/t4fMANQ3F7fVxHYN5HcUAvg34ql3npZI3IpgDBPoPYjgCZl8t03xRBURTmnihi5126b6gnY599vEDhUG3JMYMzHm5IwY7L+BEhhBBiI1KDMPi+BKGh+lhur+ZTnrIIpHS0YD1g0rU8anMOelQlNGgQ6NUJdOkE+3UUXaFwuMrcEyW0sIoWVOi6rp5sY/tv99AoG5OiKqCCoig4FY8T31nAqzavozXvcPQb8yT2hAgOGOhhtR6VSn33TtEj+1r5TGAqwMLTZTIvlfFs1nZyDgfmnyjh/GJ5Y+M3qkwmwz333MNTTz2Foijs2rWLLVu2MDk5yX333Yeu6ysenCqE6EwSnCqEEOtAxdQJ2K0H0qiuz97X81RCGs/d0oWntW7cnP9Ficq4TdcNYUY+nMQuuBQO1ahMWlTnHLxa4zSyakDByjpnHphWmqJDaNDE+lEYP6th3Np+Fksh1gLHqH/mNMfHadwfK4ToMLt37z7ze7OBFqeXu+4GGPAqxAay8zdeWO0qCCGEEEIIIS7S8fkuamqZK8s5xqaTuPrZzOg9iWLDbeaqseY7vMAZ19QWTfNBs/FAmLlM8+OrWuMRPkbo7L6evLGH256bY9NckYU+g/lwsOE2mtp4X4rS/CRrduPu5lfmBptu4/uNL0IiVmm43PWaX7Rm+7Ic7YK3CRmNr3++1Ph6AeSa7MvUmyfW1Jq8ZorefLSWbjben95kG99ofs36E4WGy3tCjd//ACf1VMPldpPrHA40T6hqNHmflSyz6TaO3fg4vt14ZgPfaX7+dpOiQLD5QLRm75lmnxmAXYnZxtu0+Dw1k9AbfzaSWvPZJ2y/8WfzF/9tlNCgw/xTJQ5/VcF3e4HeC66TEEKcS5J+CiE6nWrW7/eKR2uk/2PzRKRa2Sd80sd+zCKyqd4PbMQ0+t559pmt745ofdYzoDxpUXirBipENpnEdweJbj3Vr/yIS367yvz1KloFUMANAooEqwohhBDrnRZW2fYb9SSCtbTD9EM5rEy9nSk4qDPykSSKoqCZKju+0HPm3gLA933cikfm2TLZV+ptRm65vu1UusDQ3XHUJpOn+KcmHqpMW+QPLE2e0YhXhcxLFaBx+1TDbZa3a7HGeZ7HRz7yEZ566ik+8YlP8KUvfYmRkZEz5ePj4xw9enQVayiEWEskOFUIITqZ77NlrkBXocqRgUTDVRTPp3+qysjJCuGyw0s3pNoGpp5WOmFROmERHDSI7wyQuCJI13X1Rlin5OLWfDzLBx/0iIoWVlF1BbfmMfto80EMF0o1FeJ7g0Q2mQQHDFRNwS+7BD6UQ+2XmVNFZ3DPCU4VYqNRgIsYc3XZXWg33/79+wkGg1SrVY4ePcqOHTuWrHO6AWZ4eHgFaiiEEEIIIYQQQoiVUA7Vu0hDVZditHFw27qiqjx1XS93PTHN/tczHNkS5eiWFgG3Qoh1SzVVnKJH6XjzAGIhNopO6btYyy60X0WSfgoh1qrklSGgPjtZK25YobBHofZ6lfK4TWxHgO4bI5QnLeZ/UaKWcVA1pT57WUhBC6oYSQ0jojL4/qXjugILHpt/4KGdujVzQlDpV6j0q1S7PBxTwSz7+BrYoQ3w7CqEEEJsEHrk7N/1ypR9JjAVoDrlcPhv51F0SF4VwkzpuFWP6qxDddrGKTa/X/HKHuM/yF7Kqm94ndqWcDHpT77yla/w+OOPc+edd/K9730PVV18PzoyMrIoWFUIsbHJE6sQQnSoaMXilkPT7BtPc7I3xqHBZMP1khmLvQcKxIoOCz0B8vELz0tQnbKZfbTI0b9b4Pi30kz/S57cG1XK4xZW1qnPqnqkxvxTJcb/KcuxbyxQPLIyqW8S+4Js+VdddN8YwbN95p8scfzbaQK/mpHAVNFRXP10cOoqV0QIsWIikQj33HMPAF//+teXlE9PT/Pggw8CcNddd63osT/3uc9x6NChFdvfoUOH+NznPrdi+xNCCCGEEEIIIdayarA+C2OwunGCHjxd5cnrenB0he3Hi6hO60HXQoj1yc46GMnmMwsLIcSldDrpJ9B0dpVLmfRT+laEEM1o4fow2vjOIOb88qIN7JxL+vkyc08UCQ+Z9L4zSv8dMQbeF2f0E0lGP5Zi6JcSbPpE6kxgau6NszOOlQcV7KhCfqfK9Ds1Zm/S0CsQO+7T97TLFT8pc/V9JfY8VGbvA2WSY/bKn7gQQgghltAnIfozlcQPNMJPqgQOQugFhcgjKtGfqtjPhfCq4BVVvAsYC+qVwX4xhDut07W/PkmQ7/vkD1Ybru87kHmxwszDBeafKFE8XGsZmCrESvvSl74EwJ//+Z8vCUy9lOTZXYjOJDOnCiFEB7rm+Bwj6RJlU+epnf0sxEJN180lTQ7ujREpOoyMVdh2uMTRndGLPradc7Fzl2fATmSrSd/tMXIHKiw8V8Ytn32wUpSLyeMixOoxqvX3r6PLe1dsQL5S/1nrLqKOX/ziF7nvvvv49re/zd13381v/uZvApDNZvnsZz9LpVJh27Zt/PIv//KKVvXrX/863/zmN/nUpz7F5z//ee66666L+tv4yCOP8Ld/+7f84z/+I57n8b/+1/9a0XoKIYQQQgghhBBrUc1U8RQI1jZOcCpAKWry8t4U17+a5so3c7yyL7XaVRJCXGZW1sWIaqimgmd14DQPQqykTum7WMsu8PqdTvp577338vWvf5277757UfmlTPoJ0rcihGiudKxGqN9A0RQGHvKYuD9HeWx5M81nX6lg513iu4MYSQ236pF5uUJ12sZKOxgJjUCPTmXSxsq4zP682HA/yatC8I76eK7agkOgW8ezfcrjFk7Rw/5f84RqZ+/fdj8daVs3x28dRDAUz7fdR1BrHRTbHSi13YfltR6mXHGNluVVp3U5wHQp1rLcUNs//w+a2ZbleSfYdh+JYOt6OF7r16RUNdsew3Vb7yMWahzkdK5PjL7UsnzUSLfdx0OZfa3rYbae2OK52dG2x0gFKy3LNbV9kNbuoZmW5UfmetruIxRo/X2gtInXsZz2CYKK5XDL8nyg/fuvJ9r685gvtD4GgGO3PhnDaP9ZMrTW61Qr7d/n7ahtjuG0+ZwAFCqtr6mqLyMIUGv9XH379sMty6+ITrY9xD/PXNGy3F/GPXm798YU8be9j7lK6zHJc6X2f7eUNtNRGsv4zM/brb+Hbb/159EZ14n/tP53y3N8ggWV03PB+X69ft5kGO/F+ufJyrmc+Fb770yAzf9HCjNV33dka31fC8+UqM3JbCcdpVPbEi6wzocOHeLgwYN0dXVx2223cd999/G9732Pqakpent7ee9738tnPvMZAoHAildVnt2F6EwSnCqEWBFaUGHko0nMlE51xqZ43KJ0vIaV2VgDOy6HQI/OSLrEG8MpjvXG8dXWN1yepjA1Ug9etQIq2w6XKMZ0ZgfaN1istuS+EOVJi9lHGzfMCtFJ4vMOtqlQicvE9UKsJ9dccw1f/vKX+f3f/30++9nP8sUvfpG+vj4OHDhAuVymp6eH73//+5jm229cP5/neXz3u9/lu9/9LgMDA3zqU5/ijjvu4Oabb2ZkZKThNhMTEzzzzDM89thjfO9732Nyst7Q7fu+JH4QQgghhBBCCLFxKAqOrqDbGy8wK90VpBJQ6Z+rYtYcrIDO4FSZnccKBKz6AC/bVHjhjgSeKW2ZQqwHlXyAqbd6sKs6kS31AWN6RMWypB9XCHH5rVbSz9Okb0UI0UjujSrhURNFgdCQiR65sGeh0nGL0vHGwWtu1aE60z7opHi8Ru87opQn6uOkLtfEAUIIIYQ4S+128H0fz/Y5+rUF9IRKIKlhZV3sXL3tNLK5PmO6EdMojy8vmQVA/nCNnht1XMvDKXgUjtTIvNg6CF+I1fL8888DsGfPHj7zmc/w93//94vKv/Od7/CXf/mXPPDAA2zevHnFjy/P7kJ0HglOFUKsCMVQzmR0CfYbBPsNem6O4FoetTmH6pyDlXawMq5keXmb9Gi9AXS8K9o2MPV8J7eE2X64xK43Csz2B2CN3mypQYWua8OER0ym/qV9lj4hOoHid2bCJCFWhH/qZ627yDr+3u/9Hvv27eMv/uIvePLJJ3nllVcYGhrigx/8IH/8x3/M8PDwytYTiMViFAoFFEXB932mpqb48pe/zJe//GUAEokEvb29dHV1oSgKCwsLzM/Pk81mz+zjdEa/040v8Xj7TIhCCCGEEEIIIcR6oLo+igdKRzRYrLw3diW47tUMdzw5h6/UJ3nwgWJCI5p3MSwf3YXlD60SQqxV8ycTPPu/r8T3wQzZhAZ0cq9XsLIS7CBEx/RdrGUXcf1WM+mn9K0IIZrxaj4TP8ytah18x8fKuYSHTbb8WhdzTxbJviwBK0IIIcTl4nngzRn4HqhG/X7fyXk4ucUztpZOWES32+hRFT2sEtlqUjphwanVzJRKcKA+67dng2/7GAmN5BVBfN8n/WyZ7KvyN75jdWpbwqk65/OLx+QHAoGGs59OTU0B8Oyzz/LEE0/w+c9/nj/5kz9hYGCAxx9/nN/93d/l4MGDfPKTn+SZZ55BVVcu0aU8uwvRmSQ4VQixIpyCx9G/mydxZYjE3iB2wWPh2RLBXp1gn0FsewDj2jAAdtGleKRG5uUKbtlrs2dxPqdUv2Zhy8YytGVvp3g+O96qz0B6YmtkzQamRraY9L0rhqorzD9Toni4ttpVEmJF5Hp1hg7X6DtuMbt16cOcEKKz3X777dx+++2X7XhHjhzhT//0T/nqV7+K4zhnGlJON6xks1my2eyS5acpinKmAUfTNH7nd36H//yf//Nlq78QQgghhBBCCLFa9g1OEToGhguxfUX2xYtnyiaLiYbbGGaLpJtK45EokVDjtu3eSLHhcoBcLdhwec1u3qUbMBrXrVAMNd1mWkvy3BaDKybTeIrCQjTIm4NJvJjL+5+cpGZqzFnRM9GpwXDzMNVIsHFZudY8oERVG/cNVWqNz9N1m/dnNOvqsJvsq75N49dsLNPTcLkaav76xyPVhsujgeZ9G1W9cVBgItx8UJqpNdnGbHx8y2vef7Q3Pt1wudrkugCE9cavc9YKN1zueM0HI82Vog2Xz882HyCk6E36E9XGddaCzQMvw01es5FE82CEeJPrnK01/5w180vJVy54G4/G19NUmp/n/9ixF9VU2PxrXVgLDlMP5vE24GzRQrTUqQNK15IOSvoJ0rcihFjb3IrP9E/zRDabdF8foffWKL23RimdtJj8SU7+ZgkhhBCXUPVfYrhHAoCCovpkXiq3XH/uqRKhAYPIFpPo1gC+61PLOARSOorWuMHS932yL0tgqlhdo6Oji/7/p3/6p/zZn/3ZkvVKpRIAtm1z++2389WvfvVM2Xve8x7uvfde9u/fz/PPP8/999/Phz/84RWrozy7C9GZJDhVCLFi3KpP+rkyiqqQuDKIokDmpQpQv5FWtPqsqpGtJvHdQWI7g0z+JCczqV6g2oKDrSr05KtkI40HqpwvmrfZdbBILG/z5p4Yk6MX3ll+OXTdEKb7hgjFYzVmf17ArUrLqlg/Ct0601sDbHmtgh1UyAyufLZfIcTG0dPTw1//9V/zh3/4h/y3//bf+Na3vnWmUUhpMCrz3GW+7+P7PuFwmF/7tV/jj/7oj9i9e/dlq7sQQgghhBBCCLHawkeh1g/uBk6WPZuMMJuMLFq2+2QWFTi0aQNfGCHWkfieIKqhMP1wQQJThRBrzuVO+gnStyKEqAsNG1hZF7e0NiZUUHSI7QySuCJIsNdYUm52aRKYKoQQQlwingf202HcowHQQL+6xJv/1zJe81x99e3KHsf/IY0aVknsCtB1fZhAl46VcymfrFGZdsDzUQwV1aiPry8da7NTIS6DsbGxRbOINpo1FSAYPBuf8Id/+IdLyq+55hruvPNOHn74YR544IEVDU6VZ3chOpMEpwqxQR35h2vbrrP9X73UsjzQq1Obd8j/eHt9ge/TNWYTPGKh5T2GP5QkPawzuTuAl6j/4S8DaUCr+Wx5ssLIr6Q4cWOQwqDOXL5xpuTzbfrlV5e13mWlQmx7gPCIiRpQ8Go+TsXDKbgUDtXwrBVsJfSgdqTKllkb7b8cwj+VFDk8YhDbGUQ1FaozNnbBw4irRDYFCA0aWBmHiZ8XUKfnGFm52qwcBbr2h8m8Uual//tm+N3WM7seemV5gbm+136GWKW4/Blo2x4v3DxL9ZnjRZcRkL2MegMYQbvtOrbf/lopzjJn0k23n/FzbnYZx7OXd7zlvDJutP01X3ZDffNk7mcE9Pav3w29JxtXYwDcH8TYlcmi7S/xxjKrJUTH65Ts451Qx/Ps2rWLr3zlK/zlX/4l//AP/8BPfvITHnvsMTKZTMP1E4kE73znO/nABz7Apz/96UWNTUIIIYQQQgghxEagOGDOQX7/atdkbVEdj22TBWxNYaI/0n4DIcSaF+ip9+W65bUReCHEWqP4TSdAF8vUqddP+laE2Li6bwrTdV39eac6a1M4VKNwuIpbWZ0vtPieID23RVB1hdJJi4lnc1RnbLb+eheKpjD5kxzlifbjgoQQQghxcWr3JfFmDTA9zHcUMXbV2gamnssre2ReqpyayElsCJ0yDvJ8p+ocj8eX9UybSqXO/L5nz56G6+zdu5eHH36Y48ePr0QNl5BndyE6iwSnCiGWTQ0oJK8K4ZY9fA/63x0DYPxwDSuk0nvcIjbvkuvTcEugudA14dA14ZAb0JjfaVLqqYeauQGFo+8Msem5KlueqjKzxyTX42IFVi5I8HLa8q+6MKKN6x7sM5j5WWFFj5d5uczIh5Ns+60ePMtH1UA1VWrpegdz1/URVEPBszwqUzZTD+UpHq2t7RtiH3wPnKIHDTKbCLEulBUoqNAnM0YLIVZWLBbjC1/4Al/4whfwfZ9Dhw4xNTXF3Nwcvu/T19fHwMAAu3btaphBTAghhBBCCCGE2CjMWVA8qA2sdk3Wlm3zOVQfXtmWXO2qCCFWiBZQcCsSmCqEEM1I34oQG49+amzX7GMFwiMmPbdE6L4lQu61CgvPlvAv81AO3/HBAxRwSh7lk/VomCNfW7i8FRFCCCE2oNrT4Xpgqu6hbbJwDgVwXgux+f9Q0KMavu8z/1SR/IHaaldViMvu3NlGm82uenq56y5jgqG3QZ7dhegMEpwqhABAtz02TZVI5msUwwZHN8WWrGMkNLpvWJwt2615DL1RQ/WgGlF569YwhT6dfT8tohXPdnYmpl0S0xUOfCCME6xPTejrCiduDjJwwKLvLYuBg3MUIzqZlEklpFELaOTjOtWgtuaDFeefLBHfHcTKOfi2jxpQSe4LAazsrKmnVKcdTnwvQ3jYQDUVfA+q0zbVmVOtpCqounJJjn2pqKYCa/tlFuJt808YUFNRr5IGC7GxdEr28U6o43IoisKuXbvYtWvXaldFCCGEEEIIIYRYcyJvgRMFZwMnzdYdj+tOzIAPJ7tjTCfCbJ3L4ykw1RNa7eoJIVaIGlCxs5d2cJgQHa1TZztZS9bR9ZO+FSE2hvTzZaLbAmhBlakH8/WJGvaFSO0PE9lkMv3TArX5yxehWjhco3i8RuKKEL23RUnuC5F+qczCU6XLVgchhBBio3LHzPovjop7+FTwnQp61MetemhBhf474oQGqsw8vLITFInO1SnjIM93oXXev38/wWCQarXK0aNH2bFjx5J1jh49CsDw8PBKVHFZ5NldiLVLglOF2EAUHRL7QpTHLfrnKiSKFjVDI1RzGJ4uo/qQTpiMTpXoztZYCCq41bN3I7VZByvnUpmwyL5ewSl6eDWfwo+2obrgGpwJIn39rgiRjEti2iFY9ECH7Ih+JjD1bKUUpvcFmNth4p/QSWUsuhdqBGou2qnY1mpAJd0VYLYvWF8eUnArl/bOTjUVtKCCU6zPEttO8UiN4pHFwWang1PTz1+aBkM765Jr1qHsXZqg2Eup97YovudTOCxBe2L9UjbZ8ISPf8xAuUbe60IIIYQQQgghhBBCXE7hTSbBSUi/kw2dLPH64zP0FKv4QO+pfxXg+EAEVLXN1kKITqEFFKo1mTlViKYkOPXtk+snhOgwds6ldMIieVWI9AtlvJpP+oUyhaM1Bu6KMfrJJE7JAx/mnyotGQt2KfgOZF+p0HtbFICua8ME+3SmH8q3HB938ubG49FUU0GPqKimwvDfBsBWwAacU/8GfejxIOXh+e0fjK9LjLUsvyt6oO0+3rL6W5b/eOHqluUlx2x7jJBhtyxfzrn+w8kbW5YXq41nDVtUD7N1PbYk0i3LE2a17THamSlH265zuNzXsjxjRFqWA4yXki3L81br61Wz2w9fL2qtX3tNbf+8U3NbHycZLbfdx5Vd0y3Lj4a7W5brSvt6Km2ihgrF9snEFpRwy3JNb5+8yKlpLcvLufb1qAVaH0fVWpfPz739jHKa1v5G1bFbn2ss0v7zWKkZLct7zGLL8i6t/djiwXCuZbm6jJvy6cLSyYrO1RNtX4+7B95oWW6orZM7PDC9r+0xSlbrz3ym3P799/TClpbl88Wz32/qdR6RvEMtpGEFlDPton0fPUhoxKDv9hhmAkKDrV9nIdajSCTCPffcw7333svXv/517r777kXl09PTPPjggwDcddddq1FFIcQaI8GpQmwECkQ2mfTcEsFM6bhVj9E30qiAqyrYusL4YIRjI1EsUyNWtLjp5XlCH0ty4tuZM7uJbDYxExrp52yshbMPiL6m4J7/nKYolLp0Sl31rxmjTUOAG1CYGwgxM3Dq4cH3MWyfRM4imbXom60xNFUBoPbhJGP/mFlW0OgFUSC2K0ByX4hgX/1hwq15FI/WKI/bKDrEdwcJ9Rs4JY/KpH2qzGpYl/F/ymJl3UUBvqKx8IhBfE+QmZ/lccvSSS7WLyXqo+yt4T0bwrcVFK2IL0nLxUbQKQM8OqGOQgghhBBCCCGEuDgq9N4WodYP1dHVrszlEytYbB/Lk8xbqL6P4oPu+mRDJk9uH2TrfI7+fBlL03hzc2K1qyuEWCGngxKkn1IIIYQQYjE766BtD7D9t3qozTvU5h2cikfhcA3P8tEjKmZKJ74rcFmCUwfeEyO8uR6MY+Vc5n9RZOieBL3vjDL90PJnadMjKt03RYhuD6DqpwIxH2i+vt/jkhhxcUIK1R4FN7yBMzgJIYTYkDxdpdC1OCA2WHTY9KkUZrcGPlRnbab+Jb9KNRRrUqeMgzzfRdT5i1/8Ivfddx/f/va3ufvuu/nN3/xNALLZLJ/97GepVCps27aNX/7lX17hygohOpEEpwrR4bSQQvKqEFpIpTxmUTxmLbqBMJIag3fHCXTp2IV6BJQWVCmEdZ6+thfD9tg8WWQ+GcAy6xGmhajJ4c1x9thZUAEPem6JkLo2THncujwzWyoKtqkw3xtkvjfI4R0+kZJD94LFzsMFtIiKU1i5IEYjqdF3R5TwkEnxWI3ph+tBksFBg9iOAIm99aDZ8rjF/NMl9IhKZJNJfE8Qt+ZROmHVA1XHLHy3PkstCiT2BtGjKp7j45Y8ammXyqSF3zpJ0Iaix1R6boviVDzyb8pMkmL9U2+r4AV9/BdC9NwKc4+3zpAmhBBCCCGEEEIIIYR4e9SAwsB74hhxjfFrdWyv8aDbdL7xDBOq2nzkRiRkNVzueo1nIM3Vgk33VW0ya0iwxcwrVatx5n731EwXN746j+l6OKqCqyr4Ckz2hHh1Rwpf9Tgaj3GU+uwJoUjjNvpIsPE5AqhNZvZwnFYzsDYu85vMZONYzbu0w9HGddZbzAZiNZnVQos2Ps9kvPksKu8derPh8uFApuFygKOV3obL03bzmWlyVuP3TbPrH9abv2Zuk+s/UbnwmUmsJdlr62yv+ewjjtv4+FqLmVV0o3HHmqM1eW+0mHHGcRrXrdhiVp+y3XjmjqDe/LMZaDJjSNVv/P6LqM37yNJO45mPVBr3lU4938e236zP3FOZaP5eEGKjU/yWXxdiGeT6CSE60cKz9ZlSw8MmwV6d0LCBFlRRAwqqVn8mcSoehUOXZwxToM9AM+v3yGZCY+ieetIgK+sy+P44RkLDrXgU3qqRf7PxLH5aUGHogwm0gIKdddHCKnq4yXMXPgoKyrxG9/zZ+8nyoEJ2t0q1v9WznBBCCLGOOR77H8+hdGtYWZfJ+3M4RZlsR2xc11xzDV/+8pf5/d//fT772c/yxS9+kb6+Pg4cOEC5XKanp4fvf//7mGb7We6FEOufBKcK0clUGPpA4kwjVGJviMKR6qKsab23RdECCmP3ZojtCpK8sh5keWI4iur57DyRZ2i2wqbJEk/u76UQrd8gJAsWVtbldJ9mcMCglnaY+FHusp2ebnt0pWukMjaRkk2o4hKsedQWnIu64dciKuFhg/CISbDfQDUVVF1BNU41LJZcxu7LUp0625FcHrdJP1tGDSgomrJoVs/5J0uYKY3otgDRbQHiu4L4ro9b89GCCoqq4FY97JyLYtSzE2sBFbvgMv9U6bJk11vrwptMBt4Tw3d8Mi81H9whxHqiKKDuq+G+ECK61WT+CVZ+JmghhBBCCCGEEEIIIcQZse0BIptMPMfHKPq4IfACG2NWGF8BS1N56Pqz08UqujRICrFepQ8nGHtsmOxrZbKvVHBK8nkXQgghhDifteBiLVSWLFc0UHQFr3b5ou9PfCtNcNAgvuvs5AkAXdeG8Ryf/JtVzIRG/50xwptMZn9ewLPq9YvtDJDaH8ZMaXiWT/FwjcS+EJUpm8LhKonPahDw6z9BH5IeykEDf0GDBRWlfDYQNTzlE55yKQ96zF+n4UQ3xjOzEEIIcVr/ZA3Vh5nHCuQPyPhuIQB+7/d+j3379vEXf/EXPPnkk7zyyisMDQ3xwQ9+kD/+4z9meHh4tasohFgjJDhViA5lJDWSV4UI9hlYWQczWf84ayG1vnzAYOHpItUZm9CggRpQCA+fzcR75aEsHKr/7qgKnqowPF3m4I56cKqjKQS6dAbeG6N0wqLwVpW+O2IM/lKc9LNlaguXburPaMFmy/ESPfNVNA9KYY1CrF73YM3DSGj03xUjf7BKZco+E0CLcqqRUFNO/UCgSyc8YhAaNgl06fi+T23eoXSihlvx8R0fz/Zxqx7lk1bTALF6o+PShkcr45J+vkz6+TJGQiM8YqAFVJyyR3XGxsoszvJsdmn03BJl8H1xSrstZh8rrOgMsB1Dga7rw3TfEKF4vMbMw2cbToXYCJSgj3pXEf3hKJGtAQlWF+tf4z+ja08n1FEIIcQZekwlsjmAFlTQAiqe41M6XqM6c+meV4UQQgghRGfKH6yCCqlrwwz8wsWKwsQv6fja+h5sG6zamI7HQqz5jJBCiPXD92D8F0MkNuc59DfS7yBEW75S/xEXT66fEGKd8V3w3cvfaVydsqlO2cw9ViS8ySSy2UQ1FIrHLYqH6/d1ka0m/e+OseXTXdTmHLSQSqBLp3i0RvblMqWTFqMfT5F/s8rMz+oTWyS+FFxyLP9668zvxwopBn7uEp7xsSOguPUg1U33O0zdoVEZlFlUhRBCbByh0wm+3NbriQ2uU8ZBnu9t1Pn222/n9ttvX7m6CCHWJQlOFWIN0KMqiqZg55be0aqmAko9ONKIq8R2BYntDGImNDynfqdwOjAVIDx0alZQTSE8YpB7rYJqKAx9IEH6hTKpazTwfWoxg1Ctfjzd87EVGJkpc2w0Ri2g8cb2JMH/PUtib5DYjiDj/5Rl6qE83TeEGflEkpmf5iketZbU96L5PrG8zfBEmaHJCpWQxtFtMWb6g9SCGgC3/WKOmb4g2j/NE98TJL4zie/6+N6poFS1cceHnXcpj1ukny9TnrDwqpfmrtDOueQavIbnstIukz/OEd5k0nd7lNFPpBi7N7OhAlSDAzpd10cIjxjMP10i86LMmCo2Jj+r4bv+JQ32F0IIIYRYz/reGSU8YuJUPLyajxpQ6NofJvtqmbknSp3ZISCEEEIIIS4J34Pca1Vyr1UJ3TvI8EMO0RM+hW3rO6Di6mMLALy+uWuVayKEuBwW3kpRzQTZ9v4TPId87oVoq1MHlK4lcv2EEGJF+R6UjluUji8dk1c6ZnFiJkNiTxCzS8POucw/WaQ8ZtdXUMGIa6RfuIBxWIrC9Lt1zLRP8k0XM+dDtV40+KhLpdejsCWO3mUT3FJB0VbgJIUQQog1pmeixtaDJUzLx1OglpboVCGEEOJCSXCqEKssvjdI/7tiANiGQi5lkE/p6LZP15xFtFC/yc10G6QWbBxNYbo3yExfiGzcIGB5xIo2C6kAjq4QqHl4QYVdb+UZnqzQdX0EqAdunvz8CK8k6zOj7h6aIVeB5NMQnAR7k09gEm7MTJO/oV63mb/oZ9b12fVAheRvd3HyliBpDYafrzFwd4KZKw3mdxgMhvNtz3O+El260PPpPu4Qm3YI5TyMagm34jH3fJncgQp40H9qVUWF4O/0kH8gS+ave8j4PoGMTzDto/g+vqrgq+Bp4KsQMB18DdwIuFENlBAQInTO4cO6vazX6HC2p+066Xy47TqOtfgr17Rc3vvcJPk/3clEX+TM8p2/8cKy6tVRFIjvCZK6NoyZ0CibOs+MdDO/v/F1U8aXkXlPXV5Pl7KMsUWK234l31xmz9oyqt7X0/4zc0Pv2LIO98TUlrbraNFq23XKNaPtOgCO076l2SqY7XdkLzO7otb+uivB9o0B0XhlWYfzl5Hd96MjL7dd57bwobbrPFm9iiPOAL4jvbZi/VP8+s9a1wl1FEIIUacGFMIjJnNPFMm9fvZ+N3l1iN7bopQn7IaDN9SAghHXqM3VE4QoKgT6dEKDBoEeA9UAFAVFrT9HKyrYBZfikRrFYyuYoEkIIYQQQqwaK6VgxcFM+7BttWtzCXke3YUapYBOMbyMNlshREfzfZh8eoDk1hzRgTJIcKoQQgghxLrjlr3mwaceWBmH2M4A+YPtxwmdy+pSmL311Lg21yf1ukfqDY/QnE9hLnlmvcEvnJQAVSGEEOuGWXa46pkCwYqHp8DUaICje8L0/c+51a6aWMM6ZRzk+TqxzkKIziLBqUKsIi2o0HtrhNzBCic/3U88Y5NI22w+VMYxVAzr7GyakaLDK3uTzPYE8bSzwVNlXaUcPvtRrgU1NM3HNhYHfs13m6S7zEWRel4I0u+G2IsQe6O+zMgtrqOvKYzfFGDzE1V2P1Bm8poA4zcEcIIWA6/Z+IqCf9WFn7te9dj8dJVw2qPYp5EZ1bH+co7KtA0NJhEN9BkoioKdPxWEpijUuhRqzfpVjbU/E+HpGDhHW9+Z2QF6bomQuiZM4XCV568bJh0NLi9qVIh17Kp3HuatJ/sZ+UiSE99O42+cCZSFEEIIId42LaiiaAp6ZPGzb/aVCol9IQbfF8cuujhFD6dU/1F1iO8JoRoK1Tkbz/YJ9hmouoJredRmHTzbx/e8+r2ZB77nE+jWGXx/gvmnimReWl7SEyGEEEIIsbb5uoK6zpPG7R3LogInexskDxVCrDtWwaCaCTJ08/RqV0WIjtGpA0rXErl+QgixtuQOVOl9RxQULn52a00hc7VGfodKeNpnuzGPnTbQE86yEvYLIYQQnSCasbnq6TyKDzNDJof3RUCXP3RCCCHExZLgVCFWiWIo9L07hg/MP1ki+38zyfYszlw9eLLCjgMl8gmdN/bHyBFc9v6Pb4lQiuhobr2laWow1DQYsLL5bHBq7vql5aVejUPvCzH8Qo2+Nyxym8LM7DPpOuygOj7t5yxcLJR22fx0FQU4ckeIcnc9pVposvFMptHtAfrvjFGbd6jOLm+2005gnHpt7HX+QKNokLgixMJzJdLPlUl/KtR+IyE2gGiywszP8ox+LIXZpVObX/tB9UIIIYQQa4Wdc5l/qkjPLVEUQyH9bBnPqj9jTfwoS3RLAD2iokdUjKhK9w0qvqcQ350hNFBh4bkuVMNnpl/H7vNxUoC6uJnsZD515vfhA1UGgLE/GyT6saOX8UyFEEIIIcRKS5dDbMrlWegNkK6c1+/iN+5H8dzmyRZrduPu1kCTJJqT4y1mM7Sb9BeYLTLbOUvrtmU2z9aZAhVT48RoGFVd3JOjaI1HKeta4+M0O0eA4USu4fJ8uXmfluM0Ps9QsHEfUCDQvG8obDYuM7XmvVfhlNVwedy8sNmFANwmo7OnrGTTbaaqiYbLs1bz/pOa2/g1SJiNE+j0BQtN95XSG8+0dNzpbrpNzmr8eubO/wyd4nrN+740tfH7TG+ReNY0G5c5TuNpm9xa8+mcfKPxe8Nym2+zKzXbcHlcrzXdRm0SsfV8aWvD5ftC4033FVYbH+en2Svqv8yr6P8UQgEOZQd5M98DSHIlIYQQQoiNItCnE+zTiW4PYBfciw9MPYcbVihsU4h2N3+2EEIIITpRz0SNna8WAXj15hiFLrPNFkIIIYRoR4JThVglyX1BolsCTP1zDq/WuEVoajRIPmFQimv1wNIL6BN3dZXpweUFAZ7u68xfBU6y8TqKV//xjPogh563bFQfCgMaYZYfMBqed9n2RIVKQuXETUGcUOvATD2q0v/uGKXjNWYeKeCvo9iteLE++KEaWN9fxWZSRzUUyuONB3sIsZHV5h08xyc8akhwqljffKXp4M41pRPqKIQQ4ozMSxV8D7pvjBDbHmTh6SL5N2s4BY/sq4sH4X7o/8ws+n90WwmA45kdyzpWvk9n8HANsyrTQQghhBBCdLpQwUN3oNi1/trmTdvhpiMzJCo2tqbw1FW9oK7vBJlCCNBeMcEELPA9eW4VYtl8ViR4Z0OT6yeEEKtKj6kMfSBBoEvHd32cksfCM6Uz5UdubD3YsPJgoO0xjlV6WpY/r29pu4+JWqplecJonVglW2s/BvK2vtaJRQ8V+9ruYyLXOJHQadVK++ClvlixZfl4Idmy3GmR6Oc0pc3U5a2SRZ32ptbfsnyhFG67D1NvPc7Ja3MuhVz717XdOprRIpnXKUqTBEmnxSLtB+VOlFu/N/YmZlqWbwvNtT3GP8/ubVletYy2+2g34uUdm4613cdCLdKy/JXjw2334VqtX3vXb54cCkA120+X47VISgWgtnndAcxA63WWc8239S60LJ+pxVqWPz23pe0xQnrr8dk74+3fXxGjeXItgLF86+9pgEfnW/erN0vSdZq3jDFZwTbfK0PRxknyzlW6o/n1UINw/T1JAr06vguTD+QI/c85ZLodcUE6ZRzk+TqxzkKIjrL+el2F6BBuzcf3fMrjLR4cFIVS4tJ/TKtDoNhQ3Le0TC97DL9oEZtx8VQYu6neKKWdmpFm+AWLzAegSWLoxfuqemx5ukI5pXHstiC+1v5GJ3FFEN/zmfl5cV0Fpmqux54TWeYTAcrB9f1V3HVDGKfkUptbRy+gECvEd6BwqEpqfxjVVFl4tgTt28aEEGJZDhw4wKOPPsrU1BSVSoX/+B//I4lE604TIYToNNlXKhSP1Oi5JUL/nXHiV9jMP1nCzrv4jo/v+vjt+y+b833COY+RA1VqIYVaWEXypgohhBBCdLZgoX6DWI6vr6DN0fk8V46lUYCpRIiXrkhJYKoQ611WQXsugHpSx72tivqKif5MEHt36wHxQohTfGgzflq0sw6vn/StCCE6SWSzSeBU4qXicQun4KKaCpHNJnbBxSl6eNY6/LIWQgghLkB0e4DEviChAQMUKJ+0mPznPLydcQRCiFUlz+5CrD3rOyJKiDXISGgkrw5RmbBQVIXYjgC5AxcwJeolYPfUf87wIDANI4erxCddXFNh7MYAxT4NN1APKJ2+ysSKqAy9bFEogNPq77kFOx4uE855eCpMXG0SmXdRXajFVGpRpT4z7Hmi2wN0XRehPGnh2+uroawnWyVcc/EUhesOzuOqCtmYyURv68xTnSa+J0h0a4DJB3Nvb0C4EOvYwtP1rJVd+8M4RZfc66v7N0GIS6JTso93Qh2X4eDBg/ze7/0ejz322KLl//pf/2vuv/9+/uRP/gSATZs28cgjj6xCDYUQYmU5JY/pnxbIHqjS944oox9LnlfuMnF/iPBwmdjOAnrExfeopw/268matCLo86AXFNQKqGWIlwoYVQ/NBSugcPjmMJ4u2SSFEEIIITqdWak3ACSnHeJzDlO7AlRjrWdbWOv6siWuGkvjqgrPbe1jIR5CVSVhpBDrnfZcAGVSw725hrfbQX2mnmRYme7s7zQhhFgN0rcihOhEudeqVCZt4ruCBHp1Aj0BjKiKcs6EEdV5m/wbVQqHa3i1ddIhLoQQQiyTGoDB98UBsAsuMz/LU5mUdlPxNnTKOMjzdWKdG5BndyHWLglOFeIyUgMKQ/ckMBMaiSuCAJhda+xj6EP//watBqfTwjgqKK5fD0z1fcyiTyDvkTruYIUUnNg5dywehA9BYJb6gN4a6CVQvPpUgKoHux+uLDpkLaJQ6NfxrwnhWT5aQCH4/2fvv6Mkye7D3vN7w6U35U1XezOux1uMgZmBG4AEBgQp8lHUUiJFGT5K50i7EvWWPNJ7ongELUlpl0uuKJ1DERKFR/KRAEjYgTczg7GY7rE97W15kz4zMtzdP7KnbVZmta3K6t/nnDpVFREZeTPSRdz7+93fiE16a4zK4WarkuA6M9ef4NBElmzVw4g0jh8ytlhn22SFqZhaN52BfXcnqBx0qR31VrspQqxZoauZ+0EVFAw8kKJ2zCOoSflUIcTleemll/jwhz9MpVJB67PnE+r0RCA/+ZM/yT/4B/+Aer3O8ePHefXVV7nnnntWq7lCCHFVudM+Jz5fID5iYzgKwwJlKZy8RfYmg/nnBpl/bhDD0YRuK1B3SGmUbn1GaqUJ0xAlIEpCMWPhxw0aGYPyoAWGJKYKIYQQQqwHlcHWuMzWva2xisKY3fPJqbefXEIr+N6tG/DsNTbuJIS4ZnQqQpkm0dYAFKjg9PXtgIwxCLEivRpQupask+MnYytCiF7mLYUsvHB+bJ2ZNLAzBnbWJL0txtDDaQbfk6a0r8HiizW05OQIIYRY56y0wfD70iQ3OACUD7jMfreyyq0SQlwJuXYXYm2T0UkhrgMrbTD+ZA47Z6J9zdKrdfrvSRJ6EQsvVFe7eRfxB0DNQXnUJIgp+o8G5E8EODXNwBEf029t52YUJ94TI2m0qvwZVRj6RiuxVQMo0AZEDkzd4qC0wvQ1zbSBmzUIbUWyEJKdDkjPBdj3JDGcVmKmXw2Z+W6ZyoHmqh2Ha0krxYFN55eb7Ss3ec+bc8SHLOqn/FVq2ZXJ35EgPmQx/1yV0NVYaZPi643uNxRCsPB8jeSEw/jHcpz4fAEkdkSsI0q3fta6XmhjJ/V6nU9/+tOUy2WUUmc6Xs7tjMlkMjz55JN8/vOfB+Dpp5+WThghxPqiwZ258HqqyXv+pEDoGhTfzBE2LGIDTXSkOFQdIoppoiT4/ZzXU3aqnLieLRdCCCGEENdJPWcQWGCEUBy1KA/19nCpFUTEgpCZXEISU4W4wUR3exjHLMxnYoQfctEDIWrRRM0bq900IYToGTK2IoRYj8J6RFiPcGcDKgebmAlF9uYE/fckcXImU18rr3YThRBCiGvGTBps/rl+lAlhI2Lh+RqVg+szFl1cf70SB3mhXmzzueTaXYi1T0YohbgKMjtjjD6RpTHjU3qrQfVoEx1AenuMxJhNfncroHVpT53yvgZBLSLyI5rzwdqbiUzB0vtBecB+k4HDPkYE6YWI9ELE4jaL8rhFM60Ikq2BzSRgLcLQt4AIKrdA5U7gnHHPQsNpe3eVUYvKaOujKPGRo9fyka152ZpHBHiFcLWbckkyO2MMPpzGsBWG1TrZszImk18uErkRsQH5qhFiJaKmZvrpMpt+uo/01hjVw9IhIoS4NP/1v/5XJicnUUqd6Xh5tyPmXB/84AfPdML86Ec/uq5tFEKI1fKV2/rO+S8A3q2MtbjsbXId1gkhhBBCiN4VK2isAN56OEO1/3T/9emJ4pxY+0GbWrHDxCXLRHXEnfbLzcTyYwDhxZfxrbuwlp/JbrhRRwEL/XFU7Ox2qYy77G0so/3+tG7fgP5Ufdl9lZrxZdctZ8fIQtvlu7JzbZcP28tXNTjV7Gu/vJ6/5HY5RvvnJlrmuAAcrQ20XT4Yq7VdDpCyvPb3w/L3U/VjbZcHun3V3xO19scF4C1/rO3yum8vexsvaD/WU662f2+Y5vKv2f5s+2OTjS/fJ16ot7+f5Y5YKrf86z9mt58gNh9ffrLVIaf9ZMPlYPnPhmbU/piZy7yfZ4Nc2+UAGaP94zn23gbJiYDxj+WI/mOcpcMuA/en8P9nb1eDFuK6kcqpV24dHD8ZWxFC3AjChqawp05zwWfDx/NkdsYkSUcIIcS6lb89jmEpCq/VWHh++X5NIUTvkGt3IdY+yRgS4golJ2xGn8gCoAwYeTzDQCXF3DMVxj6UPbOdmzTY/xvjcPqLcP6C/fjN7oOEfr19gueF7Fz3SpXb0+0H/nUEwatJgtcSEJ4dHK9tVlRuUngDGhOf5Dm3iZsBfd8yUZGi/P6AYCNcGIpwS99M1zY994Xbum4DkHTbD9qfa6qc7bpNwllZddJcfPkB7HfdsmW26zbPHd227DoVabZPlpkZSbD4l8tvd6ZNHzvUdZvrQVkw/N4M9VMe8x/PE9gKL2Fw80tVBv+3MSYHbDalGpz45eEzQT5xt/vrszmd7LqNTq0sidewu28XVZYPuHiXme/+ugNIJrt33haXCdY413dqu877X0WaW98uUcnYnJpIki96jE032PnXJ6if9PCK4bKVNktf29H1/rYPdgi8jzQYrc+ue/Mnuu7rb47f3nWbwmK66zYAyug+orlcIMe5OgW1nGs8Xeq+jV3suk3eWNn9/dbRly9a9s0/fwDrY3nueuwUN997jH+z/f4V7UsIIb70pS+d+fuOO+7gC1/4Ajt2XPwdcPvtZz+n9+3bd13aJoQQQgghhBBCrBXpYoBWUM+ug+StKGLnqRIamO3r3u8shFh/6qd8Tv51kYH7UwzcnwIgMeaQ252g9Gb3MTkhbmS9Wu1kLVkPx0/GVoQQvcbpN9n8t/qJQk3ktuJlmoshS3vquNOdY+HCpiZsRsRHbElOFUIIsX6dvk5x+rvHBQsheoNcuwux9klyqhBXKLOrlYY5+4MKfikkvTVG/vYETr9FcyHA7jOZ3pXg5K74mcTUtUo3Fd73MkQnzibBukNQvNvAG+jQ9gBUpIgcTbDxOjR0HYo3Q+JexPhsg9wPPEojFgubHLyk0f3Gqyg2aGPYisWXa8z82uiZ5e88kObWF6osjdi4KYONBxvseyC95t8Da9nIrMvorMvwnMuWY1XsoHUFHd2XYug9rUTPKNDoQBP5Z39HgWbohRqRpYhMiExFaLV+R6YisiA0FYmURp8+K7AqGrsMdkkTP2ei+pkPGZC/zg/8BvTeT+xl7zO7eOW7t3DkrQ2YyYCw3j0BV4g1rVdmH++FNnbw1ltvnfn73/7bf8u2be0nvBgaGgJAa83cXPuKJEIIIYQQQgghxHrVN+tT7reIrN7urzaCiA/smSYWRJwaSOI5MuwrxI3KL4aU3mgloiZGW2N3RD3e2SmEENeJjK0IIXpN6LbO8wxTUdjXKriQ3RVn/MksR/7b8hPTG3HF+JM5/HJIaZ9MYiKEEGL9caZg6G/3Y2dMglrI1De6FyoR4pL1ShzkhXqxzeeQa3ch1j4ZpRTiCpX2uSQ32Iy8LwNAFGqaSwHN+YCTbxQYeCDFBlORm/eZ2RKjPGDRTK692bijikHzz/rP/K+yIXN32DQm6J5QaIFWmnBlhRBFG42ExZ7b+kjVAwY8l+GjHqOHmsxsjzF1c2zNJnVaiVa7gtr5iXPlAZtq3iRdCjl6W5JbXqqyeV+D47d2r4gq2utfahIpeOGhQUZnXGw/YmY0Tt8/3E98xMbOmCgbDEuhbIVhKQxboSyFNsDyNEbY+rFdje0tf6WhDVBtciGTJzR0L8IqrlA86fHQR95k++0n+d7n72PwAc3s9yur3SwhRA8oFotn/r7llluW3a5er5/52/NWVhlcCCGEEEIIIYRYLyxPtyqlhRptrs2+95XYMlMlFkQUUzav7xxc7eYIIS6BDk7/YUD44wS6bFLdFhIbc7FzAc3ZGMUX+/ALNmiFYUSYsZD4QJPcrhKxPo/C23lGP5jBsBXJCQdlKoJGhF8OKb7eoLzfXdXHKIQQvULGVoQQvSasR5z8QoGNP9WHOxtQP9n6TMrfnrho2/LXt5/5e/xtF3XEY/9TWYK/PwDASLza9f5OVPs6rj9YGuq6j2ys87lp0ur8uZq2u1d5PdXo3M55t3tg40Cq3nG9G+v++W+2C7g6RzPoHLJdqsa73ge6c19GPtv5cQAMJzvHIc1XUl33UVi6smBRZXTPksnlOj+WXKL7dc9AvNZx/WQ113UfpWbn52V/NNxx/cFy9/fJfK3zMW+6Tsf1AFaq8/Gohd334ZhBx/V9/d0/Nyq1zsfLb3SuZqmD7gVdlNX5vTaeL3fdR8LqXG16pprpuo+RxJXF9C3VusfTGkbnx1r1uz+vVTfWcX0m3v1ztttrtJvNuULXbRwz7Li+8MjSRcustEFmR4zszXHsnAkpg/J+l9kfVEDqgQixbsi1uxBrnySnCnGF3Gmfo59bws60Ek79SggRpLfH2P7Lg7gLAXMTDsOnPHa83vrCe+WJHH58jVXEDBTEIlQ8wrqzgbmzSaM+0vVmiRMRudfM1owaay/ntqfMDyaYB8o5AyPQjB5qMnagSaIScvj+5NpMUH03cKfNRZyKWn1hpSGbY7cl2PpWAzdpcHS084WuaG9qPMnY6aTUo9vOdu7lQ2hM+TRYvrOk9P8YOfOaGjjlnUlM1YACAgua44ogC0ESIkcx9OzFT6on8U3X1dB4iUy+zpxx8QCCED1Hg+qF2bd6oY0dpNNpCoVWZ+7S0sUdsu86dyaxbDZ7zdslhBBCCCGEEEKsJcdvS3LL8xWGTzSZ3bqCoM81autMK/jtpVu6j+UIIdaIusJ/LUV0KNYamz1N5QMWjwyD0vQ9ukjxR/0YiYjUTRWUAbYOCRsm9ekExXfyAJixEDMRoiNYeLFG7VgTvyxRl0IIcalkbEUI0YvcuQB3wWfwwRSNLQ7521pxJeMfz1E54FI51Dxv7NtqRgwd9Zjf6hCstZhFIYQQ4hKkNttkdsaJDdnYaQN1OoZZR5rqEY+5H5SJJB9NXEu9Egd5oV5s8znk2l2ItU+SU4W4GiLwS+fP2GKdPumND1rET3mEJtQzJnMbY2svMRUw+kISv7j8l3VbQcTgcxoUBANQeX/nWWvEykWWYurmOPWcyY6X6+RnAopjnWeMWg1BpfWcW5mLX9PNpEH/jM/SqM/sphhjR5psOOxydLT7bGPiYqWcTaQgUwko57rPdnWu1FLA9lfqWJ5mYZNDtc+kkTVx0waWpxk70KSv4JE80UpWBU3ogJ8HP6fwc9AYU4TpNZggvc4ZVoThyHEXQqzM5s2bz3TC/Pmf/zkPPvjgRdu4rst/+k//CQClFDt2SElsIYQQQgghhBA3lmq/RWXAIrsYMLt1tVtz+Ypph5GCy1ChwfTQlVUuEEJce2rKwP5+jEhpzDsbqEyIdg1UOsLc6jEUVph/eoTCM62ZQsOaou89rb6+jNGqfqM1NGYSuIsxcrtKfOkumVVUiCui6fngzFW3Do6fjK0IIXrV7HcrbPh4jtRmB68Q4PRZpDY6pDY6JDY0mPt+FRVoBk75jBz20IZidvulxRsJIYQQa0IAqZcU/b80gOEYaK3RgcYrhjRmfapHmjROda6EK4TobXLtLsTaJ8mpQlwjxTcapLfGsLMmb384Sy1rMnK8yeixJkOnPBY2OMxu7u0KkobXSmRzd2jqD8lMvNdCccym0m+y6Y0GRqhZ2mCvqQqq7yZlJ0YvTpw9cnuSnXtq3PJylUi1Zoo5duvqVoDsKzXZcapMLW6xf0uO0Fx7ieLL0YYiNBVmuLL3mrIgsz2GmTAIpn0sT2NEkJ9uXYQXNthoQ+EnFCfuTOCmQpSvMZqgTYjirKnX2o0qlWmQ3jKAnTMvmgRBiJ7SKwEevdDGDt773veyd+9etNb8/u//PmF4/ufGf/tv/40vf/nL7Nmz58yyxx577Ho3UwghhBBCCCGEWHV6HXR9vra9nyd+PMVdhxfJNDwObOpb7SYJIS6kwThqYpw0MY6a6LGI2BMlVPzijkgzGTHyqWnCioU370CbISylIDnWIDnWuA6NF2L9U71a7WQNWQ/HT8ZWhBC9ylsKOfqnZwtRDD6cIn97AncmILMjTuG1Bru/W8VuaEqjFlM3x6RqqhBCiJ6UeUbhnFKEoaa4p0ZhT12qo4rV0ytxkBfqxTafQ67dhVj7JDlViGslgqmnS0x8Is/u5yosjdoMnk4K82KKbW/WUZFmZmt8lRt6+aKkgSbEKK92S9a3I/cm2fx6g22vNuif9Dl8X3K1m3RG6Goqh1z67k6iQo02z0b0BI7BvgfS5BYDEpWQ8oBFPWuBuzpttf2Qe95ZxLcM+kpNQkOxf2v+urdDRZrthyvMjMSppe3zlvcvNYk1I1AQWgaBpQgsRWgaZMsedqCpJ7t/dccGLUY/lMXOGugQOOpRHrTIzwU4Tc3wMY/5zQ6NnHne7bStCNdegd4b2m0PHuXIWxPEhy1JThVCdPUrv/Ir/P7v/z5KKbTW/OEf/uGZdVprfuu3fgut9Zn1Sil++Zd/eRVbLIQQQgghhBBCXH+RBtvVVPMG0QUBGa7bvoNUGctHbvj19pVnyqHZdnnotl/eiQ4uDiD2lcH37tjAe9+eYvtUhendNhhnt+tP1ZfdX8Zptl2+Lb3QdvlUI7fsvuJm+6oEXmb5vuyb0rNtl38q+2rb5Tlj+coHX6vd0nb5qXp+2ds0g/Ztmw0ybZcbHSJ3+uLtj3PCWD5CzlLtXwO2sXwfcNVvP+Htco8lHlv+mEXLZGfbxvKTY1aC9m0e7W8/SBizgmX3tVRrP86VTC3fZmOZ7KeJoULb5UOJ6rL7CqL2AflJa/n7LwftJ19tRsu/n2ffU2bggRT998RoLgSUD9QovtGAf91++zdp9/rLXPBbCCHE1SZjK0KI9WLhRzViAxbJDa1r1JH3ZXAamv2PJKkOSpiwEEKIHhWAM6mI0nD0jxZXuzVCiFUi1+5CrH0yFZIQ11Dkak5+vsDkjjiOe3ZA12m2BlC3vt0gXu3dZCNnvvWYdO/m1/YEP2Fw6MEUBx9MklkI2Px6AxTYWWNNfIovvlLHShlsfasO+oLgAKUoDdrMbI23ElPb0ZpsyWPjiRqbj1XZfKzKcKWGEV3darwTc3XMMOKF24c4MpFhy3SVkYU2bT7NiCJGizWSzeWDES5VvBby2DcX2Xq8xnteWmR4tkG+4JGqBdz1eoG7Xy9yy/4yt75T5vY3i9y9t8D9ryzx0IsL3LqvzNxQjIXBzhWXzbhi/MkskRdx/M8LHPnsAjM7YpiBpjhicfz2OK99OHNRYqpYm/qGKtROevTduXaS0oUQa9dtt93Gr/3ar13U0fKuc/9XSvFrv/Zr3HTTTavVXCGEEEIIIYQQYlWYfkSyElLN935wbtOxmNySQAF9C1evL1sIceXMhCJ3a5zC3jon/qpA8fVGz1coEGJd0vJzRT/rgIytCCHWk9nvVqgcbuIVAxKjNosbbWp9Eh8khBCihwWABi1fZ0Lc0OTaXYi1r/dHXYVYY+KjFumtMcr7XbylEK1hfsKhMGxzx3MVloZtZrbEUBH4cYWb7tEzZi9i6Iet0YbafVc3iVC0VxqxOXVrnM1vuGQ+3Uds0EJHmvopj8WX6zTnl5+F+lryiyGzP6gw+gFFZCiO3ZoAo/2s2+fRmrHpBluO1Ug2QkIDQlOhNOwIqiwm47y4eQzUCva1AhpQgFaKIxNZclWfe/Yv4VkG8+kE8+kEC5kETdsiW29y94k50l7A0YEsb28YuAoN0Nzy2vkziN/xVunM36GhePXOPpb6WzMY2qHGDDVWEGEFGt82qKe6f20PPZYBQzH19TJhvfXenLpZMsh7WWFPnYlP5ElucqifWH62fSHWtF4JUuiFNnbxe7/3eywuLvJnf/ZnZ5Zd2BED8HM/93P87u/+7nVvnxBCCCGEEEIIsdqyiwEKKK2TyjGFQZutByFX8CkMd57cUAhxjYVgziucd0y2/eIgAJVD7SsVCyGEWDtkbEUIsV4EtYiZb5XZ+nf6Wdpb59gnR1e7SUIIIcSViYM/qnFmDBITNo1TMkGfWGW9Egd5oV5s8wXk2l2ItW19jLoKscqsjEFyg0Ns0CJ3WxylFH13Jol8jWEr+N7ZhLT+OZ/+udbJ8f57UtRyq9Xqyxebihh6VqNCKNyjQAr6XTfFUZvNb7jEBi28UkjlgEtmR4xNn+5jaU+dxRdrq9Kuyv4m9X+SZOubddKlgIN3pWimlk+8dpohu98s0lf0mRuKse+WHKWcjT6d1Jo5CA+cmOHm2SWODeRwLfOKk1SnhpLcdLzE1skKhycy/PiWAfJVj6Ell8HFJhuKrWPXNA1iYUTdaX1FlhJO2/2ZQcTofIPFvhhuvPvXabIakim3KiXPD8aYH4wxOxwn1oxwvAg3buAmzu4nsBWBDU1WnsCeGLPJbI8x852ziami9zWmfBozPv13JyU5VQjRlW3bfO5zn+NnfuZn+MM//EOeffZZms1WAJzjODz22GP86q/+Kp/61KdWuaVCCCGEEEIIIcTqGD3epJYxaSZ7dPLQCzRjJppW5dRjMhG4EKvCKCqcfSbWcQOjqYjimoUXqnjFkObC6kwuK4RYgV4NKF1L1snxk7EVIcR6oyxF5ErckBBCiPWhcbPGmYH4sCXJqULcwOTaXYi1TZJThbgCh//Pu0BrPvzMFMbpZUcn0hzckmV4oUHMiwgshZELCS1FqhwwOO2RWzo9CBmB1u+WEO/ea58fqK6oXa5nd93m5YXNXbcpNS6othhF7HijxvBUiFZw4I40CyMxcjW3676mCxu7buPV2icBXqhudZ/5e/PYYtdtMs7KZiqueN3vL2c3um7zge0HVnR/O5JzHdfPvD1GczKBkzMZuD+F9VgV3VT0k2L4f40wb2s9rjfvvb6djOGvHefUqMXo41numvOZf65Gef/Frw0zoZh4qg/DglPfqdCY8skC2Qu2W7wvyda7NduWSoTNCK8QUj/pUTno4pdX/tgO/Nf7AXCxODKcY8dkie2TFaoxi4NjefYPD6B/82WW4orkhIOdNVkqhXjFgM0/08/GLxwn9Wr9vH0aMcXGn+rDybWCl47+6SJBbfk2KQsSozb++zPYaZPcoRrFf3eKiXO2udw89eg7p99bWjP4HY8GUPrPQ+cl89bK3d9bR9yVVYdtBN0/XxJO9w6AorGykUrd7B4gFjS6n85Muv0rur9g1Oi6zd7kphXtayXcqPvxhFb11PEnc8RHbdwZ6WARvUfp1s9a1wttXKmnnnqKp556iiiKWFxsnRcNDAxgGN0/54QQQgghhBBCiPXKzpnkFwIO3J1a7aZcNUHcoJKzyJQkAU6I6y4AZ79J7McmOg7+rhB/c0TUpyn8v7uPHQohVlevjF2sZevt+MnYihBivQgqEXZufUzIJIQQQmSeN9Boyu+sLOZbiGupV/sSerHNy5FrdyHWJklOFeJKKcXJ8RS5ike+4rP1VJV82WOhL8Z8f5xyxiGbbg0+VvssZjfHu+xwbXIaIXe8UCbmRjSSBq8/lCOIyZf4auh/3wKzz40QHW8lHAbPpFH9AcaWJuE7cYxbm1daZPSyuTMBJ/6ywOAjKUY+kCG1xWHuBxVC9+xZbW53AjOuOPFXBYLK8gmdS6/UKb7RIDFm4/SZxAYs+u5MMHB/isaMT+WAS+Vwk6i58jPm/eN5FrJxYn7IaLHO3ccWcO1WZ2zoaiqHzr94XXq1zsADKVCtv9+d+TV/e+sxLLxQZfChNFbGaJucamUM8rcnyN4cx3QMglpI9UiTwhtXPyAhczIiXtCceL9zxVVmxdpTO+7RXAzovyfJ1NdKq90cIUQPMQyDoaGh1W6GEEIIIYQQQgix6gxHMfzeNKEJheGVTRrXK2oZk2wpwPIiAkfGboS4XuIvWzgHTMJ8RO1JH1Y2D68QQog1TsZWhBC9rnbCI39Hgs2/MU39pEdzvv1kRukf5bvuy4s6J7mOxstd97EtudBx/Zvl8Y7rg6j7dW7JS1zxPiLdOd4qXME+ql2KYDS6FB1xnLDrfewa7Fz4YiBW77geoBZ0vnjxve6h5YbdpbhEt+O5goIF3Yq0bMkvdd3HaLzScf2b02Nd9+E3Ox8P0+78vG0Y6B7rlUt0LhBTKie77qPZ5Xl7+Wj3gjZGl4ITmXT3uMduoYvdXjs66h77aDmdJ2lrBt1fw3f1neq4fiVFPByjczuyVufn1TS6F2mJ2Vc+Id32/s6fw4eXBrvuYzjTubjSZKFzeZa5eqbrfaQ+euSiZdmbYhgfyFJ4rUZYl6rgQoiz5NpdiLVFklOFuAqObUjzvpdnz/zfV/boK3vsPF5haijB1G4HL9Hbs5Hd+nIZx42Y3BLn2C3rZ0bxXuT0+9gfrqA9hZ618J/OopcsMGn9biqIr94UJ5Gvmft+ldpxj5H3Ztj0t/opvd2gcuB0xdPTfTEruVCMmpraMY/asdb/yoLU5hjZXTGGHk0z9Eia2gmP8gGX2lGve+OUYjHT6ox0bYuxYp2Yv3zn0OJLNXSgGXggRe7WOOUDTWrHm+RuiWPGDCK/dZyVcbZDRFkQH7LJ354gtdUhcjWlNxpUDjXxCt07EC+X1dBoBV5aElPXq8KeOqMfzBIbtGguSBUEIYQQQgghhBBCCCEuxdCjaWKDFkceThBLtO+rfXDnO22XN8Llg9Es1b6vuxK0D0it+ssHqk5X2gdpDaVqy95mMF4jNmTAKZPd1izhcGv5psTyAZq20f7x74rPtF3+XLRz2X0tee2DI90OAXwzzWzb5Qf84bbLB8zlg99KQfv7H+kQfLpcEO6i2378K2Yt3x+bsdpXbGhGyz/+8jKvDS9afuh+uUDqXKx9UKizzHMM8PMbXmq7fNQuLnubP556rO3ypWWOWcLyl92XF7QfM50tLx+k6Hntb2MsE8RpdQjuXC5A9a6B5YNS99938eOxcyabfibB4t4aS6/U4TPL3lwIsVZpzkxOLC6THD8hhFiTCnvrWGmD/rsSDD6Qoj7psfBCbdkkVSGEEGKtyt+ZRGvdKi4jhBBCiDVLklOFWCErY5C7OU5ig4OdNdGRZuLFGSIFjr/8AOf4fIPx7zU4fFuyZ6umAiTqEbWMKYmpa4hyNGqjj/OLSwQ/SkKg0AsmOGtjBKh21OP4bIHBB1PkdyfouzPJ8T9fonK4Sf+9ScY+nGXmOxUib+Xt1QFUDzepHm5iJhTp7XGyu2KMfySHO+8z/1wVd2ZlHakbF1uBKfO5JJ3mZFp6tU7thEf2pji5W+L033020EUHrbZPfCJPUI8wHIVhtZJDm0sBcz+sUjnooq9D324QVygNpq8JE5Kguh5VDjfpuydg+L1pTv51EWQiMCHEBX7pl37pkm+jlOKP//iPr0FrhBBCCCGEEEKItSW1yaF+wqM20HkW/14U9kWAiTVnEI5evY5DreHwNzZD0oG7VjBBpBA3CDOuGP9YjqASUtgrwZFCCNHLZGxFCLEeRZ5m9rsVZhWkNjsM3Jdi41N5Fl+pUdjbkMkFhBBC9IzKQZfBB9OMfCDL9NPdq3ULIdYnuXYXYu2T5FQhukhO2OR2J0htdog8Tf2kR/1kawC+8Ok8htYoDUakGZ+tY4fte28StWtXMfFqMdyI0bc84hWNm1X06YB0OcRNGBgazGUem1hdytFYD9Xx/jqHGvdR7SfPXhVhPWL2exUMR7Hlb/eTvSXO0it1Zr5TZuQDWQbuTzL/3PIzvnfcd0NTerNB6c0G8VGLoYfTTHwyz/yzVUpvuV1vv5BJMLFUY6zQ/f6bCwHzC1UWnq/i9FmEbkTQiCACr1ggPmKjLEXkaSI3wq+GK06SvRoS8xEjr/pUxg287Bp6AYirS8Ps9ytsfCrP0MNp5p+ryoCBEOI8n/3sZ1Fq5RMUaK2lE0YIIYQQQgghxA2jdtwjMb58NcteFoyDRmOfUjTvuDr71Bre+sudVCYzqFyEluRUIQBw+kzGPprDsBUnv1i8LhOUCiGuDaVbP+LyrYfjJ2MrQoh1TUPtmEfthMfAfUkGHkiRnHCY+XaZsLEOPsSFEEKse0Etap2Dm1KwRYgbmVy7C7H2SXKqEMtwBkxGn8gS67doLgTM/aBK5dD5FRAP/9+z591m3448ALYX4gQRgWng2Qa5ZIPIWp0T43g94PY3iiQbIZW0xdu35nCTF7z1o4jxvR59x84m0CaXAEI0kC20ljmulOlbS3QEeskkOukQvhkHDfYjl5foea1FnqZ6pEnfnUkSozblgy5Le+r035NkaW+DsHZlry13JuDkF4oMvifF8GMZrJTJ4kudj0W24dG0DCb7U+xY4f3oCJqL50cZuLMB7uz1jzxQtiJ3a5zkDz2SsxGNIYPpB9dnYJU4qzkXMP9claFH0jh9JjPfrVzx+0eI60LTG8nUvdDGFdB6nTwQIYQQQgghhBDiKrIzBt7SOs0iO91FqJ1Lu5nWcGE8R2U6SW02ydSPR2iWY63tnlqbYw9CXG+pLQ6jT2TxyyEnv1IkqEj/vBA9rVfGLtaydXT8ZGxFCLFWGTFFZkcMw1Z4pZDGpE/kXeJnVgSLL9Wpn/IZ/WCW0SeyTH6ldG0aLIQQQlwFQ4+lye6MYTgGka+Zf7ay2k0SoqVX+xJ6sc1tyLW7EGuXJKcKcQFlgpU2GXlfBsNSnPzrIu6Mf0n78B0T3zHP/H/dE1OjiLFpl7GZBvliq+3NmEG+5PPw8ws0YwbukAINsWpEvKRRgJdQnLrPoT5kYboR9aqDm7KIVwMStZDCgCS+raagatI4msKdiuMtxtFFEyIFtsbY7GE9WEMl1+5J18ILNaKmpu+uJCiY/kaZ/O4Ew4+mmf5m+aqc+C48XyOoRQw9nMZKGSy8UMXxQwJTERnnVxRtOBZW2LtBA+MfyRIftakrmLvHorjVBENmh7oRlN5y8ZZCRj+YYevP91Of9KlPejQmfZoL6zS4TghxxdrNHCadNUIIIYQQQgghbggGDD2cJjHuMP2t8mq35tqwWj9m4ez1f1Qz0A0DItCRaiWwRgodQeRD9dt9Z7aN31nFnmiid8DxH0xQmU6fWXfPr7zBK9GW6/dYhFijkhM2Yx/KUjvuMfPdslRMFUKIG4CMrQgh1oKRD2RIb4kRNiPMmIEONfVTHgsv1fAWw+47OEdjymfm22U2/GSOvrsS16jFQgghxOWzMgYTP5nHzpoE9ZDSvhoLL9bPTM4nhBAXkmt3IdYGSU4V4hyZXTFGH29VQ40CzfQ3SpecmLraBieb3PR6FWjl+tWTJm/szlHLOKQqPrsOVsiVPOKnTucCKnBzisXtNsUtZ5NPw7iBq1sfEW7awk3Lx8VqCWompRf7qO7LgILYcBM1EmDe7KL6Q9RwgDK772e1RU3Nwgs10ttjJDc4GDHF3A8rjH80x+a/1cfcM1UaU1f+fiu+3iCoRYw8niF7U5xtb5wkAmb6kpwYzFBIxYkUJLwAU0Oy2XvRA+ntMZITDpNfKVL976Or3RyxChrTPsf/okD2pjjJTQ5D72kFi839sELpbXeVWyfExZRu/ax1vdDGTt773ve27WwBWFhY4Pjx41SrVZRSKKV49NFHMS6YvEEIIYQQQgghhFhv+u9Okrs1zuwPKlQPN1e7OVeVCjTWlEI1IUqCWVbE9xgYFUX12NCK9+MdSuC+lubVdIZY7uwx2vDANLG0D+s0p1eIFVMw/L4M9Smf6W+XJSBSiPWiV6udrCXr4PjJ2IoQYq1rLgSkt7QqpwIoU5HaHCO1Ocax/3MRv3xpJ6eNKZ/C3gaDD6WJ/kITDmkad4dEfd1vK4QQQlwTUcTQIZ/hn+/HyrTOtQuv11n4UW2VGybExXolDvJCvdjmc8m1uxBrn2SbCXEOw2l9CQWNiON/vkTU7L1v4kb6bJbiW7fmmB07O8tZLWOz555+AEYyJZAv3TXPnYoz//UR0ND3yBKpmyuY8YjpUp7wnRjhS0nwFMaEj5rwW4M/DQNdNxh6BMykiZU0MJOK5lzA7Pcq6FUeMI88Te14k6ASEVQ8TnyhwPiTOQYfTHHyi8Wrch/Vw03cOZ/YoMXkP95JqumzeaHCQwdn0UBgKOxIc3wwQzXeWxWBzYRi6JE01aNN6qd6K3leXF2Rpym+0aD4VoOd/6AVaCaVU4W4sX3/+9/vuN73fT772c/yz//5P6der7N7927+8A//8Po0TgghhBBCCCGEuM7m/uZmANRJl4E3axz7t5sIHIN78qeWvc3h+5eb+G35CeE++Gal7fK4at9XlzEby+5rX2687fK9d5//v7Igf3uSvrsTmM75w72x1wwiXzP3YgV3PkBH+nT1VNCRbo0RhPrs/6ebGRu0yN0SJ70zhem0lp380Siv//+ylPe5BLX2gwvVp9u3ueEt3/d+cGGw7fJ5N912+aZUYdl9zbmZZdctxw3bD5FXfaft8kAvP542GeXaLk/byydCO8alVTcCiJvtX09lL952uR8tP6vpUjbVdvmQtXwWsmW0f/7nK+33tWgkl93XMjFE2Obyx8VOtF9nm+3bVWnGlt3Xck7V88uuS20uYWdMpr8hialCCLHeyNiKEGKtW3q1jlcMMR0Fp8+lraRBanMMZS5zct3F4os13Dmfvn+ZxjlqkPq+ReWp4Mz+hRBCiOsiiti4p0n/qQClQacM6ic9Fp6v4hWkA0YIcZZcuwux9klyqhDnqB1vwqNprIRB3x0JGrMB7qy/bJLq9p/fu6L9Tv/1LV23mfj0W8uuszIGylAU/2Jz9zsbhum+BGOFBhPH6iQKEUdGM3gXBCecqLcf+D/vfp2VDY7nEt2r9N25YbLrNntPTqzo/hIJr+s22zKLXbd5a2llFSfNZQbczzXjZrtu83j/Oyu6vztiJwGYn8zz7S/fx9Bokcc+uRdlaKYODzF5dAh/fx6A9JYqZjKkcjBL8ObZRGQzHpB/r4KEhkQEjsY5ECPzgA27Pdh1Nqnx4P3Xd6b4oB5hpU0SYzbuQkBzLiCsRTQLVzep7t3k1/y/bL23poDYgEVs2MKMKdy5AG9qnl0cuar3e7XsfLlN4EQEPJ2EIqT/vsfOfxfjSLX7+7TZ7P51v1wwyIUOnRjuus342PKBQu9a6efLSl4VurGC05kVTvvjh92T9icb+a7bbI/Prej+Qrrf378+8mrXbZ55YTennhnnA/+9QH5r+2A4gB8Ub+q6r6mHlr+9EKK32bbNr/zKrxCGIb/6q7/KH/3RH/HJT36SD3/4w6vdNCGEEEIIIYQQ4trQmqHJJrW0SWCvrBNUWWDGDZQBfjVaU4loZkLRd3eS3K0JlILiWw1Kb7uEtQgrbZC9OU75gIu3eOnJj82FgLlnqsw/XyW1ySGoR2R2xOm7I0HfnUkWX6pRfLOxLiqkCXGpkhMOXjGQCSKFWGd6tdrJWnIjHD8ZWxFCrLoIqocuju1afLl+RbutHfWo/eMl4qMWG5/qI/rnPksv1y4qetD3XOe4FjfoXhSgHCQ6rq8tM1HQpah5nfeRsLsXAJgvt58w6V16Bd97/QOdn5eFoP0EP++yrO6dELfnpjquz3WYFOtdX56+veP6VLJ7PGG50vl5tezOfROh1z1mKp3o3I7pWveYzTdObei4PpPufrwCp/O1oOd1jl2bXGw/sdW5uj33Ouzer+XVO78PjBXE69296WTnfazgBPDlo53jnJOpzs/rSu5jQ67UcX19BZ8rbxTbT7j2ruPz3UtKz1U6f250a2fM7t7PELc6b7OS4+VFnV+jKzmtn+3yWLs9ltRHz4/TTW60Gf1gFjNm4FdCll6tUd53fWOZhRDrh1y7C7H6JDlViHPosJWgqkxF9pYE/fe2LoC9QkDtuMfCS7WuQQhGTGElDbxCiDJh4P4UudcqHLolReCcvaA2g4iRU01ibsT8mHPR7a1U6yexwSG7K47WmrKviVYQPLF32wCJd2bJ1XzydZ8tMxX2T+QZW6pTi1u8tSlPGF9+xmSx+orzab79F/fTP1riAz/9Yxam8jzzpbtoNhz6hssMPrBIfncR6/RM0aPvnSVoWKDBSgYoE/bVLrh43urDi3F4Lg47fFaQE3dNLL1SY/zJHBOfzBMFmsakR2zQwohd++n3mosBzcUeDhx4y4FpE56stxKPhQDqldOJzFox9aNRpp4fJT1eY+LRaQxLXidiDZGX45rx/ve//8zfv//7vy+dMEIIIYQQQggh1q3BaY9cIeCt+zJdZ+hTFcWGn8yR3HB2zEZHGncuoPh6neox77wxIjOhCN3r1+GRuzXO4HvS6EhT2FOnvN8lqJ5tkFcIWXi+dsX3owOoHmlNEurOVFl4scbgA0mGHknTf2+S+qRP6a0Gjanugb1CrAsRpDY71E92nzxXCNFjNDJ2caVuoOMnYytCiPXKnQlYeLHGwH1JUhsdpr5eIqitoVmahBBCrCvKgvEncyTGbYhg/vkqxde6J4kLsabcQNfCvUau3YVYPZKcKsQ5wnrE1NfLZ/63swbxEZuhR9P03ZXEShm4C8GZkwodaKpHm6S3xsjsjGM4CidvokzF3A8rpLY4pDbFYLrJ8HSTo7uSnNyaIFsM2PVGhXgjQmnYcLzBwm1x8rcncPLnvy2DWiv50C+FdJm85ozIMnhu9xgAG+ar3HlkiVtPFtFAvuaxYbHObH+CUspmw3ydmB/y9pY+Joc7z8wlrp+3X95CGJjcev8xju8f5cVv3MbIxgIPPfkGqUyTH7tbzttemWCnuyRdjoXwHhe+koIZE8Yvfeb0q8GdDTj6PxaxcybJCYfU1lagj50xsXMmfml12rXmaWCfAzv9VXvuxNr0/FfuYO5kPwBaKxrzCerzCQoH8+S3lYjlPKxEQLyvCQng2ueBCyHWuFdfbVVk1lrz0ksvrXJrhBBCCCGEEEKIayNZCdjxZpX5MYfi4MWVXFRFYR4yUU0FGszjJkEmYvZ7FYJaiNZgZ00yO2KMfTiHDjX1Ux6Rp7HzJvEhm7AZMf+1JLFxl6hpEFQswpqJ9g3igy6ZbVVig02s1OX36YZTNht/KkV82Ka0r8HCCzWi5vWLftG+Zv65GqV3XNJbY6S3xJj4RJ7a8SbzP7ryZFgh1jpnoTWGVXrHXe2mCCGEWEUytiKEWM8Ke+rUjjfZ8PEcgw+lmPlOZbWbJIQQYh3K3hZn+OE0GODO+kx9rUQkc4EJIa4iuXYXYvVIcqoQHfjlCL/cpLkQMPKBDMlNDslN51Q5tRTD780AUDvh0VwIKL3dIH9H8szyxR/XGLi3lfS59UCdTYfqmBFUMyavPNrHfc8VMCIYfixD9UiTxZdqBLWI2IDF8HszWKlWhdPSW27XWb3bmRxKU0w5DFRcTg2lyVU87jy6xMhSg9Gls7PNbJyrSnLqGnLf4+8we2KAH3zxHgC23jbJQx95E/NKqyAOh9AXwpsOjK/ebEM6as3i7hUaFN9ooEww44bMvNfJggEVAx6R2ejF+Xbdc4KlxQxB3aaxkCCWb7LjE0eZ2zNIZSrF0v4+Qq/1XZLIRgQ7Q4KNETqrV62CsrgB9crs473Qxg5++MMfLrsuDEPq9Tr79u3jt3/7t1FKobWmUpGBRSGEEEIIIYQQ65ABN79awU2aHNqdBqWwvAinGWEfsTGWDNSCAht0utUhEA1HnPyjwnnVUBuTPuV9Lk6/SWqzQ3KDg5lUeEshxdcb2BmT5GaTwo/6MRMhZjrASgeoZEjtWIrSm3kAEhvq9N9dILVl5cmc0ZKJ92KK8EQM8Dn1N0Ua06vXP+wthiwt1ll6pU5qq8PQe9Js/lt9JN50mbkpRmTLrHhifYpPQtiMaC50mSRWCNF7emXsYi1bB8dPxlaEEKLFWwop7G0w+FCK3LRPaZ+7Lj7nhRBCrD6rGbH5Z/tw+iwiL2Lm2xVqRyUrVfSoXu1L6MU2n0Ou3YVY+yQ5VYgV8AohJ79QvGi5EVOkt8VAQ/mc2XKrh5sMPZLGiCnM+PmZP8UBm8nNCUr9NtpQnNqSQGmIPjOJV2jNnG0mDXK3tmbxrp3wiLyI8oHLn423lnSoJVtJtYVcnNe29nPvoQViQSsRUAPFlNNhD+J6c+IB9z7+Dgde3cSmm2fYddfJrreJAoUOFYYVocxlNlLA7R78MAH7A9ixNhIddYgkpnZzxIZ41KqAK8Q5Nt40i7tVEbgm5RNpMhNV7GTI5icmz2wThYrqVJK392zF3mvh/FihTU3Up4n6IqL+07/7evwKVIgb3Pvf/37UCiYz0Vqf2W5iYuJaN0sIIdYFM65w+i0MR6EDTXMhOC9pQQghhBBCrC3JcZtEPeKdu9KgYOxog80HWpOH6qRJOBoSbYsId4RwTlHV8P/Z/hzPWwrxlhoU9lw86eM9/6OC1hfPLxojwC/ZNGbiFN/IM/mVDTh9TbY+cZLMxPJJqlHNwH85SXAgjspExD5Y4uBPr61grdpRj/qJJfJ3JBl0FP0nAqZvdVjcbF/WRKtCrFWqCcmDUHzLBRnGEkKIdUnGVoQQ4qzS2w3ydyYYfm+G+qSPX5IYJSGEEFfu7meL2HmTyiGXmW9LspgQ4tLJtbsQa58kpwpxBaKmprzv4qTR0NXMP1dl298dPG/5m/dkWBqOnbfs2K5WtdKx04mpudviDD6URoea+eerFF+7etUt427AvQfnydVbCYmnBpMcGc9QlcTUNWnTrlk27Zpd8fZH/nQbfsUGQ5OaqMFOAzYHrYTUc+3w4ZQFzybggN0aWZeY6rVNA0dt2BJIpUuxLCse0r+r1HadYWqyG2s0Mz54YCwYGAWFsWRgLBpYhxUqan1YbPnbNt5SQHMxoLkY0lwIZMBBXDGlWz9rXS+0cSW07vxA3p0dTCnFT/3UT12nVgkhRG8yE4qRx7OkNp5/3Rz5mvlnq5T3X/5EUkIIIYQQ4tqxMq0ZHHe9XsV3DBw3YnZjjFK/zabb5uEqD4u0i4lQCpy8j5P3yd1coTEdZ/65Qfb/1Q4AnGwTJ+NjxkJ0qDCdEH/AxtuTBAXOw1WsW9zlJ6NcZTqEwp46M/96mPG3m2za22TwqM+p22PUBmUIWqwPmTcADcXX66vdFCHENdArYxdr2Xo6fjK2IoQQreu8heeqjH0khw7X0Ye8EEKIVWUGre+U0jsyti56X6/2JfRim9uRa3ch1i4ZGRTiGrHSZ6MFju1IMrklTmh1ySpTkL05jlcImPxKichbwZlAFBGraJoZBUb7/RtBxF2HFxgttk7sF7Mx9u7sx3PkI2A90adnbB55dI7yoQx8JwkjATzQhOFzEssU8P4GTATwwwR21pTEs7XuiAU1Y81UuhU9zoFoPCIaBzj93o9AlRRGQVH//wTEBkyyN8WxUq3vsuZSQOWAS/lgk1CqHAux5q1kljCA2267jd/4jd+4xq0RQojeNvpEluSEw8x3y7izAVEzwnAUfXcnGX5/Gq8U4M4Eq91MIYQQQghxgfI7LvUTHtlb4tgZk5m9dbxCiAGcusr39e3dmZVvrGpsfMomPmLjlWPUpi10qHGyp8drDkL1SJPZH1SImr0RLRL71DEWgdqwxdAjaXaVIiqHXI7/6gB+sv241USu/SR744ly2+Vz7vLHuOzH2y43OkTblJvtb9MXbz9hbBAtP75XWmZfYYfb9MXbJzpuTBSWvU0tjLVdvtzjP1HpW3ZfX568o+3y5xPblr9/v/39J2Ptxy1i1vLXSflljnPSWr5C8I7UfNvlW+ILbZcv+Mu/ZvaW28+YX3p08bz/46MW6af6mH+uSuj2xvtRCHGJNDKJ85VaR8dPxlaEEKKlPumjQ01qS4zqkeZqN0cIIcQ6cGJHgq0HGow+keXof1/sfgMhhFiGXLsLsXZJZpoQ10hzIeDgf5kHDdN/fUvHbVWkydwUo//uJE7eYunHtRUlpuYmfTb/2MWITo+bGBDasNVwiQyFVpByA5yglUhUjVvs2TFIJeWgjHU0SiBY/HE/Qa1VNTV3S4n+uwrsO7ARXorDl1OwzYf7XUifft4VMN4KDHDykpy6pjUUvBiHLT6MyPMkrhEDdJ8m7NMsvlg7uziuiA/bZHbG6L83xcCDKeqnfCoHXKpHm2jJwxBizek2OxjA1q1b+fmf/3n+1b/6V6RSqevQKiGE6F3VYx7JCQc7Z2LGW8Hl9UmPuR9WiQ1Z9N2ZZHqmfQC9EEIIIYRYRRqCWsTSK2us2qGGk18s0ndXgsGH0tipsxOd1k56TH+zhO7ROQrduYCTXyyS2RVj8MEUt367xuTuGAvbrnKZWiGuEyvRugasHZeAfCGEWO9kbEUIIc6KPE1jxmf40TTDj6YpLIaEA6vdKiGEEL0qN++x5UADHWnmflhZ7eYIIXqYXLsLsbZJcqoQ19IK8z+376sx+oFs6+T72Sr1E90HOUffbjJywEMbML/VxnYjnJrGdiPSrn+m/HpgGixlHI6MZpnrT17BgxFrmZ3zMWIhOlAc+C+7zq54fx1CBT+OtZJUP16D7OkXR1JDLCIxblM7vvxs1GIVLRqt580EHnRXuzXiBhS5mvoJj/oJj3m7Snp7jOyuGKNPZAm9iOrhJuUDTdzpHo2YE9dPr8w+3gtt7ODo0aMd11uWRT6fl44XIYS4BKU3GyTGbAbuTRH5GhQMWWlCL0IpRViXaykhhBBCCHHpCnsblPe7xIdsMMBbCvDL0Wo366qoHGhSPdIk99vjbHy9ielrZm86v+qm8jSJKY02FO44pI5oUsc0fFRBvMc7aETvU5C/PUH2plZVWitjrpv3pxC9wHAUZsIgbEZE17hqsdLQodC2WIH1cPxkbEUIIS5WO+aR3NCaaCj9F3Dsc0tXtL8ffPHWjuvT8c6xknGr+8zpmVjnfaSs7uM5qaHO22xKFbruY6qe67i+L9N5Ei3Xs7vexwsLWzuu9yKz43qAshvruk038UTn41UvJjrvYAWFzxYL6Y7rbaf7a6Pb6Uq52qWdgI46N9a0OhecsKzu15SPbOx8TvLm0mjXfRQqneODA797ysDhQudsdNvs/li6Ha9aJd5xfSbb6Hof3dS87pOlTS12fr/G4t3j4W4Zmu24PmF23kfB7f76i3Tn41ltdn+slS7bjGWuQtLoE6cuWmRlDbb8bD8AJ75YxFvo/J7d/nLn14ZjdH/PPze9reP6/p840HUfYh2yYOg9aZyciRlX6AhK7zQov30Zk9L1ShzkhXqxzeeQa3ch1j5JThXiOkjFOl+Il7aajJ8EZSiGH00DafZ8LENkn39RMXOydZK+bbrIyJSHa5v88NYxAmuFb+VzzssHxkpdNx9I1rpuA3Bkrvv0aN0u5C7FSs6PamH3C64tuZV1nN2Rmey6zZyf6brN3uqmFd3fs8UdXbdZal5w8pQFPgVWWTPxtbOdHQufiSjsbWAm60x8Mkfwn2JMfuXscz/wgEn/PSnCRms7sXYcvL95evZ8xeILNZZ+v31y6sxfd39vBYsr6ERLrKwqa7qve6WBlXQKh6GxovvTwQq2W8mop7ey+6usoMOxnu3++bJnhe/3lTjR7P4Zu788sqJ9HV7qvi/vL7p/pwyrKoOnPAbyFhtvSeAmDRYnbBYmHJrnVHvo+/jBFbVLCHF1bN68ebWbIIQQ69LMt8rMP2cQNiKUAfERm/iwhbIUpbfkOkoIIYQQQlyesKGpnVifk53oAE7dGSdwFGP7PKqDFrWBVr/hyIEm42+/G8h4Qd+u0eMRMqLnxYYtRt6XITZgUTnsUt7v0piSyRmFuJasjEFqo0Ni3CYx7mAlz47p+ZWQwt46zfkAu8/EsBSRpwlqEc3FgMSITWqbQ3h6slVrxIJXL+HOezWgdC1ZB8dPxlaEEOJilUMu/fcmMeMGdsZk8//SjzvrU35Hzo+FEEKsjBGHTZ/uAwNOfal7YqoQ14qVNtj8c/0YlkJrjQ7BsBSxIQt3LmTkkST89Wq3UnQj1+5CrH2SnCrENWKmDHSgiZoX9MZHGrupcRoRTkPj1CPyM2dPur2EojhiEZ3z7nSqEblZn/FTcwxUXJwwwjMNvn/rBiJrZQlX4sYQZBWL9xkMvBLhFYIzCadhPWLxpTpjH8pi50z8UisRcfGlOlrD4ENpzITBwvMrS0gW10dhbwM7a9J/X5LEmM3cM9Uzz50Qq6mZMpm8KcHkrjiZpZDBkx6jR5psONCk3G+ysMlhYUP3JF5x4+iV2cd7oY1CCCFWR1hvBc/rEBpTvgRfCCGEEEIIsQIzNzvkZgLG3m5y6LEkdiNi/O1WQq6XA7MJpgtBAuaeMBiXLkWxioyYYuIncniFkBOfL9Ccl6BJIa4lI6YYejhNZlcMInDnA8rvNGguhoSNCDOuSG2JMfRoGqVak3rrUKPM039rjVKK5lKAGTfovyuJW29eWnKqEEIIIdoKG5pjn1vC6TdBQWZHnMSYzcQn8lQOtxJUg0prsoig1r2KohBCiBvPlp8bwHAUc89UcKevbh9LVDJg1kQvmqBVa8I7E1Q6wopHBHGJq7/WrIxBUOmNc4CJT+ZRJkx/u0z1UKtSamZnjJEPZNj06Ty+f2mxH70SB3mhXmyzEKK3SHKqENfIpp/KY6VMjv7PRbIzPvmZgOx8gNPQ533BhxbU8iaH70tQGrPQRmswxfAibvlBlVhd8279VA34psHxwTRvbuwHQ06gxcUqOwwS0xq7qoiPWrink58b060TaCdvnpfguPRynYF7U1hpeT2tRXPPVnHnAvruSrDxp/LMfKtM/ZQEwos1QikqAxaVAYvjuxP0zfgMnvTYurfB6OEmiyMW7qwE8AghhBBCCCGEEEIIcUNSipmbHLa95JJaCIjs1oiXl4OZj5mr3DixnumAVlCi6rrpGckNNoZjMP2tAkG1N4LrhOhVTp/J2EdzmDHF/LNVyvvd1vv2AtUjHgsv1LASBl4xQIegLLBSJskJm+Z8gDsXgGrt0600L60hUjn1ysnxE0KIdSvy9Zl4D3emCkD2phh9dyVJb4mdmTBi5ntlKvsv8TtYCCHEuqcsRVCLKL99lb4j5gyC5zKwZALtO3w0cC8lIgWBo3BTBrWcRXHIojxoScz95TJh4L4kmR1xzISBMkGpVhXS5kLAyc8XV7uFy4qPWNgZk9I77pnEVIDKwSaNaZ/h92WoFxqr2EIhhFg/JDlViGvAcBRWqjWovvUXBuDFBm7aoDhq42YMvITCSxh4CePMQPyF4rWIeL3Vkz+71aYyZHHQHyKSk2OxAqVbDMYmTYYfzXDirwqthbr1ejKc819zqa2tqcj9olTkXJMiKL/jUj3SZPSJDOMfy7HwfI3iG3JBJNaWyFIsTjgsTjgkiwFb3mgw/rEcJ/6q0DOzZIlrqFcCPHqhjac9/vjjV2U/Sim+853vXJV9CSGEEEIIIYQQQrzrg2P7AdCjUDo8xC1v+2Q+vESREZxKxOODBy+6ja+XS1gdXPZ+Ymb7yfFmG5llb2Ma7fsrLdV+edLxlt1XM2w/3L47P7Xsbd6Xfaft8pSxfLDeweZo2+WlMNl2eb9TW3Zfzah9m4ec6rK3qYaxtsv3PdH++Pc917/svgqPLLVd/vjb88ve5ou3Dp33f2zAIrHB5kQui501UQpqxz10qMneHCc+bBOFmsakT2FvncbUuZN+Ll60/8QGm9HHM7gLviSmihuTAU7OxLAVfiUkbCzfWa5shTIgal5ih7oCZUJmZ5zB96QIKhEnvlLsOoYU1iPC+tltdAB+KaR0zmTMaPCWQiLdQ538YlXI2IoQQlyZ8v4m5dOJqFbaYOsvDDD6gSzpLU10pNFhK6k1qIRUj3kSiyaEEDcwZYCVuArx7icN1AsJKJ+Oex4KUSM+aiiE4RCsCHwDAqBgMnOon2Q5JFaPyCyFZJdCxo42W8WhYoqpnIFfkr6flYqPWmz4eA7DNoh8jV8O8UshfiUkPmyTGLXpuztBYc/ajGdOjNlAqz/iQkE1YuqrJQJ9icWCeiUO8kI91Ga5dheiN0lyqhBXmZUxyN4UB6Cwt46yFNO/Oki979JmgK73WZy4Lcamt5pk50NmdsWIFiQxVaxM8/SYf+i1LqLenX02bEbUT54NonD6TcY+lKVyyGXpx/XVaOqqUSboHuoDjTzN1NNlBh5MMfRIGmfAZP6HyweKCLGa6nmLAw+kuOebZRJjNpVLnalaCNHV97//fdSllH5oQ2t9xfsQQgghhBBCCCGE6EQpSD9RoPw3gxT/fKS1MJLxLnH5Upscxj+WawXElUL8cggmDD6UAgPqJ31mv1/BcBSZHTEmPpGnvN9l7gcVdJvYQ6ffZMPHcjSmfWa/V7n+D0iIVWQ4iv77kuRuS2CYZ/uKa8ebzD9fa5tQsumn8zg5i9rxJuUDTeonPSKvfYSjssDOmQw+mCK1KYaONCioHmoy+8Mq2l/dyEjFcvV2xEr12vGTsRUhhLh6gmrE1NMlUpsczKSB4RgYJhiOgb0zxsCDKYqvNVh4YfmJc4QQQqxPTp+BMlrnzJt/ro+FF2vUji4/+Ru0rh9504ZJE+Up8BTUDPABBXpjgPlYFSPV7tanO3wGIo6mzt8gXg7Iz/lkFwPy8wHjT+Y4/ueFK36MN4oNP5FHmctXSt/xDwdJjNlrNjm1sLdB/vYE2Z1xase986qnirVLrt2F6E2SnCrE1aBaA6G52xKkNjnoUFM91mTxpRo6gvpvjFzWbud3xEgXQvqmAu74ZpVgS4KZ/rZn1utLFLHzWIXRuQZmqAlMg/mBOEc3pvDi8rG1EslTrYG8xZdbCacjH8hApDn5+SKhe3aQLzZkoQzFwvO1tgPy64XhKOKjNk7OJDZokdzkYCUM6qc8Jr9SWu3mrZyGxRdqeIsBw+/L4OQtFt0QL35pye9CXA+hrQibEblbE/jlEHem/Qz6QgghhBBCCCGEEEKIdc4As88nmGlV3xz96PQqN0j0soGHUtSnPCa/XDpvxn91eghRn9MVXXy9QWZnjOH3ZTBiiulvlM+7jdPfSpqLfM3k10pnYhmFuBGktjoMvzeDYSkKr9apT/pEfkR80KLvnhQbn8oz/c3yeZWHlQV21qS5GGDEDMY+lAXAr4ZoXxOd/tGBxowbxAYtlNkaL5p/rooONbWTXtdqqddNr1Y7WUvk+AkhxA2tdsyjdqxNspEBfXckGHwoTXNRYkWEEOJG4xUijv3ZIkOPpklucBj7cJbKoSaz32k/KVjfvUkG7kmiXlRoWpMaYQBxjd4cwntccMC4jPnu3KzFTNZiZgfc+3QRIybJapdCnT7m7RJTAdCg7LV9TBdeqDH6RPbMYxFCCHFtSJaXEFfATCiyNyfI3RrHzpi4cz4z3ytTPdw8b+DzShy9P8n8fMDOF+rcc3Sew/Um+yf6r87O16BUzef+vQs4gSYwFIGliPkhm6dqbJqqUcjZHLojhZuSj69lRZq+1yNqx5u4063BQjNh0FwM8MvnD/QFp/+3MgZBbY0MAl4lyoTUlhiZHTGSmxwMUxEFGq8YUN7n0n9PEqe/N19HlYNNvFLI+Eey3PfDAie3Jzm5PbnazRLiPNpQTD1dZuR9aTY+1Yc76zP3bJXmvAw83JB6JcCjF9p4Dq17rMFCCCGEEEIIIYS44QSLFqUvDmLEIxJ3V3C2u6THqqvdrHUpKFnU3kkTNQ10vwnDIWSjVp/XogmzJnrJxCyb6HyEHg/RYyG0cobRAQSnYuimQocKe1MTI9157MjpN8nsjGOlDKykgZk0UKaCbxuEGY22wPBoVbwwNGEGgl0xwkZEfMQmMWoTNjWFPfUVPcbUFodYv8XJLxYu6stbbmy2crBJ6EaMP5lj7MNZ5n5QIXQ1Tr/JxqfyaA3zz1UlMVXcUDK7Yow+nqV6pMncc1XCc8aJvcWQ6lGPsQ9n2fCTOapHPBrTPsqAzM4YOoSpp0sElQg7axAftbGzJoatMGyFshWGpfCKIeUDLs2FAG8pJFrlKqlCvEvGVoQQ4jqIWpXKUpsc0ltj560yQk1kAFLJSggh1jW/FDH11TKYsOnTfWR2xKgeaV5UQXXiqXyrf8iNUO93YVtw9bNbgojbflTFCjSldpMqiIukNjv03ZMEBX6nCaYUEF63Zl2WsNlqv529SkWAeiUO8kI91ma5dhei9/RmVo4Qqyg2bJEYsYmPWqS3xNAaKgddSm+71yzhpjpk8caH0uz6boMds2WGyi4v7RjGc9bXWzhXanL/a4soDYc2pzmyJXveupsPlegr+dz/TJFy3uKN+7JElkxlci5nSZN/I8KuQsPVjH88h9NnYqdN7IzJtr83wIm/LBBUIzI7WjNFe6Vw3SWLZXbGGHgghZ0xacz6LL5Qo3qseWYWXqffpO/uBEs/rq1ySy9fcy7g+F8UcH5rI1sO1vFtxcymxGo3S4jzuNM+x/+8QHKjw8ADSSY+kWfyK0Xc2fX1mSPEavjFX/zF1W6CEEIIIYQQQgghRFfesTiEivzPzqNsCShZqYWTeY69Nk4UKexYQNWOYcbC0z8RhhMSNk0q5SRBxSKsWLinEhhWhJGI0G/YrR3FIggVBApMDfkQMmBMWqh3nFY1iv4IbUK5nEQ3z467uamQ2G11dKCIYgbq1uaZCgM6AP16nE2fjhM2NX4pJKiHNAsBhJDcncCeU6gQIge0AypUWLMw+nhr/C90IxrTPk6fycafylM6UMPpa6IMTXzg4kBBM64YuD9FY9q/5D7m+kmf6afLjHwww7a/O0hQC7FSJl4p4OQXikRNeW2KG4edNxl6JE3lkMvMt9tXrYk8zeRXS+R3J0jviDH0nhRagzvnM/nV0pkxV78c4ZeXqZ7SA5Ru/YjL12vHT8ZWhBDi+qoe9xh8IMWWgzVibki2FJCshdSTJkd2pVgcdiRJVQgh1rsQKoebDN6fwsmZnInYNWDzz/Th9FlUjzWZfrrM9v81fk2asGNvnXQ5ZHHUZumP5q/JfawnE5/Kkxix0VrjzgZMfqXYdjsrZaCUwiuv7ezU+gmfKNBkb46z9MrKJsgTq0uu3YXoTesrs02Ia8mA8Y/mSG1yWtUXlwIWXqxR3u9elwHLIG7w3d0buPfIPCOlBh984xRN2yQwFOWEw57tw9e8DdfSwGKDe94soBW8ckc/hb7zLzJKuRgv3jtMquaz+2CBbDHg7udL/PixvlVq8RoTaia+HGK5Zxelt8doTHpU9ruETc3Qw2nMmMHgQylmvl1h9IOtwf+prxbRa/va4JKMfCBD9qY41SNNJr9awi9e/OD6703hl0NK+9w2e+gdkac5dlMKM9Rs31ejmTApDNrScSvWnPpJj8a0x4aP5xn9UJYTf1mQYJ8bTK8EePRCG9/1J3/yJ6vdBCGEEEIIIYQQQoiu7BGPRqRoHo4Tv7mx2s3pCUtTWZ79i7tID9SJJz1qxQR1N07YNAibJuizYwAqFmKlQ8xMQO6+Iuk7yxi25lS5D+ZMmDdbEQEjAQyGKBP86HSIQFWhpk2MmVbVAGeiib3NxewP0A2DxnNZ3FfSKCdqJa3ud1CDrTEXfdIGV1F4rcHiK7WLqo72/d751ZHOVXzfElbSaFVd0IBqje2cfHrizDbZHWWG7ltARwozFpLZ1ZqUVBmKme8WL+u41k54HP+zJZITDnbexFsKqR1rrqsxMiE6ebfy6eB70gS1iLkfdqliraH4RoPiG/LZLdYPGVsRQojrq/RWg9RGh/FGhbAR4c4GVBYD0ltj7K6HNJcCqoebNGZ8GpP+mdslJ2zS21vXFJGvGfs/mpiDnSeoea2woeP6yUqua3s3ZEod11uq+8VDxV/+Wgig6XcO2a41nK73cSro/FiCoHtluCjsXBAkDLoXDDGtDpX0gGS+83nkStqZS3fZR5fHsRLpWPcqilML+Su6D627x/LVgs7Pfdrp3s6K1TmxLwo7P2cAptE5cGZLbqnrPvwuz0u5kuy43m3aXe9jvpbuuN6xuk9qleny+lqJzcnOx6MWdP5M2Jrtfjy3pRY6rv/h7I6u+7hr4FTH9XPNTNd9dLNjb/vPyKiuKP9pktCNKOw9e8w3/XQfdt6k+HaD+dPXp3mrc+LgsfpA13bE2jz3yjz9unZ6KDBsNRiw+W/14eRbCcMz3y6jO7yV8ne2iulU9q/9OOzmQkB8+OqkTfVKHOSFeqnNcu0uRG+S5FSxImbSwOkzcfKtC8LmQnDDVT1LjNqkNjl4xYDKwSZag7IUudsSEGm8Ukhj0ifyruG3t2Hw4x0j5KouN00Vydc97CAi3axTnyywf0PvJGo6bsCOYxVC02Cw4JJshEQKXrp7kEpm+QvtWsrmtffkufXVMoNzHo89vcDJrXGO3dT5YnO9iy1yJjG1NqGob1CU/8EckX/29Vif9Nj8M/1kdsTPDLSHXkS0jt7K/fclyd4UZ+Y7ZSoHl5+l17BpJcZ172/pCUduTpGshuz+cZlGwuCN+3M0k9078IS4nnQA098us/ln+hh8KMXcD7oEPQghhBBCCCGEEEIIIXrWC3e+G0ioGXncJWjkeO3ng9PjE/m2t/mJtwptl/t6+aDGqVr7oNyav/xYU7sgNVg+EHQ8uXyA8l3Z9sF9g3b7aoQAceW3Xf7/2n47ylZs+uk+wkbIgf/SOD2OEQJnxzwMW2E4isjT540Dtbwb4NkpaLX9/Z/17vhCBWVV0CHEBi0G7ktixAxQ4C01WXq1fqZ64oUKj3QOrvTL59xOw+z3KzQXAtAQNiOCWoryoeyZTUYfbyWXzv2gQlC7/MGdsKE7jh8JsR4ZjiJ/Z4LcrQmshEHlkMvcs9VrG9fQK/TpH3H5rtLx+83f/E1++7d/G4Df+q3f4jd/8zevzo6FEEKsKh3A5Fcuvp4q73NJjNvkbkuQvz3BwP0pFl6qUdhTZ9NP9xEbsPAKAZGnsdIG7pfixH+ihDm8joLchBDiBlF7ug80TH+zfN5yp8+kuRCcSUy9lk7cGyNZChk4EZD+6T5OfalA1D3f+4Zh5QzSW2L0353EiCmKb9aZf7bW9XbprTEiX/dEPomTN9v0owohhLiaJDn1BnP8/7p9RdtZp2c1MkLN/T9aJNFo/R+dnsDH0FCPmUwNJamkbALLIDQUoanO/A5MA7/moI3TN9KajOuT8AOKyRiedTZxSiXOzphiRJrBYoPAMiimY0Snb983sPwg7rsGf/LAih7f0T+/o+s2FxYetPyIzGtLxB2D9HBrcNos+Fip8xPA5p6pUHrr/FlA7h3sPOsMwPdPdp+9xk63zobraYM9o/2thVHE+16YY/tMiYVRm3LOIWh2f2vXVzC7UMLuPhMXgON0nxWsXj5/VqYH35gnV28NfmtgPhen+mjIYLLCYJd9DcRr8CFwf2zgHFFsPNoge1uV6Jzc3COl7jPkJOxug+8tbzK+ou26eWNubEXbjWa7v9b98PzXXTWnKfwkRPbZF27sghNpbzEkbEaYMYP4qE3xjQbzz62f5LDEBpuB+1IsvFjrGlhQfNNlw8dypLfHqJ/0enrwdfSpfQDMG1Db4DD+ZJbt//EUS6+cnUVq+Dsbu+4nWsEMbQAL1VTXbXJO91nFbGdlF6RNbwVJttEK2t5lVrd3+Y3un41HC/1dt+k2E+K7Ymb34/BcYVvXbRq1FX5ex7vfXzbVfSarSr3zTHvveuiVi4+nfr1JLhEn/289VEqz/76VfRaLHtcrAR690EYhhBBCCCGEEEKIHlPYUye7K05ig0P9hER+LcuADR/PYSYUU18tLzvBZuS3S0q9Nt6tjtCcD5j6ernzxlciguLrZ8cWqkeaJMYdIi9CKYVXCgnr62TGUSEuQ2zQwhkwCRuaxqS34oq/6a0OQ4+mMRyD8jsuxbca+EUpF3weGRdYdfv27eN3fud3VrsZQgghrrPGlE9jqhUv0n9PksEHUjh5k9iAxcIL1TPV9ZQFO/9lH/6Pk5hPXsNrEiGEEFddFEE4Z2MOnV8hGyB0NbH+65TGYhi883iSza80yWvN5v+ln6N/urRuittcjtiQxegTGeyciTqdMKFDzeKLtfMq3HZipQ3c2bUf+zn4SAozblB4vXNl3hXrlTjIC/Vim4UQPUWSU29gTjNkYrJOKWuzONg+yURpTbwRUU2b7Ls9R/10Ima26DN0wmPTTA0n6Hx2FgGhYaDQWFHrm803DE72p3EdC88y8ZrgWSbphs/2qRKZRmukMzAUS9kYhXSMYk4RWStLnroWAtvgpfvOT5vc8rOvs/Gn8sSHzybfDD+WofS2e/2+xA2DV+7o5z0/XuCBvQuc2JBiOps6nTS8NisnTsxWyJ5OTH17U55jo2kwDHYmZ1e+EwPq90e4uyD3JZPMD0xKT93AA2lKEXXJqXP6TcyYwfS3ylQPr69ZoQ1HMfKBDPVTHoU93S8g6ic8GjM+Yx/KorWmsLfB4ovdZ/pZ0yKon/RoTPkkJ5zzklOFWFO2+vBSAgompNb+rFlC9LL5+XlOnTpFtVpF6+VPTt/73vdex1YJIYQQQgghhBDiRuMVQpoLAaMfyNCY8VsVPz1N9VjzosC0G1lmR4zEqM3JLxbOryx6A9IBksgsblwKYgMWiTGbxJhNfMzGSpytIO1XQ079TXHZysUAVspg6NE06a0xqkebzD9bvaKqw0JcK1pr/uE//IfYts2jjz7Kd7/73dVukoytCCHEFTITCqffwrAV7qxP2OgeRLn0ap3QjRh4oDVhvnfOZBo6AGuTh/9aAh2BMpbbixBCiLUmOO4ACnv7xcUyFl+pMfJYhomn8kR+xNwzVa5ptqhhcPyBBOG/KjLwYIoNP5Fj8ksXV/e+EWRvizP8aBo0uHMB7oxHYyagdtxb+VNgglIKv7S2+xqcAZP87gR+JWThRz0eIy7OI9fuQqw9kpx6A7L8iKEFl80n6qRrAZGC5x8cpJG8+OUQWgbHtyXZcqTO/c8vnVk+PxzjlZ2DoBRWEGGFEWaoMSPd+h1GWJFG1QysSGNGEaAoJRzqjsW2+RKj5TpOEJ5JWH3XQjbG69sHiJRisOQyVHLZearErBVjZnMMy9dU+5Z/6Rq2YuixNE7exHAUQS3CL4f45RA7Y6JDmK/6VFPWxeVRL4ERalJbHNy5ADtvYjpnez52/P1Bpr9Zbp2oXQe1tMPLdw1wzxtLbJmssWWydQKlgZNDKd7c3r2K6PW0aa7Ku0fetw0wLr/XKIqBjoMh54wdWWmD0Sey+NWQ6tH1lZgKMPxYGsNWzH6ve9XZd536UpH4kEXfXUn6705SOeTiLfZ4grOC+JhNYa8kpoo1LBGBo9GvxSCmAQk+E+Jq+5M/+RN+53d+h/3793fdVilFEEiiuBBCCCGEEEIIIa6tya+V6LsrgZMzsTMGZsogf3uCpb11Fl+q3dCVCnQEtWKCwYfS1E40cWelr0aIG4kyIDZskRi1SYzbxEdszJhBFGjcOZ/S2w0akz7ujI+dM5n4ZJ6JT+apn/AImxrDVmd+lK0w44rYgEXYiJj+RonqUUn0Xo7SrR9x+a70+P3xH/8xzzzzDP/hP/wH3n777avTqMskYytCCHFlUlscxj+au2j58b9YwiuGGDFF5C7/xVF626X0tosZV4Snt4uP2uRvT+C/5mCM+5KYKoQQPSByofl6Gu0qgmkHAKPv4nPn8lsufbsTJEZbVXnGPmwASxdtd7W9m8MW+TfuxeDww2mUUhz/q6XLj5kOW5MN2fm1WUTrXcOPpoFWvLhYH+TaXYi1S5JTbyQKdh0oMzFZR2ko5m323pHnlnfKvOfFBcpZG6XBDCKmNiXQSpFohIxNXlyefWiuSXxziBuzCCyDwGp/5R/F2pdyfGtikLdO/21EETHLx/EjXMfEc86eqFRSDkfHs+w8WWTnsTJjx1pJda89mqGea//yHXk8Q2Lcpnq4SeRrrJRBbMAivS3Wmj1LwcOvLNB0DKaHEyz0xwhNdbotmmzVZ2KqTmAZTI4nUZEm3gxJuCFNx2R+MEY1bXPX60vk23SoAChTMf5kjuN/eQUnbpeolIvxvYdHyFV8cosBiWbISKHOxvkahzbkcONr5+2+d8cAdx9cJFf3uePwEpMDyctOUO37vImKWs+fOQfh8NVs6fqQ3hFj6OE0OtBMfqW0rgI8lAH99yXJ7Iwz/a3ypc34G4EOIbnRwa+E6PVwsanBL4UkNzgU9tTRXc6pVaAxfAgTq1eVWtx4lAU8XkM/nUZ/ywQunhlNrEOa61dV/kr0Qhu7+Bf/4l/wH//jfwToOCuYEEIIIYQQQgghxPUU1qOLZqfP35Fg8KEUVtJg9rsrn3xyvfBdi+f/8g6KcxnQCnR4SZNwCiHWGAOSEw5mXOGXQpy8SXzYxkwaGI4i8jReISDyNGbCwEoaWGmT2JCFYSkiL6IxE1DY26Ax7dGcC9AXDH16hZDpb5bJ3hQnPmyjbIX2NdG7P54mqIaU3nKpHmkSedJHLNau+fl5fv3Xf51bb72Vf/bP/hm/8iu/smptkbEVIYS4Cpb5+Jx4Ko8Za8UFnvzrIu5M5wnMQ1dj50xGn8gQH7bxigHOw1WsmyS2RAgh1qwIGq8m8fYl0RUTzpQv0qh4iDXmARcnMR7/iwKDD6fI357ASlz7GQhipZDBB1NETc30N8rX/P7WqtpJj9Rmh41P9XH0TxeILnNOq+ZCQHzYYsMnchRfb1A7trYmx7JyBvFRG28xJKhcxcD5XomDvFAvtvkCcu0uxNq2drLVxDWXuzXO0Kk6R7ammRpP0Iy1TvR+9JDD6IxLX9HDCiLiDc2ud6pnbndicxKFZuJE48ysh4uDDm7s6rx8IsPAjVm4seW3ObQhRzQSklsMGD3eJFkJ2yanGjFFaovD3A+rlPct0yFhQOX/u4uBgseGmTpbTp0/EB4pmBuMYwcRt+4vESlwYybNmEm+6LH5VI2mYxDzIiK/NVtpfdKn/I6L9jVW2mj9pEz84nWuwmgYlHIxFuMpABYWY9x7cJGhUoOT8cz1bUsH9YTDc3eM8f49kySbIU++dIqXbxqCjZexr7sjEq8ZqACy3zApPRUSrZ2Hem1ojV2LiJcjTL+VXKgVRLYissDNGQQxxfiTWey8iZOzqBxuMv9shbCxfk7GMjtjDDyQwkoZLLxQpXr40irCxoYtJj6RxysEnPqbYtdEzl4x94MKGz6eY9On+5j+Vhlvqf3nUHImZOMzPpEBBz8dv+rtMFyITYK7GbScbYgLqIkAvcmHEza52+KU3pJBBCGuhldeeYXf+73fQ6lWJ++7v5cjnTRCCCGEEEIIIYRYDWZCkdudoHbcY/GVOgP3JW/I5NS3n9lGtZDk9icOksy4/Nknx89UCBJCXH+xQYvcbXESYzY6gPqUR/2Eh1+JsLMm8RELM2FgWGerlBq2wrBOVyxNKEznbDCt1hpvKSSohoT1CCNmkNkVx7AVYT0iqEf41ZDq0SaNKZ/mYrCiQMHGlE9jqnNSh1ihXg0oXUuu4Pj9s3/2z1haWuILX/gCtt1+4vvrQcZWhBDi6qgd9zjxVwXGPpLFzpxNQHo3MRVg41N5QjciqEYEtZCgGlE/5VE95p33nTL0SBozbjD51SL1kz53/fr1fCRCCCEuhVGDvr8xaIZZMDTmmE/srirWYAB2hOG0v93AA0lyuxOYjkHoRkx+pUj/P7+2bd36UgMUnPqbwroq8nOppp8uk94RY/SJDBNP9XHi/ypc1n4mv1xkw0/kSYzZJMcddKipHfeY/nZ5VY+vsmDDx3PET1flnXvmxut3Xo/k2l2ItU/SRW4AdtZg5Iks8WGLmZE4R7emz1u/9ViN0ZkGR7emqaQtBhebbDvWStg8tSnBkZta2x/ZmWZwrkm+4FPOXd+OYW0olsYcVASjx5vseK1OccgmOKfzAq0ZeCAFEdROdJh9I4KFgTgLA3EObMsQb4YYUesLSCtFI26iDYVSYPkRgaVa5VZP38f9ry6SL/tUUxbqnTqJMRvDVhRfq6PD1mylXiEEVn9AqJpoPU9Jd21m3X3/7g18+KWTWJEm6V7e8WreqmneGmIsQu5rJskXDaofXH9XDampkPR0hF3VxEoR1jl5mJECpc/ONRQZUB8wSG2OUT3aZP6ZKvVTq/96vFrsvEn/vUmyO+NUDjdZfLl2yYng8RGLkfdn8JYCJr9cWjeJqQDubMCJLxQZ+1CWjZ/qY+rrJWoXbqQ1I6+2HrSxgreLCk9/Rporr7CafhPSB2DJBnfTim8mbiDqgzX0CwmGyTD4YAqvGNKY9insra+rRHrRojRnJjlZy3qhjZ38yZ/8yZm/O3WwKKWkA0YIIYQQQgghhBCrJrMzzsC9KQbuTaEjjTIUIx/IUN4fkL2pd4OFIl/hTcdQpsbNNrFTAYYTcW6cjI5g4USegy9uYv54P7c/cYCtd00BELpjq9RyIW4sZkKR2RnHzrWSJpQB8WGb2ICFX2klixq2IrM9Rt8dyTO3C+qtJArta6KgVaU0rLUmtI4CTdSMqJ1OZnWyJn45JPKlH3Yt65Wxi7Xsco/fd77zHT73uc/xC7/wC7zvfe+7uo26RDK2IoQQV09zIeDk5wsMvzdDarND2NT45VZMV+J0gojW0FwKMBxFfMwmd1sCd85n+htlglqElTFIbXJoTHnUT66feDchhFiv7FOgQoU56JP6qUWMLgVQMzfFGHlvBmUqwmbE4is1ll6pX/N2JhcDYrVW8qRXWH8x5peqeqhJZZNDdlec7C0xyvsurTgQQOTByS8UMRzI7U6QvSlBaqvDtl8c4OQXCvil1TnOYx/OtiqmLoXMfr9Cc/7qBoj3al9CL7b5XHLtLsTaJ8mpNwDDNkiMtC7ux2Zd8sU5nn9oiKEFl/4ljw3TDQBu2X+2RL3nGDheRP/C2SRPbSjmR+PMj56usHftzwUv4iVOz3YARKeTpFSoyRQCxo+45G9LMPv9CmFtZSc02lA0Esu/DQL7grNkpTi0LcOdbxZI1wL8vMniyzWG3pNmx68M4RUCim80KL29NirA1eIWGhhbqnN4Q47A6nLWfx0YUcRAyaW/3CRb9zC0RgMnRtLspHHZ+40GIOgHe1qResaA3RFdr3J6RHwpYuI5Hy+laOYVxW0m1byFmzcIHdVKGNQaFYLpaza86pGeCym902Du+9Xud9Aj8nck6LszgZUyCRoRM98pUzl46RdEm36mrzW4XA6Z+UZ5XQ4K+8WQk18oMP5kjvEnc5xcjHAHzr4fYkWNU9NURw2S850/LxPzIVt+4BGZMHW/w0K+830nqgH5A5A80vpfm523FzcuZYB6uMHxf98gPmwR67PI3hQntztBY9Jj7odVgqp0BAlxKV544QWg1QGze/duPvvZz3LfffcBrY6Xb33rW7z66qv8xm/8BkNDQ3zuc59jy5Ytq9hiIYQQQgghhBBC3IiKbzaw0gZ9dyRRRmu8L3tTnPqxJAM3XzxT/8la37L7qvrtyy8Ua4llbzOUuWhKRwDuGzrWdvneu5fdFYdp3U9mZ4yBB1PY6Van+CIjAES+JqiHRJ5GKYWdNzEsRXMpYPGlEgf/qA9Y/vEJIa6M02eS2RlrfdYosNImqS0OaPCKwZnKmc2FgMWXaq1JsM8ZOrRzJlbSIKiF+OWVj1k0F9fRzLhCrEC5XD7v/1gsRiwWa7ut67r8o3/0j8jlcvzu7/7u9WheRzK2IoQQV1foaqa/Wb5ouTNg0ndHksyOGKnNDpUDLrWjHmbSYPDBFJt/to/Dn11k5P0ZwmbEwotnr9vMFZRfS9tdYsiSnVcDnCjlO64/uDDYdR++1yUku0tmiG13L9AQszufa7qNZcoUnsPqcj9qBRksptX5eUnGOicXh10eB4DRpR2u173ITrfjFenuxRpMq/Px0lHnfXjN7gF0Lx3b0nG97Vz5NcZAvnssqd2l0sVo/OL394WOW537OaKw8/G6bcNs1/u4M3+q4/q3yt0nACt5y/cdAfTFugfJ58zOMc/7yyMd17th9zSOvJPquH401f05OVYb6LjeUt0/e5b7nNU7IXrNgAWLxutpnDvbH5P3vd6g+L0+6vvSKFuTfWSJ1K01Np6zjd8l2HRbaqFrOxfd9sdr/EArH2L2+92P141i9gcVsrvixIfty0pOfVfkQeHVBoVXG+RvTzD4cIpNP9PP8b9YIqhcx/hPC4YfSZPc6OAVQ0785eVVhBVrk1y7C7H2SXLqDaC5GHD0fy6y8VN5rJRJZCrSNZ/b3yotexvHi5gZi3N0Z+eT2uutmrMo91tklwJuebnK8ZsSjB91GZjxcRMGU0+XqB3rUDX1Kij0xfj+oyNkKz53fHmagfvPHiOnz2Lo0fSaSU7FMDg5nGLjXI0PvXKKSEFkKAJDYSiNoUFFoBXUkyaHdqUp93XvnLhcNx0vsHW6wrspchrwLYOTQ6mrkkhaeTIk+1WT2DGDOyernLo1xuJGm9RSxMZ9LlrBzI4YpdHrW/n3SjnlVifLsY84ZypX+uEFF2FKoS0ILMXxh2MoDc5/nr/eTb2mcrfE0RFMf6NE7biHvsxrFmVC9Wiz1RG6/vJSz9AhTD1dYsPH80z8ULFwe+sr36lozKY+87cKaU1LSPtOH+N0v0Nkw4YXPCbfH+LFz3/92V7EyCmXoekm6crZjor6VmiOX/WHJtYZd9rHnW51SBsxRXZXnL67Egw9nG47YCGEWN6xY8eAVofLr//6r3PPPfect37Hjh08/vjjLC0t8ZnPfIa/9/f+Hnv27FmFlgohhBBCCCGEEOKGFsHCj2qkNjo4fa2+69oJj1t/dWqVG7ZCCmJDFmbcwEwo8rcliA/bVI80mfpaCR2CmTCwUqd/kgbKbvXBl/e7NGZ9mnOSuCbEtRIbskhtdogPWyQnWhW7Irc1sBg2NYsv1Sjvc4m87gOFfinEL3UP0hU96nRysrgCp4/fxo0bz1v8b/7Nv+F//9//97Y3+Xf/7t9x6NAh/uAP/oCRkc7B+teDjK0IIcT14S2GzH6vwsJLNfK7E2R2xMjtNlCqda1kOAZOziR0NWbMYOKpPGhYfKkGtJ9gSAghxBpggXdzSPw1i+DtONGMja4arfheBeYmDyMTMvtanrBkY+Z8hn5mGuPahaq3FV/ShA5EayS8fy1wsgZaawy7e5L+ShXfaOBXQsY+kmXz3+rj+F8UrnmBEiMOI+/LktrsoAxFUAuZ+uryOTKiN8m1uxBrnySn3iB0BFbK5MTGJPFGyAOvLAGw2O9wYmOKu19rzQ7hW4oDOzMESYNCvw3q6p1wXA3aVLz1UJr8fMCm/Q12P18hOH1StOcDWQb/U/cZc64KpShnHSa/WmLgwRShq2nOtRJrwsbaGr14c9sAM31JtsxUiPshVhBhRa02hoYissCIIFsOuOeVIs2YwbFtKaYnOs8KdKnGFmpsn67gWQaHx7PM5+JUE9bVrW5qQPknQ+J7FPG3TLa+5rL5dfe8Ccd2vFTHSyj2vyfVMxNRR6dzaQ0fLsxJbUspVjChV09JbW0FqEx+pUj9VOdZ1ZZjpQzSO2JYSQO/Et0QA406gKmvlxj8P4YZ2RMQGeCnFep0zItd17gDqvVZv8zxiBcjIgPKG0z6D4cXTeCXKfjc/koJNOhzvjMK74HGFpbLeRWiraipKb7RQFnQf08KZbVex2Id6JUAj15oYweVSuXM37t3775ofRi2gqg+9alP8ZnPfIbjx4/zmc98hn//7//9dWujEEIIIYQQQgghxLumv1lm88/2UzvpMf10CeN313DnjAFW0iCxwab/niRO7uwwuzvnc/Jvimcm4QMkmU2IVZLeEWPsg1lCN8KdD5h/rkppn8sKim0JIa7AyZMnyWazZ/5frmrqvn37+J3f+R3uuece/vE//sfXq3kdydiKEEJcX2EtYvHFGosv1lAm2HkTO2vizgWEtYjZ75SpHHAwEwbDj6UZfChN7UsOyScLqN6qRyGEEDeGAOKvtfrJdNkiLJtg0IobjSBYfPfDWxPfUSP/wcWrGja+UqENdh22/p1+/GqEtxRQO+lRO3JtC2KtVcqCDT+ZB2Dh5as7CUTtmMf0t8qMfaiVoHri8wX80rXpmImPWUz8ZB4U+OWIhR9VqB2/vBjzFeuVOMgL9WKbzyHX7kKsfZKceoNIbW5NMdL/TIH0llYncPVok9L/WGR8swPvywCgF32cPzjMyc/dDV1mB4m8FWTJrfCLzHS6D9COZc5+qZCF+W0w8LIic0QTJGAsWyX57MCK7k9Ndt8mnew+PUrpK9tZydwaP17ovo1pdD/xymUaK7g3qNnnTylTTRu8uTF33jLDOP/Jsd2QHfsrDM153LyvwvaDVV5/PEvgdL8K2DU413a5tQiZN8Fwwbdb+1FWhPGgywguF86BWfVXNhVO2Ws/kHHGdhi7tUz6bUgcB23B0mMQOZB/BRLHNLd/t8rLj/TRSHf/GByIdz/xLnndk3nj9soyrIwnTp7//1YHPpJDfXoSw209b12OwLqT3hrDnfMvKzE1Nmgx+FCK5ISDDjXlAy4Lz984M+pFnmbuf5tlKWUQuhE6hNEPZXG2tyrsFv+8hPHbTdq905UJ+Z/uo7YQ4H69CR/JsfnfnqC838WwFFbKYPRDWTxPM/V0CR1oNn26j9hmxYadBVRi+S+BN05tWFH7zVj37wcV7/7eMq2VBQJFUfds2iDs/rm4LbO4ovsLdPd9NYLuvet3bl7BFxvw6sLGrtt4K8iC972VnUK+PL+p6zabnytctMwsgfoKbPnng9Tv1Cz88hKh2+NXx0JcB4lE4kxHTCbTOr+Px+O4buu8dmFhga1bt5JOp8/c5otf/KJ0wgghhBBCCCGEEGJVeIWQ8gGX5Aabtp3Ua4BuKkY/lCG1xcEwW/3H1aNNZr9Xwa9ERKf73YUQq8/pNxl8IEXthMfU10s9H3Qnrj2luWhiXnFp3j1+2Wz2vOTU5fzqr/4qQRDwn//zf8ZYjYj0NmRsRQghVo8OWxVVvcWzF1U6gtrxVqJQ5XCTbf+3AZh28I/GcXZJuTshhFhzIoiSEVYqxH6gijEaYJwTWhicsNElk/7dhfOWX2/Tj9iMvBxgNRTxIYvEiE3ulgT1SY/JL99YVTb77kkycG8SDFh6tU5wDRJHa0c8Zr9bYeTxDJt/rp/I11SPeCy8UCHyYeR9GQxLMf3t8hVNKLbh43nQcOpLRdwZqYKynsm1uxBrnySn3gCcPpOhh1sftOktMZqLAY1pn8WXakSeprzPJT5skbslgZOzsPMrKc24BihF+WaDzJGQFeT2iC78uMm+O/PsiyJ27K8xcbLBzleqnLglSS1ntK1wankRW96oky+0EkDnPww63lqXfr2VmPpumpcRb5091kav05NlQfWO1s+5ig9DfRsMfhc2Ha2z//buAySrLTZkEzQiohs4McuwFUH90q9AUpscxj+WwysEzHynTO24R+TdmMcxqJ09fpWDLpntMRZfqVE93Gy7vZ1tJZ5aGZPZ71Vw5wJKbzcYeV+GkdMTGgCEzYjJ75TOvD4nv1Zi6y/34X4zR/wniqge+UoRa0uYg+LHI9IvGmSfMcj+3UG8QkBjxqcx4+NO+/hlmea8l/RKgEcvtLGT/v7+M50whUIr8TufzzMzMwPAl770Je6//36++c1vAqC15uTJk+13JoQQQgghhBBCCHEdLL5cI72tn7EP54j8BQx77XTQaA3ut7IkN1gsvljDWwrwiiFBVfomhVhLrLRBdlec/vuS+KWQ+eeqkpgqVqZXq52sJZd4/Pbs2YNSik984hMXrSuVWgHh/+E//Af+4A/+gI0bN/Lyyy9fjVZ2JGMrQgixdmlfM/nlIpt+IYv7vRzK0dhb2sc5CSGEWCUOVH/GZyxebrva2uQDPsYqx5F6eYOTH3LgiVMApLY5jH84R2zgxkilSW22Gf1gFmUplFKEzYjZ75avaZXRysEmzQWfvrtSJDfZZG+Kkb3pbGkmpRTbf2kQHbQuLJuFgOmvl4hWWMxWWWBYivJ+97ompvZKHOSFerHN55JrdyHWvhvjG/UGN/rBLH45pLCnzugHszQXAuafrZ63TWFPndwtrcqPuVvirdFW1b163GoLEuAOQWWbZKdeNYbBoVsyDM41yS6F7H6u0hqTMSCwFF7cwEsYOG5EqtSatezdV8roF6FyG/j9YBdayyMbDB+sJkQmzN6/suqo11LyUOt3bQVVU9eC9PYY9RMrPNteh5TRqn5aP7XyYxAbtMjdGid3a+tz7cTnC2iZFOeM+gmP0IvQy8TPmEmDiU/miQLNyS8WzsxQOPfDKuWDTeysgfY1kadpTPvnzQofVCLiHynhfiWP+7Uc8Y+WUN0LfwpxkTAPpY9EGDVo/uMaiTGbxKhN9uY4SimCWkj1qMfSj2uEjR6/chbiKhkaGuL48eMAzM/PA7Bjxw5mZmbQWvOZz3yGr3zlK7z99tsopdBaY9vyIS2EEEIIIYQQQojVE1Qipr5eYvyjOU59a5xNH5tc7SadEbyZIJp0mP5WkcbktQvUEkJcOiOuGLg3SXpbDCtloiNNYW+dxVfqV1RxQwhx7YVhyOzs7LLrq9Uq1WqVeDx+XdojYytCCLG2uXMB6b+9QPVPhwiOxiQ5VQghxFUx+FCr6NfU12+MqqkjH8iiDEXtmEdjxqf4WuO63K9XiJj9XiuhMD5q0X9vEsMxKLxWx8lbZG+Ko8xWykpi1GbL3x7g2J8tEq2gWLqyWgmISlJIbghy7S7E2tcbmVnisllpg9iAxfyPqox+sFUhUutzEjgUxIasMzNHZG+K03dnklsOFzEjzWDBJe5FHNqY4dCW3Co9iuVpWzHzhLyMr4UX3jfIcLFGthCQKEfE6yFOU5OshKTKrUy0Rtrg2O4kw/EqqQMQn4Lsm63bv/sqM06P1WsFkw+v/pd8//cgPg1+Dk5tvszBjAD6fghBCir3gz0P+YWA2qiBNhVB8uoldmd2xXByJrPfaT+r0HpnxhVjH8lhJg2Kr3e/GFImjLw/Q2ZnHL8asvhKjfI7riSmXiA2aGE6Bn7x4gMTH7UYeiSN1nDqr4sXJf250z7udOf9m6MB9h11/D0pokULc1SeAHH5ohRUDzfPVPk1HEV81CYxbpPfnSB7U5y5ZypUDsgAxJrWK7OP90IbO9i9ezevvPIKAAcOHOCjH/0ojz32GM8++2xr1rsw5LXXXjuzvVKKu+++e7WaK4QQQgghhBBCCAFAY9Jn/rkqhp3jyw8GBJXzM8tyzy7f91duth/r2Tm4sOxt3j+4v+3yr9+WP+//zT8Xp7noSmKqEKssOWGTnHAwkwZmTGHEWjEQOtKU9rmtsatZn9Dt8Q5ecf31ytjFWnaJx69YLC677u/+3b/Lf//v/53f+q3f4jd/8zevrF2XQMZWhBDi+sjsipHc4BBUQ6rHPJrzK48lUgbYOxt4byZRyYjY3TWUI1/iQgghLl9zPsDJmgw+nMbJm7hzPjPfLhOt0xBEw1E0Zn2mv7F6sejuTMDUV8/efw2Pwqv1M/+PfihDZnuc3M0JCnuXjxfP7Iox8EAKK9XKSi3tuz6Jtmf0al9CL7b5HHLtLsTaJ1l961zoRkS+Jr3tbBn0c5O0khtsNvxEvrU81DQXA4JqyCbOVsMEsAOZXvRGVBl2qAx3r3Saz4I3DtYiGE2wS+DMgrMEQQaKD0Ax7oCx+tOTRKcfTvUmLrs9A0+DXVLEgOQhjUIBZ99YoQXagmbGoLrBoLjz0j9qrbRBZmeM/vtSlA+4uHM3XnKfMmDiU30YtmLyS0W8QojhKCLv4jPkzM4Y6a0x4iMWhmMw850ylUPNnj+ZvlaCekRQCxn7cI6gFuJXIhZeqNJ/b4rURge/EjL1tdJlVaNUFgRHHPw3kli7XElMFVed02eS3GCT3hbDsBRhI0KZa7/auxDXw913381nP/tZtNZ8+ctf5p/+03/KL/3SL/E7v/M7hGGIUmffK+9OWPNP/sk/Wa3mCiGEEEIIIYQQQpxRPdJk5P0ZsjfFWXql3v0G11hqi4OTt5j9fmW1myLEDUuZMPRomtwtCfxySFANCZsavxRSO+5R3teQhFQhxBWTsRUhhLg+4sM22ZviRL6m/94UzYWAhReq1E+tbDIg56462ld4ryeJiibJj9wYle6EEEJcG14xAGLEhy1CV5OccNj6dwaZ/GoRd3p9xbyaSQMU+MVwtZuyrMxNMdLbYoRe1DExdfDhFH13JIlCjTsbUNhTpzG1vp4v0Z5cuwux9kly6jqnA5j+Run/z96fB9lxnnee7zeXk2dfai8UUNjBfd8pkuIuWZQsm7Lslm25Lantdrt7bndr2hO+N0IxdrTk7quw596OHoXddzyekdtt2bKsfRdFyhRFSiTFfQEBEDtqX8++5Hb/OCBAEMDJAlBA1Sn8PhEnSFS+lfmcrDxLvu/7vA+9N6Xxqj6BG9KYOn5DXxtzac57xHvbg6uNKZf05jjpTceTWefycXZu71mJ8KXLeH3t/7ZGoHr5Oza6K5+YCmBV2vmKXlQh4CAgU/ZxmgG2Bd7bXgJWBbxUSO0SiE+A2xdSysTo3eWTKIYENtSGTKwWDL3okVgMqYyYVFMBbqLzeeiZbLHxwz3E+21CP2Tx9TpzP6ue8/PuOgYUrkvh5C0mf1QivSnOuvfmsVNme4WiR8t4tYDkkE2836b/tgz1CZfy3iblPc0zWl3vYuRVAg783TzpTXGcgkVqo8OGXyxgWAalNxpnNdnGdAwG7syQ3Ran+YiBub6Fc6cm7cjycXothu7LkuiP4VV9KvtbVPY1qU+4SkQXOeqDH/wgQdBeVMZx2itybNu2jc997nP8m3/zb/D9EzsZ//AP/5APfehDFzxOEREREREREZF3ClohpV0N+m5Kk92RYO7pCpV9rQsfiAGFa5L0XpeidqRFY1LjDSIXWmLYpue6FMl1MQzLYPJHJcq71mjpEllRRth+yNlbC+dPYysiIhfG3M+rZLbFqR1pUd7VoOeGFOs/UKC0u8H0j8uEAXCa+imNpzO4e+PEr6vh7gtVNVVERM7Z/LM1yrsbhCF4pYD0Fod1D+TY8MECcz+vsfDcyi+et1zWvScLQHlPY4UjObXM9jhD92QJ3JDDX1no2Da5LgbA/r+ZJVidT0fOE927i6x+Sk69CNSOuNSOLJ56Ywhj31hk6L4cw/fnjv3YMw3soH0Tv2trVBafSJcIwJlrVwWOLQB9kCp5DEw3WOxxSJc9emdbZMoeTis8Vj04fAHcQTArYDUBH8I41K5sPwDKLZvyJpvEXMDgCy75gwHVQYPKoEl63Cd/wGc9x1dse+1dWSq9x9+C04se6/c06JlyqdYD5h8pUTvcOmWV0ItBvNem/5Y0AMP35gi8kOJrdZpzHr03pNj8672EQYhhtv9KlQNNJr5XWsmQu07oQWVveyB//oUag3dkyF+ZxHfPvFK2YcHI+/I4vRazT1fZ+P9tYfT4GCpmKcskvdFh+L053KLPkW8sUh9f2sqZsoqEdEcScTfE2MGmTZv4d//u353083/5L/8ld911F1/60pcYGxtjYGCAhx9+mBtvvHEFohQRERERERERObWpH5VZfK1O340phu/PcbiySHP6wiaHOgWLgdsztIo+E49o3EHkQorlLfpvTZPZGqc567HwYp3KviZucfVW9pAu1y1jF6vZGjh/GlsREbkwgkbI/M+rDNyRYe6ZKmPfKJLdEWfw3Vkylycwfaj1mBy8PYGfOHHC0cyfzJK/3KbxRI76hMve/6NK0DixQMS2Zysdj3+w2BsZY0/q9JXaAFzfitxHuRHvuL1adzpuj8ei74HDsPOELDsW/f05n+n8XGNW9D4Gkp0LbiTsznN77urZE3mMF8sbO25/qr45ch8tr/PfbXE+unBPPN158Swr1nm+nduInqofNc8ukYmeK5VNdF7U5z3rdkbu42C9r+P2N8sDkfsYSnV+PVYynV8ns/V05DH22IMdt9e8zq81gIFE5zjXJxcj97E9Mdlxe/9g5+Ieu2rDkccwo1aE6Xw6AXh1fl3H7Ut5zWdina+vy5PjHbe/Ut0QeYydpc7nY30qumr2SLpzm93f23rKn1eA+WrApY9X6bspRXI4xvi3L1yVbqfPorXow7l2gViQWh8juS5GvD9GvNfCTlvUxlqrs8KoBcP3Zgl9OPA/5ggi1iqce7bK+ocKDN6ZZfKHK1Q8p1v7Erox5rfRvbvI6qfkVMFvhIx/p0i8z8ZMGBiWwfqH8sznHA6OZChlor+ki3QFExZvg/zP249bknMk6sHRJNR2h0sIeLZBqWCz2BvDNww2HakSm4bQBi8NfgaKt5/6EI0+k0P3O+QOBeT3eaRnAxa2WzTyBta0yeDh9jfnkTfrzIzGiTUD+sZdcvMejZTJnhvS8N9mLsTZWNWaCx6zP6sQH7BxF32Krzfwqu1OnMr+FpnNDoZl4JZ8eq5LMXsxVpddTgFMP1GhcqBFc+7MbkBTG2IM3JHBzlgc+WZ7otDm6P5ckSUzWjB4d4b6kRYTPygRag6KyFm5/PLL+V//1/91pcMQEREREREREemoOe0x/v0So79cYOieLIe+1Hm1/OVWuDZJ4LbHToNml8/YEVnlrKSBlTAxHYPkeofeG1P4tYDJR0uU96hSqsjF5vOf/zyf//znVzqME2hsRURkeXmVAMM0sOImXjmgvKdJY9oj+R+HCGIGQ6+26DnoMnvpifNV535eI3dJgsq+JtNPVC7aYg8iInJ+uWmTV38hzRX/d5HUhhjJ9THqY+e3iEYsb7Lxwz2YMZMwDAl98GsBrUWP+pRH8bXakiuE9t2aoue6FMbRbPcwDAnckPKbjZVL5IzQe0MKwzIwgE0f6aW8p8HcszXCU0xjTo7YrHsw335eqzDPVlaO7t1FVgclp65Bhk27mqABBBC47ZtxM26Q2Ron3mdDGBIGEAZAEOLVQ2qHmjTnApIj7ZLnu7bkKeaWsKSKSBepb4X6Ruh9HBJTAW7MYNdVWTIll1omxuxgDMwTV1ZL3faOxMcQrBLgQRBvJ62ewDAobbIobbLo2eUx8IqHEbYTXxtJk0Q9oGfao2faIwTKvTa7b0yzMBwDw0B5fUAACy+eeoW20A1PGJCuj1+41YnWutrhiGWHTmH4gRwYcPhrC7Tm2lmDQdnEyASqnCrLIvWigRmD6R9XlJjaxYyjj9WuG2Ls5IEHHuB3fud3ePjhh4nH9T1eRERERERERLpUANOPVxj9lQL9t6VxQy5Ix01q1CF/WZKpH5VVqVHkPIoP2Azfn8UpHB9kDf2QxVfrzD1T1ViAXDBGGGKESm45F2vh/GlsRUTkwnmrMEHPdUmmHisTBuAWfSqXt5NR+3e7pOZPrkDpVwMWX6/Tc3WKwAuZfrxztUMREZGzZpoc+foCWz/Wz+DdWQ5+YX7ZD2FnTHpvTJFc7xDLmGDAwss17JSJ02tjZ0xSow7pjXH6bkpR2duMTC51+m16rmsv+rXwYp3akSathc5VnVeD+edqhD4kBmxS62P0XJumcE2K+rjL2DdPnBvee3MaM2ZQ3ttg+p9WLtm2W+ZBvlM3xvx2uncXWf2UnLoGrX8oT3LEIXBDglbAwkt1nIJFdkcCw4LWQns0xzABs53IaiVNuC3N4a8u0JhyKSdi3PTqLPsG88xlEyxkEicfyI7uZO4dXVxSzLlE9MqnmVh0m4OlniUdrz8f3UFRay6lYuzSRsaqS9hXIha9jMdgemkdK7NmOrJNrRWLbNNwl/YWYRrR10LSjl49xgvMyDYAcSv6XHWMKQaLD4AXWAD00D6veZrkT9H8uvyRE/7dHIuz8K3BY/82YgHZvUVqYy71MbddefLo4YtA0QQrblC4NkXvdSkmHy1SH/cIvPaqNATtL31KSpVucPOLJ77v1Z6o03ojxSX/bwc8A/eIQ/0LMYL76rDl9K/VrUOzSzreQDL6fW9dIjpBeb4V/b4IcGVmPLLNJic69pixtKWZDrt9kW2SVvT75xWp6LgBDiSijzffSEW26ckvrVrxzQOHIttMNnIdtxtNgzAIYWkfESIXtccee4wf/ehH5PN5fvM3f5OPf/zj3HDDDSsdloiIiIiIiIjIGWvOecw8WWHwrizuX/g0plwM2yCWtfBbAfM/r1Efd/G+c+qxwW2ZmdPu+7tXFgBweix6b0jhVQNKuxsM3ZOidqRFadcSyxGIyFnpuS6FYRpMfL+IVw0IvBC35J+yKoaIyPmmsRURkQunOesx/v0iw/fn2PDLFrM/q1IfPz4nptpvUjjiYzVC/MSJKRTh0QIttSPnt4KdiIhI0ILqoRbpTQ7xAZvmzPJ0WNgZk6H7siTXtefvh16IWw6Y+UmZ2uGTP9+SIzYDd2bJbk8Qy1tUD7Yw4wblPU2a08djKlybpP/WNIZhMPad4rEiM10hgIXna8f+mRqN0XdLmtR6h6H7s0w9ejwJdepHZTb9Wi/pjQ6m0/47ycVD9+4iq5+SU9eYoQeyJEcc6pMujRmXRH+M/tvTuKWAhZdqFF+r49dPTtqLD9hs/JUeNv1qL3v+2ww/2zHMbXsmuXRiEX8SfnDtJgKz29dMEFke5tHEbDPtkX1XEb9kUdmXou+mNObtBmEY4jdCiq/WKe9p4JYCzLhJan2MMAhpzPjHVoIT6XbJ28sEizatV1OEzbdlD/Z10Q2urGrlm0PyL4UM35/jyNcWVzocOVshxxZuWNW6IcYlWFxc5M///M/58z//c6655hp+53d+h9/4jd+gp2dpC7mIiIiIiIiIiKwGxdcauEWf1EaHxGCMoBVSn3SJ99us/8U8c8/UKIYhGGc3hjl0b5bEYAyv6lO4NolhGMw8pQo8IudT4dok6U0OCy/VqOzXLEJZYd0ydrGaraHzp7EVEZELo7q/xZFvLDJ4Z4YNHyww/3yV8aP3dcUNNoUjPpf8oMbsJTFmLo0du9+b+3mN9OY42W1xKnuji5yIiIicC9MxMAyD0YcLTDxSorrEPoye65OkRh1CL8Svh3hVHwxIbXCI97fTdpozHlOPlyOTSOvjHof+YYGR9+VIb4qTGGgntfZcnSL0Q8IgJPTbsWJAcWe9uxJTT6F22KV2eJFN/6yH7PY4lf1Nqvva594rBcw8VWbwrixbP95P6MHMU2VKOy/w94Ju7UvoxphPQffuIquXklPXmMymONWDTeaerRG0AiqpFk7Bws6YxLIWvTekqexvnrDiFIBTaFeQrOxvggGtmMUTl4/QV25w65tTXH1olplckolCmlBJqnKRKz+dx8p59H5oCivVTjJ94eMuhgnxwRjxXgunz6bn2iR9N6fxGwFWwqS14HH4q4u4i9395V/k7QwbMr+4QFA1Kf1Nu6Jw8MEq5NbInYysuDAOM09WWP9QnsSQTWNKS6eLRDGM9mIZAC+99BL/9t/+W/7gD/6Ahx9+mI9//OM8+OCDKxyhiIiIiIiIiMjS1I64p6yM03tTiv5b01jP1th/Q4rAPrPxS8OCxGCMmScrLL5WZ9sn+jFsMGMaBxVZbol1MdIbnXbFkV6bxdfqLLxQi/5FkfPMCNsPOXtr6fxpbEVE5MJpTnsc/soiPdcl6bslTezJJkduiVMesdn1Cyb9u1yGXncpD1k0cya9N6fIX5HETponVIoTERE5H3quT5IacWiVPOy0xbr35Ci90WD6iQq8sy6RCbnLE+R2JEgM2BjW8fsK420L6oVBSHPWY+qxEq2FMytuNP7dEolhG8MEtxKQvzxBaoODaRuYjkHgwsLLdRaeWzt9LYe/tsCW3+pn+P4cew/MHjvvpdebuMWA/BUJ0hvjDN6VvfDJqbKidO8usnopOXWNaS54ZDelSG+Kn/Bzr+rjlgOspEnh6iSHv7pwQnJH4ZokAJktcTZ9pIfNLx3ECsJjHckb5qtsmK+yJVXi+S0D1OOxC/acRFaToGHSOpIgd+/8scTUt4QBNCZdGpPtSRKzP62QWt9e7cYt+1T2NQnVPyZrQOiBPxPDm4rhz8cw7BBv3AHAubxGY0CVgWV51Q61aC16FK5JMvlIeaXDEVm1fuu3fouvf/3rlEol4HgnZxiGNJtNvvjFL/LFL36R0dFRPv7xj/Oxj32MTZs2rWTIIiIiIiIiIiJnZf7nNZozHkMfyLPlhRr7bkyd0QK7oQ+hH2KnTQigtLNO4eoU9cmTE2FF5OyYcYPhB3KkRx28WkDtcIuZJyvUx/Q6E5HVQ2MrIiIrZ+HFOs1Zj6EPFdj6ozr77knipkwWN9r07fewmyHDTzZIXZui+Hqd1oKvqqkiInJeOdWAvpvS+K2Ag19YwIzD6Id6yV+eJHdpAr8ZELTAMNsVS9+qsBqGIW4pYOHF6vFkSRNiWRPDNs65omlj8vjk87mna8w9vXYSUU8laML042WG78/Rc33qhMTb+phLfcxlw8MWiUEbTE5OGpY1R/fuIqufklPXmCNfWcSJ14jlLMy4gV8LcMv+sYQ4K2Gw9WP9xLLWCcmppZ0N6uMuPdemcPI2+CGvjvYSAjsmFkl47U/tQq3F9skir2zqX4FnJ7Ly3Ll2YrYzHN3RFXpQPdiierB1vsMSOb8MSK2PkRp1KH/Vxp+JQWCAHWD1eQRli7Bhkn5ontjGFg03vdIRyxq0+EqdgTsy2JkqXkW9Cd2mW1Yf74YYO/nrv/5rms0m3/zmN/m7v/s7vvOd79Bstr+zvL1D5tChQ/zH//gf+fSnP819993HD37wg5UMW0RERERERETkrFQPtth/Q4qtP69xzQ/KVHotZjc6tFImQdzELHTuR2xMe8QH28PlM09VqexvUR9X0pzIcojlTEbel8dKmIx9p0jtkMZLZRUKjz7k7K2B86exFRGRlVU74rL33iTbflRn5MUmh29NkFwMCAzo390iMxty+FvFY8UiRERElpPZCjA9SC/49B90yU77YMLk99oJcEETDv7dPJntcXquSWJnTKykASEEzZDGjEd5d4Py7lPMKQ/ALWqe49mq7G+fU6dgnbQtd0WcxKBNfcK94Imp3TIP8p26Mea30727yOqn5NQ1KGi1S7+fSuzoB7TTZ5M1oTbm4lcDiq83SI7E6Lk2BcCR3jQHB3IAHBrIkWq63PvaGAAt27wAz0JkdQrK7deQlVUJVLk4WGmTDb+Yxym0KwCb2RbOjgbWcAur18Mw21WDw6aBmezyuxdZ1Uq7GvTdnKb3xhTTj1dWOhyRVSsej/PhD3+YD3/4w5RKJb785S/zhS98gX/6p3/C99ur8L21Yl8Yhjz66KMrHLGIiIiIiIiIyNlbXBdj57sz9Ey45Kc8djzTXkXfNQqY25tY1zQwe49XJggbBtkdcdIbHeIDNtUDRyeOhSgxVWSZFK5O0ndrGq/ic/irC7glTcQUkdVNYysiIivLfPgQc5fGGbo3x8KvHaZwZ4aGCcVv18k8lGfwvyUJhuMd9zFZT3bcPppbiIyjx6l33F71nch92NnO3333Fvs6br+mbzzyGFFemNkQ2aZcS3TcnnCi749nI7aPZIodt9eC6PNZ9jr/3Y/monTUap2c1HQCL3o+dLPY+XwZ8YiKiH50oKHVed5dtR59vvLJRsftlyQmIveRsTrv43C1ELmPehDruD0IOp+Pphed2lByO/9NeuPRVSVbQcS1sQSXxKY7bs/HO7+W0mZ0kZw3G0Mdt081s5H7KCQ6v79l7Og4NiY7v48+sXhJx+3NIPrvui5Z6rh91+Jg5D6qrc7X38jH9tJ3Y5p4v42VMDCd4+8BYRjiFn0mHy3TnDlxjnjlzSaVN1W9+0Lqf1cGAKfHYui+LAsv12nNeuSuiDN4V5bADRn7VufPGllbdO8usropOfUi05r3cUs+vde3k1ADL2ThxRrzz9WI99uEYUjQCJkspE74vVo8xqG+DBvmKiRbPpcfmcciOLoI4vEbhdA4/t9KIka20sDyQsa2J5Z2JyiyypnJdgeSO+vgDGuFX1n7hu7JYsYMDn1lgea0x83/y8mdaYYJhhJT5TwLPZj7eZWBOzKU3micUAFeukC3rD7eDTGegVwux8c//nE+/vGPMzU1xRe/+EX+/M//nN27dx/riBERERERERER6Xb1vEU9bzF+aUiyFGC3Qq5gGv/lBMGbcWK/UCaYtwj2O4TTNsP3GzRmXOafr7H4cvRkRRE5Awb03pSierDF9D+VCVz1Qcrq1a3VTlaTtXj+NLYiIrIyynua9N0WsO6BHPF+m8lHSzQmXbxagHnEJBjWgiciInJuBg432fjhHgBCL8SMtRNTF16u4ZZ8ym82CDrnZ8sFlBxsJxrH+2zifTa5SxKEQQhGu5DboX9cuOBVU4HumQf5Tt0Ycwe6dxdZfZScepEJWiEHvjCPYYNhGvRcl6T3hhSZLXFieQvDMCi+UWPqjvSx3zHCkL5y+9uWZ5msX6hScyzct1VQfXuHswGYQciWZvlY2urE1gTLsMiMyIpzNjSw+1osfHOAzC1FElvrWNmIla9Euphb9In32bROU5Fb5EIqvtYguz3ByEN5xr9XojGhSgYiS1Eqlfj2t7/NN77xDfbu3YuhRWNEREREREREZI3IP/TmKX/+BmCYNUY/3APfzRH6IZUDLWqHylQPu/g1TWwWOR8yWxysuMnCCzUlpsrq160TSleTNXz+NLYiInJhhQEsvFSj59oUbtln4M4Mw/cfnZ/6qkmwPiBYp/s4ERE5e1teqxF6IQf/fgGvGuD0mJhxk8ak5sauRuOPFEkNx6jsb2I6JoVrku1CbH7I+PdLoD+boHt3kdVEyakXqdCDkJC5Z2pUD7YoXJPCsA2cvEVy2GHDXJlU0yPdcOkvN3D8gKpjc6g/y0RPilLSgVjnY6yfrXDdvjkA4rWAelbZqdL9DAt6H56m9HgP5Z8WKD/ZgxH32fSREL8R4tcDyrsbVParqqqsDZX9TQpXJYnlLVoLSsSWFRbC2LeLjLw3x/r355l8pET1oN5vu8YanqCwGrVaLb75zW/yhS98ge9+97s0m00AwjBUJ4yIiIiIiIiIXBTCACa+VyTeb1OfcPHr6qASOa8M6Ls5TfVwi6YWPRWRLqSxFRGRlZW/LIGdNKkcaNKY9nCLPr3Xp4j328S/H8e73MO9zoX4SkcqIiJdJwgwfagcauFV24sdtBYCVqb0piyFVwwoFdv3ZEErYPap6gpH9DbqZl5RuncXWZ2UnCo0pjwmHykBkL0kzsDtGa49OEc9ZlGLxzjcn2G8J91OSD3hDfv0n6xmENJfPF7b3vL0KSxrh+mEFB6cJ3j3Aq3DCbyyzfxfOFgpk9wlCcIgVHKqrBl2ur0KoVtWYqqsDqEbMv6dIsMP5Fj33hxTPypT3tNc6bBEVoUwDPnhD3/IF77wBb761a9SLpeP/RzAMAwMwzj276uuuopPfOITKxaviIiIiIiIiMj55pYC3JLGbEQuhNylCZwem8kfLqx0KCJLYoTth5y9tXD+NLYiIrI6GBbEshbTT5QpvnZ83mllf5Mtn+3B3mtj77Sxdlu4N7r4l/lgrmDAIiLSlQxLiWsi3Uj37iKrn5JT5QTl3U0qbzbBgPBteUjDRx9vt/cL1512P9sPlNgwV2X6ihizO2xM2yfH6RObbDN65ZGa50S2iS1hPwDmEnrIjSW08YOl9XDE7eVJ6pqrp5bUrj8VvTpIoVCPbLO32Lek4+2aHYxs49jRq+MmY0tbQXcgWYlsk7DcyDZesLRqvinzNJMWksAl7YSozP/h0DwUZ+FbCTb9QZEd/9vJv/PENYklHU9kNXEKNm7ZJzz68hyKlSJ/56b0/sg2rfzSXn/WEpYYqgbRnw+vGRuWdLzt8cnINpc5M5FtlhI3QMGqRbYJwujPmtdrI0s63kiquKR2kfvpXdp+Hsi/FtlmPpOJbPP5H7zrpJ8dCEJGXmgxbOYIPukwvz1G/D0HlhSXyPn2qU99ij/5kz8B4NOf/jSf+tSnLshx169fz9TUFHDqjpcwDMnlcvz6r/86n/jEJ7j55psvSFwiIiIiIiIiIqtNciRGatQhNWLj9MZwyz7l3Q0WX6nj9Ni0ij6huwYybkTOgOkYBK2zv+4L1ySp7G/SnFPVVBHpHhpbERFZHRJDMQzLoD7xjjl/Abh3ugS9Ac6zDoZv4DzjED4X0rqvRbBeFe9ERGQJTBPfgni/UmdEupHu3UVWP33CyknCc7xf7yk22X6ovRqBmzCwWiGerZVGZO0Lg6PXeajrXdYOp2DhFlU1VVYh02D8BgffMRh5uYXdClme1Fs5H7pl9fHliHHnzp386Z/+6bnv6CxMTk4e63AxjPb3kbf+/5577uETn/gEH/7wh0kktGCGiIiIiIiIiFykDBi4M0PhyiSBF2IeHcN0ChZ9N6fpv629mN70j8sUX2902pNI9zIgf0UCtxwQtALSm+Jkd8SJZSyKb9SZ+Unl2KKlS5W7PEG812b68fL5iVnkfAiPPuTsrYHzp7EVEZHVITkSw28GtBZ8rKSBX3/bh4wB/pU+jdEGsediWActDN8g/kgcb7OHe090EQsREZFq3ibnhRg2Z9zvIfKWbpkH+U7dGPPb6d5dZPVTcqqcESvdrt7mV0/MYDXCEKcVkGj6pGvHv7Gtf75dPfKNDyTx40rYk7UtPtrAHmgx/7VB0jeUyN6mNCnpfnbGpDmvO3FZpQyDqasdfAeGX3Nx7sow85PKmhgIl+4UhiG/93u/RywW48477+Sxxx5b0Vg2bNjAb//2b/OJT3yCLVu2rFgsIiIiIiIiIiKrgWHB0H05Mlscph4vU3qjgdNrsf79eayESXlfk9yO9uSVysHWCkcrcv4kBm0G78oe+7ffCCjvaQIhhatTpEcdDvzd/JInalpJg/5b05R2NWhMaUxJuku3T86U5aWxFRGRlRPvtbHiJts+0Y8ZM2hMuUw+Vj5hQf0wF9K6twUtsI5YOD92MFzNSRURkaUZ3xInN+ey+dd7OfzVRbyKqm+LdCPdu4usTkpOlVMyzHYiaixrER+w2zf/KZPUSAxMqE+4ZF+bI9HySTR94q2At9/m+wY04xa2GVDrM/FjK/ZURC4Yw4LYYAtvxsGI6aZF1ga36OMU9HVBVrfZSx38uMFIEGKnTCYfLWl1s9WmW1YfP8cY/+qv/oonnniCz372s7z++uvLE9MZisVifPCDH+Rf/It/wXve855jK4WJiIiIiIiIiFwUTEgMxjBjBnbaxG8E1Cdd0pscem9IYactJn5QonqgnXzamvMZ+3aRjb/SQ25HgtpYi8lHSviNbujMEjk7VrK9IPXUj0o0Zj3cRZ/w6Jx/vx7Sd0saK2EuaZJmfNBm3YM5wgBmf1Y5n2GLiJw3GlsREVl5009WqE+6ELYXT+m9IcXowwVmf1qFBvD2IlgO+Ft96lvrKxWuiIh0ocVhh/nna/TekGLzb/biVQJaix5zz9RozmiyoSxRt8yDfKdujPkddO8usrop20ROkr8yccJKqYEb0pzz8OsBs89UCRoh6S0OVhBSScWY7UnQiFs04hZNx6IRN3FtEwyD0YGFFXwmIhdeayxO8soKmRvLKx2KyLKoT7gMbIuTuyxB6Y3GSocjcloLm2PwmRnWPZhj/QcKjH+vSKAJZHIBzczM8Id/+IdcccUVfPKTn+R3f/d3L3gM/+W//Bc++tGP0tvbe8GPLSIiIiIiIiJyQZlH//u23Ln0ZofBuzLYaeuUv1LZ32TieyVaC/4JP2/N+Uw9Xmb43hwzP60oMVXWNhP6b01TG29R2tU8aXN5X5PCtUlGP9RD9UCT5pxHa96nMe0eS2AFiOVMeq5PkbssQXPGY+IHJfy6XjvSZcKw/ZCztwbOn8ZWRERWB78asPjy8WTT6qEWg3dlGLo3C38PrUWPyv4W88/XCN2TP3/yP4l33P+hUk9kDI3kuVdgMSPKssctv+P2nB09N6vqd36u5Vqi43aI/ghveae+r347L+h8nHKjc5wHitGfvQ238xR3142OMwjMzg3s6EV5rHjnv9tAT+e5opWIcwFQr3VuE4t1jgFgYiHXcfvnY3dE7mNzZr7j9vFS52MAeBHXTy7V+Tqvt6Jfi5vTneMcTXTeDtAIOh+nGUSnWLzYHO24PWG4HbePu4XIY2StzudrXaIUuY+cffL9/9uVvOhrdEt8puP2sUah4/aGH30+Y2bn6zxpdz6fS2nzyv9rC+miy2Wvl0naPqmsRWo0ztS6OPu2p2klbdZ/6LXI44jIhaV7d5HVT8mpchIz1l5FYOKREs05D7fon7RaQmlXg73/fOsKRCeyugUVCzunFXRk7SjubOD02QzdkyW7Pc7cc+DkXTBCDAPeKpud2lDDjHX/4KOchQBwgRjHJ4SdIb9lUptOUp1OErgmsbSHk3HJjlYwraVfV7VDLY58Y5GRh/KM/nKBsW8X8cqqZC0Xxic/+Unm5+f5yle+Qix27oNWZ+Pf/tt/uyLHFRERERERERG5UJxei+H7czg9FhjgVQO8SkDQCklvdKjsbzL/QgkCaM572GmTzJY4tSMtWvOnn+DWnG6P7VhxE4ie8CnSrQpXJYnlLSYeOfXkVXfR5/CXFyhcnSI5EiN3aQLDMvBbAdWDLfx6QLzPJjkSI2iGzDxZofhaY01UXxCRi5PGVkREVqegGTL5wzKzT1dJDMZIrY9RuCpJdlucycdKNCY1P09ERM5ONR/judvbCW7xmsd1zy0yPNFkeKJJYMD89UkWXlB1bpHVRPfuIqufklPlJIZtEHghtcMtgpZGkUTOhJny8etnmZ0lshqFMPNEhcaUS3Z7grln+gi9k6/x4QcmyV8evQqXrBE+cNDG2BWDKQvDNwgJwQEyAeF1LdjsEYbg1m3Ct7KYAUKoLSQoTWUoTWVYmMzRWIjzVqazlfDwGxZgEEu5DFw3izEQElrGKQI5WXPG48hXFxh5f57Rh3sY/06R5qwGJVaaEbYfq93Zxvjoo4/yt3/7t3z0ox/l7rvvXt6gREREREREREQEAMOGkYfyBI2Q6ScqEIKdNYllLKyUycxTlRMq7QB45eCkn51Ka8HHq/qkRx3qY9FVGERWi+yOOH23pPHrATNPVWnOnFjhFAATRt6XJ5azsDMmxdcbHZO13VLAzJOVY7/r9FhkNsdJb3IwB21a8z7Tj1co72mcfCyRLtItYxermc6fiIicb145oFJuUtnbZOHFGkP35djwwQKlXQ2qh1rUDrX0nVRERM5aM2Xz9F399Mw26ZtuMTJWp++mtJJT5bS6tS9hOWL+1Kc+xZ/8yZ8A8OlPf5pPfepT575TEVkzlJwqJ7DSJj3Xp1h8ua7EVJGzYKZ9gqq10mGILLvy7ibl3U3e//ICftNi6keDVPZlAchfuUjuUiWmXgzMRkjPMyHGTAajdWKyqIEBLWDewngsSZgOeLRxO4F/hgn7gUFha4nB62ZZ2JNn4ukhtmYaHLotjpte2r7cUsCRry4y8r48G36pwMQPitQOa0KZLF2pdOJ7WjweJx6Pn7Jto9HgX/2rf0U+n+fP/uzPLkR4IiIiIiIiIiIXpdQGh1jG4sC35nEXl3/2ce2IS3Iktuz7FVluZtwgaIYkhmMM3p2lPtYilrcY/eUCoR/SnPOY/GEJtxRgmFC4LkV61KH8ZoPyHp+FF2pLP1gArTmf+bka88+dwe+JdIMQVf09Vzp/IiJyAbmlgCNfX6Tn2iS5yxPkL09S3ttk8hHNWRIRkXOz0B+nWIgxMlYncHWjI/JOO3fu5E//9E9XOgwRWcWUnConSI86GAZnNiAlIsdY6YCgpuRUWbvccozx766jORdn4M5p8leWsJxgpcOSCyS9F5Jj8FaV07DHh/U+YSLE8GhXUZ04+vWyYTB63TiL41mKE7mT9hVLuCTzDcxMgJNtEcu4OGmXZslh+qV+mj8e4dIP72Xg6jle/PplbH+szuGb4lTWLe3rq98IOfLNRYYfyDHyvjxTj5cp72ouz4mQM9ctEzyOxjg6OnrCj//oj/6IP/7jPz7lr3zmM5/hzTff5HOf+xxDQ0PnOUARERERERERkYtXvNfGqwfnJTEVwC35pEad87JvkXNmQOHqJD3XJrHTFl4twE6ZNKZdJn5QIgwh3meTGLTpvSHFhod7CBoBdsbCjBksvFRj9qfVlX4WIiIiIiJnzTg6XWThxToLL9bpvSlFz/UpcpcmIADOcO10ERGRtxuYamKGsLC7sdKhyGrWLfMg3+kcYg7DkN/7vd8jFotx55138thjjy1fXCKyZig5VU4QeCGGaXDkv11JI9H58vAb0ZfPgcMDSzpuT385sk0+Gf1lr+4ubTXjQrIe2SbpRFdYW6wml3S8IIju+RjpKS5pX0tR96LPQ9WNHlxvtJZ2Pq8enIhs44XR52C8kl/S8WpedOxb0nORbcpeYmnHC6KPt8GZB8DoizH9Uj8j1jzmSTmqI0s6nshKuPvl6PfF+r4kh744ipPyuO6f7SQ3UjllO5PoZNVBa2mLIGTN6Pf+lOFFtrnEmVrS8Z6q7YhsUwtOXT3x7WLG0iZH9VmnPodvNxRbjGyTt5Y2oeSl6sbINpfmTn+uwtsg2GZjvOZgOAH5Oxcw3vH27s7bVF7MUX8jw8Hn1hOaIa3tAd66gCAFQTokTAIWQIJepwrEjj6OHmddHe87GV784uUYv1Dh8P8+w9B9WTa7MPfz+fbq7Eu4WQ49mPh+icG7MgzfmyOWrjL/vBbgkGiHDx8mlzueVH26qqlvrQh2ww038Pu///sXKjwRERERERERkYtSrMfCK5+fxFSA5qyHnTIZvCdDeXeT+nj0WKHI+eb0WeR2JEiNOji9FqWdDfx6QLzfZmZPk8re5rH+8uaMR3PGo3bEJX9lAkLwagHVg63zltQt0s2MoP2Qs6fzJyIiF0rh6iR9t6UhhLFvLNKY9lh8uY7TYzN0bxbvmyG1q0Mam1GSqoiInJXZgTi+WaZwZZLZp7TAl8hb/uqv/oonnniCz372s7z++usrHY6IrFJKTpUT1A61CP2QwbkGh9ZnVjocka7Tu6PIxNPDzL/RS/+V8ysdjsiyCEMoP5On8lye/u3zXPLefdhxjTRejAwDrEGP/LrTLyoR6/XouW+e7A0l9o8P4g0cTUY9k+P0BvCBCuF3M4TfzGAlFpn4Xome65P03ZwmMRRj6tESfuP0Gap22sR0DFqLPtM/ruBWAvpvSWNnTKafqHTn6lVdzAjbj9XurRhzudwJyamn86//9b/G8zz+4i/+AtPUCJeIiIiIiIiIyPkS77fJbo8z98z5W3yuerBF8fU6+SuSODmLI99YvoVlRc6G02ex4YMFQi+kPukx/XiZxnT0gp1u0dckShERERFZM1IbHQbuyFDa1SB3aQKn16Yx7RG0QiYfKTH/vMXwJ3vIPWWSejWkek1IcxNgrHTkIiLSTXzHZHxDktFDdey8iVfUHFk5WbfMg3yns415ZmaGP/zDP+SKK67gk5/8JL/7u7+7vIGJyJqh5FQ5QdAKqR5qcZlVpH++wfhQium+JIGlO3WRpUj2N+i9dIEDP9xA6VCGoRtmSA9FV6QUWa3CEEo/6aH6SpbsbQtcfvubGPpIkCWwCx6uffZ34UYhgF8sE343w4Zf7mHsW4ssvFCnMe0x/ECOzb/RS2lPk9qhFq0FD78ZYmdMMpviZC9N4OTb5av9ZkB5d4PFV+p4VZ+hu7MEbsjsTzUxR87dCy+8gGEYfPCDHzxpW7HYnrz42c9+ls997nOMjo7y7LPPXugQRURERERERETWhOz2OEEjZOHF85ecCjD94wphAOmNznk9jkhHBuSvTNB/W4bWgsfYN4oEbhfOehNZ7UK0mOm50vkTEZHzzEoYDN2TpXqweSw51W+cmCzUmvMp3hNiz4akXzbI/8TEeytJdRQlqYqIyJKV8u3UmtRIjFKxucLRiKy8T37yk8zPz/OVr3yFWCy20uGIyCqm5FQ5yeRjZdz/NMjle4sMLDSBBYqZGAc2ZFjIx2k6JmYIjutj+QGubeHZqhQl8pbNDx4mPVRj6sV+Fv5hO1f8xm6SfbpJke4ThlB8oofaq1nyd8+TvrKixFS5oIxMCB+o4P2XFBt+qUDxtTqVAy0OfXGewjUpsjviFK48sSxr4IZU9jWZfapC4IakNjjkLk+QvypJY8rDMA16rk2x8GINv64Rczl3vu8zNTV12u2VSoVKpUIikbiAUYmIiIiIiIiIrCEmZC9JUH6zcUGSYKoHmhSuSuL0WbTm/PN/QJG3MWxY//4CiWGb4usNZp+qEOoyFDkvurXayWqi8yciIufb4LuzUDA5/OECfqyHvscbDP5SnvFr45TWW7w1kenN+TiYwHWQ3eQyurtO4ccec0Mx9lyboe9DuyOPtfDdbR23p2Ju5D5Kjc7zAoKIz85vvnlV5DF8z+q43bSiK/2ZZudAorYDJGJex+31VucEFj+InoQWdQxrCV9GgrDzcVyn8/kEiNmdb8oqjXjH7VHPA8BId34u1XL0nJOg0TklYFdrKHof6zufr6U8l7mIWOsR53MpXzEP1Xo6br8mczhyHwWrc2GDZytbI/dxpNXbcXvRS3bc/sriSOQxCvHOxXHysejiOX2xzs91vJ6L3MdTxe2RbTopt6Kv4elatuP23kT0onUHFztfG57XOd9hppAkpEz/PTm8X06zc30PTefE19Yl/1LFCeTi8Oijj/K3f/u3fPSjH+Xuu+9e6XBEZJVTcupFyOmxGLgjAyZYCZPQDfFbIUErIGiF2BkL52AJAN8AK4R8xeXaNxZOu89d6/O8ub5wgZ6ByOpm2iFDN8wycM0cr3/hEvZ8bStD189gpUz8WnTnj8hqEIZQ/HEPtdd+UFIUAAEAAElEQVSy5O+ZI32FqkzKyjCSIWPfKNL/rjT5K5L03pCmOe8x9WiZuWeq2GmTWMHCcgy8ekBz1iN8Wz9ofdxl/rkq2e1xUhscGG53fqc3xyntbKzQs7oIdcvq42cY4+Li4mm3fexjH+Ov//qv+fSnP82nPvWpc4tLREREREREROQilt0Wx06ZFN+4MP15tXEXrx7Qe32KyUfL3dGvJV3PiBnkr0iQ2RIn3mdz5OtFGpPRk99FRERERNaqWMEiszXO4WvieIl2MtGBOxKsf77Jxmea1HpMJq92qPWfmFxY7onx+q0xeidb7HipwjVPlZjOmbglzdsTEZHOvJjJSxv7uHx8gZGFKiMLVeYyCV7Y3E/LUdqN0D3zIN/paMylUumEH8fjceLxkxdZaDQa/Kt/9a/I5/P82Z/92YWIUES6nD4lL0JOj9VOzgC8qk9txsOwDay4SSxj4NUCDo5kmBxMUk3FMMKQgbkGfQtNhmfqON7JN+kqpCdyMtMO2f7B/Yw9NcyRn6xj6z83aUy7FHc2KL1xYVb3FjlbpacK1F7LULh3jtTlSkyVlRW4IdOPV5j+cYXkuhj970oz+qECCy/XqR1u4VUD6hM+nGYcIfShtKtJfcoju6O9Cpsm9YiIiIiIiIiIiHQBE/puTlPZ37xwVUwDmH2ywtB9WUbzFjM/qdCYiq4MInIuBu/MkN0ep7XgM/F9JaaKXBBh2H7I2dP5ExGR88gptJNOK0PHk0/9uMGh2xOkZ3yGXmmx9ccNKgMmYxsM5odihObxmazzww4vp/Nc9lyZDb9U4PBXF/EqSlAVEZHOxvqzjPVnyVcbXHVonr5KgwdePcJLm/oY6+tc3VVktRsdHT3h33/0R3/EH//xH5/U7jOf+Qxvvvkmn/vc5xgaiq68LSKi5NQ1yrDBMA2CVkhi0Gb0Qz34jYDQD/GqAX4jwEqY2GmL3KUWxdfqTP6wcixZbt9vbz22r9AwmO5PMt2fZOeOwrGfew1dPiJREoUW2x46hFu3+P6vbSSzNc7Q3VmcvMXsz5TwJ6tTa8qh+lKO3B0LSkyV1SVsV0I98pVFem9Mkb8qSe/1KaCdwDr/XJWFF+un/l0DNn+kF4DGtEtr4QJNZJO2blkxrBtiFBERERERERG5iCQGbGI5i4kflqIbL6Pym01aJZ/BOzOMPtzD/PM15p6tqv9Izgs7a5LdEWfmyQrF1y5MhWARERERkdXOSpqEQYjvnLytOmCx794EuTGfvjddLn2hgm/B9IY4By5LEVrtJNV61uLV23Nc99U5Rh7Kc/grC4Rae0hERJagmE7w5OUj5CsNbntzimsOzTGVT610WLLSumUe5Dsdjfnw4cPkcrljPz5V1dSdO3fyp3/6p9xwww38/u///oWKUES6nLIL1xjDhnUP5MhsOfmDojnrUZ9wsTMmYQCJAQPj6E14/sokMz+rErrd+GkpsvrFkj7lPU3Ke5r0XJ+k7+Y0Cy/W8Bt6zcnq4y22vx4kdygxVVanMIC5Z2vMP1/DzljYKZP0Zof+2zIkRxwmHysRvOP91bAN3IpPc8Zj6kflFYpcREREREREREREzkQs166Q4y5e+MXmmtMeh7+ySOHaJP23ponlTCZ/qL5FWX4916bwmyGlXUpMFbmQjLD9kLOn8yciIueTlTTbc+sM49QNDIPSBpvSBht3xqJ/osX6fQ0yix67bsjQSh69n4ybjH2nyMZf6WHg9gzTT1Qu4LMQEZFuV8wkeGFzPzftm+GBVw5Tf0+OhZdrNCa12oF0n1wud0Jy6qn863/9r/E8j7/4i7/ANM0LFJmIdDslp64xTn/slImppd0N5p6p4lWCYz9LbYgxeE+W+pjL9I/LhCogJnJBNKY8DNPAzlr4Dd2cyOoTH21gxAJKT/ZQeGDutH28Iist9MEt+rhFn/qES+1Ii6H7cmz61R7mX6hT2lk/9v0mdEMO/I/5lQ34ItYtEzyWM8bPf/7zfP7zn1++HYqIiIiIiIiIXISylyRoTLsErZXrXFp8qY5b9Fn33hx9pYC5Z7SwoyyfWMEid1mC+edrquAkcqF1a7WT1UTnT0REziM7aeDXg+iGQD1rczhrszDocOnzFa59ssSu6zKU+mNAe8Gj2Z9VGLwrS/H1Bs05ffkWEZGlmy6keXXU55KJRdJbHDJb49QnXY58bXGlQ5MLrFvmQb7TmcT8wgsvYBgGH/zgB0/aViwWAfjsZz/L5z73OUZHR3n22WeXK0wR6WJKTl1jmpMuB/9hHitp4i765K9OUrg6eSwxdd8Xrjv1L/7uif/c+hsvRh5rz+dvjA7IXNonWaWaiGxjLOFT8YbBsSUdzwujV3GYqHVeFQKg3Dg5EfhULCu6k8QPomMqxOtLOt5V+fHINi8ubohs42SWlrEcEJ251vBjkW02ZBeXdLyGF72vshd9Td2YObCk4z2YfjOyTa8Z/Xb6d4wQy5kM3ZelOe/RnFUn14Vw5MtXRrbZ8CuvXYBIVrdb336dp+HIexd59ltXccmmI2y9/vh762a7GLmvxcCJbOOG1pLiaoTRr60RqxXZprnEGR2Hmr2Rbf7vPbdFtvkPl/9wSce7zJmKbFMKot/PFsP0ko4370a3M5cwivzzysYlHW+xHh17sITPv8ufjD5PAOPVPOV6wNBrLgMZi577s8xeEmN+i01otz+r4u85sKR9iYiIiIiIiIiIyMqKD9qkRx0mHimtdChUD7SY/WmVgXdlcEs+pTdU4fJcWAmDWN6iMaWxsoE7MngVn8WXaysdioiIiIjIqtKunLq05NS3VAo2L92Z45IXKlz5TJmDlyUZ39Keu1J8vUHh6iR9t6YY/87K32eKiEh3OTSQ49BAjis++RybP9pLLKuKkrJ2+b7P1NTp5+1WKhUqlQqJRPQcYRG5OOhTcQ1qzfvUx1y8asDiizVCL2TDLxUoXJ0kW3Eh7MLlGkTWiMG7s4Q+jH2rqFVEZVXbcPk0W68/wis/2sHCZHalwxFZMi9pMnZTnN3vSVJeZzH8aotLv1ejf1cL+wwHLURERERERERERGTl9F6forXgUdnXXOlQAFh8uc7ia3UG78qQXB+9kKqc3oZfLjD6cA/5Ky/uyUumY5DaEGPhxbqqpoqsgLeqnehxbg8REZHzxUqYS66c+naeY/L6LVnGtibY/EadS1+oYMQMCGHumSrpjXES63RPJyIiZ2fo/vZ82rnnqiscicj5sbi4SBiGp3z89m//NgCf/vSnCcOQAwcOrGywIrJqqHLqGuc3Qg794wKDd2YYuCPDwPPTJ2w/OJLmje2FlQlO5CJQLCU4NNaDYYQUrkmSWu8w/r0ifk0JUrL6XXXPHhYmcjzzjau4958/i5PQzAjpHm7aZPyGODOXxejf5TK402X4NRf3o700Zz2KrzeoHYquuivLJKQ7FmXohhhFRERERERERC4CTq9FZkucycdKq6rPZuYnFWJZi5GH8tTHXeoTLsVX6wStVRTkKpfZFscptKcp2GlrhaNZWcn1MQzDoDamvmoRERERkXeykiatBY/5WjKy7VC2ctLPqjfC2HCM4Wdcsv+hn8l7LZoONL/v0/f7PUy/+8T7kQGjc5JR1XWiYzY7zwmsN+Kdf9+KnlOYjLsdt6fi0fcXQ6lyx+0bUouR+3hyYkvH7WbEuQhDI/IY2wszHbcnrc7nAmCh1fn6eXO+P3IflXLnhZUSqc7n3A+in6vrdp7Ob9nR10Zgdu6bCJcQx1gx33F7JhG9gJhhdY6j3uicHB6L+ZHH8ILOtbmeLXW+PgEOVXo6bs86jch9XJY9fVVBgEU31XF7049O41hodN6HbURfG9tT0x23/+bw05H7+FllW8ftjx65pOP2zBLem3oTtY7bp2qZyH0EEe8tzeoS3suLp/m7BAE3TE2SGnGoHm5Ren11LKgnF1i3zIN8p26MWUS6iiqnXgS8csD4d0ssvlo/aVsrpktA5Hz56neu5j//1wf52y/fxP/4x5sZeFeG4ht1qgc0wCzdwbJDbvngq7hNm+e+c7kKb0tXclMmE9fH2fW+FIdvjlPe3cBKmKx/KE/+iot7VX4REREREREREZHVqveGFG7Jp/zmKpvkFcLE94vMP1sl9EN6r0+x6SO9JEdUdWcpTMdg8N0ZKgeahEF4VlWQ1goradB3c5rGtItXvnjPg8iKCkM9luMhIiJynlhJE69+bp81lfUWh+5zsOow9E8+hgeVrSbJyRBTiwyJiMgZuOPIYQZrNeqTLuPfLq50OCIiIquKKqeuYenNDj3XpYjlLEI/xCsfX03mja15JgaTtJzOq9EaNpiOqSqPImchlTw5CXX2qc4rrImsNmEIO246xOs/2caeZzay5Y5XVjokkbPixw2KozaNZ2pAjXXvzZG/MknxjQboa855Z4QhRhdMUOiGGEVERERERERE1rpY3iKzLc7ME5VV2XcX+rDwYh2oY6VMhu/Lsv4DeSYfKVHZrwVKOylck8QwDeafr5HZHMe7CMegTceg9+YUuR0JQj9k7JHSSockctEywvZDzp7On4iInE9WwliWBW1aeZOpeyzW/cAnsz+ktsGg73lITIbUNkZXkhQREXE8j6zrsujEmfla56rOsrZ1yzzId+rGmEWkuyg5dY1KbXQY+YU8fjOgtLtB6EIsazLdl2C2J87hdWkwTr6xjrk+2w+UKdybxW8F9FydAuDQlxeI5S3cok9zxrvQT0ekK7333l08eM8uxifyvPLGOh5/agfpTQ7lPatsle81zLAhv9AiW/LIllyS9QDfNmg6Jq24STNu4tsGTp9Fa86P3uFFIvAN5idy7Hl2I5NvDhz7+Ws/3s4Vo+Ns2Di3gtGJLI/y7gbr3ptn6z/vo7S7wdyzNUJXN+AiIiIiIiIiIiIrref6JH4toLSrsdKhRPJrAWPfLjJ8f5ah+3OEPyhRPaQE1VMxHYPC1UmKr9dpzrbHm3tvTFHZe/GMm8UKFkP3ZHF6LEq7Giw8X8NvqF9aREREROSdzISBYS5PcipAq8egNmKQORBQvsTGS0F8PqS2cVl2LyIia1zLNAmBUGsayEXu85//PJ///OdXOgwRWYWUnLpG9d3cTiq14ia5SxK05n0MC2LlFoVSi1TdY9fW/EkJqlsPldkwUcUbsnEKxy+Pjb/Sc+z/3/w/ZwiVnyqyJKYBG0aKbBgp8vhTOxi4K0N5b3NVrvS9FsQKFqn1MRIDMeKDNk7Bwvj5Ir4JlaxNLWVj+SGpmkdhISDeDDBD4Fd7aS16FHc2WHy5DhfZPIBY3uKlH+5gYTJHs+rQqMYJfJNMb5Ub3vc62d4aO3+ylemDvXzpb9/Nv/x/fId05uKZLCJrU2V/i0NfWqD/jjQ916RIjTgc+vLCRff6v2BCuuPcdkOMIiIiIiIiIiJrmJ0xye1IMPt0lbBb1pQMYepHZda912DkoTxe1WfxtQYLL9S6pr/J6bWwEibNWY+gtXxBm45BZmsct+zTe0MKwzRYeKlOz3VJAOK9NqkNMWpH3GU75mpgmJC/OklqJIaVMrGSJnbSxLDak+vHvlXUgtAiq0G3jF2sZjp/IiJynthpE2DZklMBmoMGyZdDCEKaPQbOwrLtWkRE1jrTpBxzKDSbzDsQaG26i1e39iV0Y8wi0lWUnLpGzTxZId5n49UCEoMx7LRJ6IfM3NSL7QdsHqsCcGgkg2cbGCFkah6Dcw2acYsj/zDDto/1YTrmSfsevDPL1D+VT/r5wEKdreMlxvvTLGYdektN7CAgV21xcDjDfD5x3p+3yGoThLB77yC73hwEwHJMtvxmL0ErpDHjMf/zKm5JmarLoe+WNL03pAj9kOacR33CZfHlOgf/nxuppW1C8xRLFoUhZgDb/8MestsTDNyeIWiFlHau/tXYl4sZNxh9uMD4njSDm+YZ2LRAIt2kMFSmd10J4+jHwO0ffonv//9up1FJ8I1/vI1f+fUnceKaOCHdrTnnMf7tIgN3ZMhdlmDdgzkmflBa6bBEREREREREREQuWj3XpfBbIcXX6ysdyhkJfRj/bonkSIzMljh9N6VIrosx9WhpxStjmnGD5HCsXdH1HaGYjsG69+ZIrXcA8FsBsz+tLss4SSxvMfJQHidvtfddb1eZ9WvBCRPMRx7Ks/9v5vDra2OGlNNrMXx/jljBoj7Wojnt4dXbz9kt+tQnXS0ELSIiIiISIbnOITg6B2y5NAYNTB+SkyGtXoPcrgDC8KQCLyIiIu+UbTSI++3PJDNmErQ071tEROTtlJy6RjUmPRqT7S9B1f3Hl+fY93vbAWg6FjsOlI4lqb4lMODIcBoCmHysTO6yBH4jIN5nkxiIAVDadeJgZLzlc/2eWXrL7Sp6feWTq+mlGh5PXju8fE9QZJXzfYMXX13P4z/dzvRslt5Clea8R7zXxk5bkAanx8Yt+cz/vLbS4a4JgdeetHDwHxZwi8eXU69mY6f/JcMgsKB22KV22MXOmPRck6S8p3HRTAywEiZWwuSKu/ay6arJ07YzzZDbP/QyP/rvtzA50cs/fuFOPvChp8nlu2uCkMg7hT5M/7hC9WCLkfflyV+RoPj6xZOgLiIiIiIiIiIislpYKZPcZQnmn691Zx99CPUxl/qYS2V/k+EHcmz69V4WX61T2dekNXdhSsHGChbxfpt4r4XTa5PZHAdg5qcVFl86sU+/9+YU8X6b8e8VaS349FyXZOjuLMmRGLNPVc4qYdSwIbMlzsAdGfx6wIG/m8eMG7hFn6DZ3l9pZ5PcpS0SQzEM02Dzb/Yx9q0ijcnurqBauCZJ361p3EWfw19eoDXfLeV/RS5ORth+yNnT+RMRkfMltT5GY5kXdmkVoJWD9KGQ6kYDqwV2FbzM8h1DRETWhkK9zlC1SsJzOZzLcdPEBAZwKJfDq86sdHgiIiKrjpJTL1IHRrOMDaXIV1zMICQ0oBG3KKdjYBhcd2mcoXtzAIRhSH3cZeIHRSoHWvD2xT7CkGvfnCXV8Hhhex/bx4p4lklP5XhC7GtbChwc1h28XDyaTYv//a/ezex8hst2TPKhh15m88Z5fmXDbTi9FvnLk+QuS+DVfBZfUWLfcinvadB/S5pY1jwhOfWM9rG7ydC9Wbb+dj/zL9RYeL47E4fNhEF61MHOWBgmhH5I7YhLc/bkHlu36FPZ1+TFH1wK0DFBtTBU4abbdvPzn13C1GQP//0vH+D2d+/kmuv2E3NOfc7DEEoLKYrzGRZnM0yP9XD5DQcZ3LywPE9WZJlUD7ao7G+SvypJcWfjpAoCcm66ZYJHN8QoIiIiIiIiIrJW9VyTJPRDiq92/9hJfczl0D/M03Ndip5rUvTdmMZvBNTHXWrjLvXx1rImLlopk+yOOLlLE8R721MA3IpPa97HLfvEsu2EVTNhELZCjJhBLGuR3ZagtLtB9UB7bHf68Qq1MZfBuzLkdvS3q32WfRrTHpV9TUI/pDnrEb4jdDtrkt7okN4UJzkSw7QNKvubTP2oTNA6dafbka8VSQzbjP5yD6ZtMPrLBaYeLy9L1dYLzU6bDN3XTupdfKnO3LPVk86RiKxCQdh+yNnT+RMRkfPBgORIjIWXlvne0DBoDBkkJ0PmrzMBcBZCvIwqp4qICNhewPVvztBXamGF7XudEFhXrRICz4yMsJBMsY29KxqnrKxumQf5Tt0Ys4h0FyWnXmS2/saLp92WBQaO/n/ulwvUxlpM/7iCV/VPuQLVjo89x+DdGXKXJhj7dpH8/BTZ3+6ntKtBs88m3m8TBiFX7l8k/18PUB87/Uq3e79wXWTs/b+4O7LNocgWbbe9FL3qbtmNR7YZyZWWdLzFRjKyjWUGkW3GyvklHW+qFp0M3PKsyDaX900v6XgxM3p0daYeHVPCWtpqyCOpYmSbK9Nj0cczl3a8chB9rhLG8XMwXUwxO59h29YpfuVXnsayQmpHv9S15n1mnqww82RlSceW00v/eOCEfzvTwA8h9hcF0m97qcQXo5fQCx4dBWARqFYDNn+vRe6eDHOf7QWz3QFp3n94aYE9uuGkHzmLAYMveLSyBs0eE2trkzDibaGyhPcggIFEBUIwFg3swybWEQtzxsAIDcJ4SGiB0YJ+zyBIhbQu82ld4cPbLuvAh/4XF3j+u1cwNjbAlvsOY5ym33Xw1klSO0eJJTx6hkv8+NGr+OlPLmP0qkkGt8zTs67EYaMPaCemHvjaRqqHT3z9VxJxRteNL+n51QInss3zS8giLPuJJR1vthn9XpWOtyLb7KyPLOl4w3b0+1k5iP4MWfDSSzqeu4T3s5rXodrwUe8ffnVJx3ulsj6yzc8nRiPb7Cv2Lel4TTf6q+3o46ev5F6ZCxn6QUD+yuSamAAnIiIiIiIiIiLSLcyEQf7KJIsv106bzNht/HrI7E+rzD1TJTEUIznSfvTfnsa0MvjNgNa8T3PWoznXfrTmT078fDsrYRAfjOHkLWJHH07ews6ahD5UDzSZ/VmVxqR7/DwasP6DeXI7EuR2nNhX7lV9Fl8+sS+08maT2uFWexHMnEUsa5LZGqdwVbuv2m8E1CddgmaIYRvE+yycgk3oh9QnXOaeqVI92FrSQqLG0TGY8p4G2R0Jhu7OYiXNs1o81Iy39/VWddYLJVawGH4gi5UwGftmkfp4d1d/FRERERFZafEBGytuUh+Lnp9zplo9Btk97flUXhKc+ZBa9LQVERFZ48wg4N4Xx4n5AXXbZjKdYSybxQ4Crpyd4WA+z0IytdJhioiIrFpKTpWTOL0WyeF2YsrgXRnsrEntiMv8czX8WnCsTe/1KbI7Ekw+Vmonnhqw+EqNwtXHv3y9NaB4tlUMRbrRQH+Zd9/5Bk88eSn/91+/m4/82s/IZJorHdaaYDoGPdclyWyLE/wTGD4010HlUrCq7Tb+0nL0TstNm0zcGmPkZy4bfuJy5K52RWkAp8ciszVOfcLFq7Tf17xKQBiRW265kJwNSc6GsD8gfNHEHQSzBl5fSP2KEL/3zOI0/JDEdIgzZWMdtjCrBqEd4o8EtG738Tf4hEffjn3fwJoyiO23iL9oYU+a1O9wj23Hgm0PHiIzVGXfoxuJpVxGbz91BVU7FnDte3bz0y9dy8DGBe7/nac58OIIh18bZt9zo0CInfaw4j5hYNBajGPYAaFnMvSuKRIDDTIbq2f2ZEUukFafQWW7QV8zRWVvA7++NibBrQoh3VGNthtiFBERERERERFZgwpXtxMfF15Ze4vGhT7Ux91jSYuGBYmhGInB9mK/qQ0x8lcmMEyD0A9pzHjUJ1zqE+6xJFPTMRh8d4b05jimbRB4IW7Rxy36lPc1ac17VA+0Tp3YG8LY14vEB23slInpGARuiF8PaUy7cIoxjqAZUn7z+NiWYVWI5SwMyyCzNU68r50YG/ohtcMt5p6uUjviErhn1sHmlttjLdVDLdxyQO8NKfpvSWMYMP/cmSWo9lyfIvRD5p8988TWM2ZA383tsfJY1sJvBox/t0RjUompIl2lW8YuVjOdPxEROQ9S6x38VkBjul2QIG5Hzz2tuZ0XYl93tBiGOWxg4NBfqRP2WWSKBma8AUDO7jy/z15CAY/xeufiI3a+8ySzmUb0ovrztc6L3Cfs6EIOraDz1PFFN3ohfdfvvEB+zOp8vtJO9P2TGVHmbSl/kz1zA5Ftohhm5+2u2/lcpBPRidZB0LmCbxBEBAE4mc7HyWei+1xm57Idt3tLKIoTj3f+2w7mOhd22Z6bjTzG6wtDHbfPVKNfS42IIggxK3oiao/T+ZyOJBY7bh9wypHHeLXUuUjGoXJP5D6G4p0LMY3EFiP3sac82HG7EfF6PTwWXZxiMtX5+rOs6BuQjb/6SsftJ5S1MKH/9jSxtEVinY2VMJn9WZXFo5W732o7BSQYY1vk0eWi0K19Cd0Ys4h0FSWnykncok/xjTrxPhu/GdJadMlui5PdGqc+6ZIYtLHT7UG2iUdKVPYevSkPYebJKgsv1tnyW33Mv1DDLfk0Zzy8SnRVUJG1wjDgnrvf4JIdk3zxS7fyf/5fd3PD9QfJbHWoHmqdshKxLM3g3Rmy2xKU9zaJYRNakH0JkvuhtrXdZjm+P1c2WEzcCiM/c+l7/WhH54M5UhtimLaBYZ3YGTT2rUVqR07fqVIfMJm6yab/JQ/Dh9aWELNm4K4LccYN4t82qN4Y0rg8hNP0MxleiF2B+FxIajwkMRli+hBkTPyNPq0NAf5wcEJF1GNM8NeF+Os83C0GycdjZP7RwdsQ4O4I8Na336OHrpnDrcU4/NN1pAfr9G47dVXPgU0LXHH3Xl5/fCszh3q45LaDXPqugzQqDi987zIWxvN41RgYIfG+Bs25BIYZMnDTXPTJF1lhxWsMkq9A/+0Zph6L7gAUERERERERERGRc2M6BoWrkhRfrxM01v4smXcmqwIYNji9NokBm+S6GLlL4vRenyIMQvx6gJUwCUOo7Gsw90ztrMZem9MeZ7uUauhDa6E96bc5u3wDXV45oHKgycCdGaYfLzP7dIX+WzP03ZwmPmAz82QFrxz9XE3HwEoaJPpjWHGTyv4m9YlTJ96eKyNmMPTuDJltcYqvNagealGf0PifiIiIiMhySa2Pte+XzsPtYZAPCa0Qa87E7wtx3jDbx+mcFygiIl0oljcZvj+H02sTeiFuyWf+hRrV/e1E7nXvyZHZHCcMQwhg/vnascRUEREROTNKTpWThD5M/9OJK9PM/bxK/y1p7KxFaXeT2pEWjUmXMIDM9jiJfhuvHlDa2cCrBu1VbkOwUyZDH+6hPuFy5BuLF3TVBeutlX8bAX4z1IoPcsGNjCzyiY/9mEcevYqnn93Guvc4BH5I9UCTyUeU8HQ2GtMe2W3t1chCC/wkVO6FwjOQeQ18h1MnZ56FyohJbcCgb6eP70ArblDe3WTu51ViOQunYDF8fw6A4DSLsNm1kOR0QHKm/bCOzjPxC1B5V3tGRDUISb1okHnOJLkzbMcfQCHwMML2/xshmEd/NzSg2Q+LV5nURwwKg40z6iD114VUPtQits/E2WOReixGkAw5dPU6Bq+cY/2tk1Rnk+z+9hYu/eA+ejafetWs7TcfpmekyOuPb+PZr1+FYQZYdoDXskkO1WmVYvgNC79pUbhigd4rF5cepMgKCuIGcz+rMnRvltLORnsCk4iIiIiIiIiIiJw3+SsSGLbBwkU8+Sv0jiaPTnsUX2tX7YnlLZLDMeyMid8IqOxr4tfX3oDn5KNlhu/Lsu49efz68WzSzOY4mc1xKgeaVA+2aEy7eJWAoHniOYjlLda9N4edMakebJHe5FC4KonfCKgdadGca1eVfSu59kwZNiRHHHpvTJEcaldjCryQiUdKxyYzikh3MmiPw8rZUx6PiIgsN8OCxHCMuaer5+cAJvh9IdakgXtJgNk0MKoQRhdZFBGRVS5R8xh5KEdqvXOsAE0YhrhFHzNmEB+wGXlvnuBooqrT055sPPtUlcVXLt5+SRERkeWg5FRZkqARMv3jykk/H34gS3Z7glbRx06b5C5NMPloCcMyiOVNMlviACTXxbCSJn7tLJenDUPMmIHhGJi2gekYmLHjD+Nt/x/LW6Q2ONgp8/ivByGGaRC0AiZ+UAKUaCIXRj5f58MfehaAT1x5Fxt/rZf0qLPCUXWvt1YlymyOY7iQmoL4JJSuh94nIDTBXgSv59yPFVoGh++JQxiCYWDeP3Nsm1v0Gbo3i1vyOfL1Rbzq0fc2AzKHfVKT7WRU52g/aTNvUF1nUUy321ib3jYBwoTaDSHuiE9szDj2s1ZoEpoGGO3n5cfByxq4OQictw3znc2InwPuZQHuZQHmnIGz22LyxUHGnllHfrTE0HUzBK7J3u9v4qbfe+W0u+lbX+LOX3+B6mKS2YM9eC0LJ+XibgswrGOnTqTrlHY1yF2eYOCuDIf+ceG8rK5/sTHC7pjg0Q0xioiIiIiIiIisNblLE1T2Ns9+HHGNcos+bvHsEiq7SeiGTHy/RGLIJjXq4BQskuti2GmLyv4mVtxg8K4MhtkecAjc8NhCyVbCwE5buGWfw19ZxF1sn694v01mi0NyxCG10aH/1gz1aRf8EDNuYsUN/GZIfdylsrdJY8bFMA3sTHt8OfRC8lcmSa6LEe+3MUyDxqzL1ONlCEJqY+5ZVa8VkVUmDNsPOXs6fyIisswSQzFM26B25PwtBOPu8Ek+GcPdERAaIfZhE/dyfb8XEelmO3YXGT1ch1EHtxTQmHQJvJCFl2t4xaPv8Rb03ZgisyWOk7cIWu1iQ0pMlTPRLfMg36kbYxaR7qLkVDkniaEY9UmXI19bJJa32PDLBTb8UgHLMalPuGS3JY61Db1TfKqZkBqJcdneReKtANsLsPwQ2w+x/ODof0PsIIR/0X/aOMIwJHBDQjfEqwaUdjVoTLr4zZDMNoeeq1PtwzkmdmaZyiqKnCG3FBxb2VrO3uJLdRZfqpP+DwNYZej/AWRfbhdHNgLoewxmfwH89DId8Gh2pWG3V9+O99kUrk5iJ00Of20Rrx4QH7RJ9Ld/7vzMO5aMOjtoUO83CeInZmj2JE7uQHWHwR0+/j5ZcS/Me1XQF9K43ePO9+xkbneB6Vf62f3NbQAYVnTHq2FApqdOpuf4Dfq+1uCxbSLdavqJMht/pYfCVUkWX1YHlIiIiIiIiIiIyPkQ77dxemxmnjpPVXGkazSmPBpT3im3mY5BrGARy7THeu2MiWGA3wxpzXtUD7UI3/arzVmP5qwH1MCE7LY4A3dkMOMGrXmf8t4mpmUcq7J6Kl7Vp3bEpbizQX3CPZb4KiIiIiIi508sbxEGIa3z+P3b3RbgvBEQf9nC2xDg7LJwLwk0m1pEpEslah6jh+sYwIG/n8ctnmbeqw9zz9SYe6Z2QeMTERG5GOh2Ss5J8fUGvTem6Ls1jZ1urzLbWvSxek0G78xSG2sx+7Mq69+fZ+Ov9lA50CRohmCAnTJJb4pjp0zqsw2qSRvfMmjFTDzLxLcMPMvAt0w8y6D/zw8RuCFBq52EGrhB+99ueMJgI4BhQnqzQ2bL8cRUaCealN5oEPoQ+gamo2Ug5MIyDNqvAVkWfhbm7oPCs+0CooEFoQW9j8PsgxDGzvEAYUhqJqDnDZ/0x/sxrKOrcnshXtWn/7Y0yZEYVtwkDENqh1pMfjhJs9eM2PHqY8UCBq+cZ+CKeaZe7mf/YxsJ/e57HiLLpTXnU3ytTt9NKcp7m/hVrZJ5TsKjj9WuG2IUEREREREREVlDsjviePXgvFbFke4XtEKa0x7N6bP5ZSjvaZK/KkliwObQlxZO2Bzvs4n32+2xn7KPYbcrqFb2NU8agxaRtaVbq52sJjp/IiKy3GJZC68anN+xewMat3ikv+vg533MskHiWRtub4LqnoiIdJ1GwqSatshUfYbuzXHka4srHZKsZd0yD/KdujFmEekqSk6Vc7L4So1YziR/eYLWos/88zXmn6uRGnWw4gaV/e1Bu8NfWaDn+hTpjQ6GaYABfi2gsrdJ8Y06O//rVZEl9hJ7l15tcuDODPkrTl7lNn95ksG7ssz/H+1/F35rEiujZBO5cJrzPumNDvMv1ECX3rLwetqJqHYRgjiYrXY11YHvwOJtQPzs9mvVQ4Z/7pKZDI7dS7RmPZpzLl41xEoYxPtsFl+tUz3YojXnEfrAH+SW78mtAMOA4WtnSfY0CTyVPpWL29yzNbI7EvRcnWT2Z6rcICIiIiIiIiIisqwMyG6PU3mzqckxct5VD7VIDsXouyV1QoWM5pxHc05ZqCIiIiIiq0Esa+KWz1/V1Lf4gyHNKzzir9sEmZDYbhPGM3B5C4Y96AtAa/qLiHQH0+TpW/q4/WezpIZj7fdvzc8WERG5oJScKuck9GD68QrTj1dO+Hnt0ImrG7ul4KQ2J4hITD1T88/XCP2QMATDNDBMMCyD3KWJY20S15cx0/r2KRfWwgs11r8/z/r35xn/blErLi8XA7xC+3+DJMy8F3qehPxzwLtObGq5AYFlEJqd33c2/KSFUwoJgdkrLEr/y9RFVfU2v7G80iGIrLigFVLa0yB7SYLZp6uaIHcOumX18W6IUURERERERERkrUiOxLDTFuU9jZUORS4CCy/UKFyZoPeGNIVrUsy/UGPhuVr0L4rI2tWt1U5WE50/ERFZZnbWwi2e/+RUgOZNPlgQf8XG7wuwnACeOTq/1AlhswuXtWBAc0xFRFY90+TgxjSX7yoz+nCB0q4GzTmPxoQmacvy6pZ5kO/UjTGLSHdRcqqsCtt+48XINge+eE1kG9+zAEjXXOYaHou5OINzdXIVF4DceIXXthWoXxGAkYfxcwqbpru0l5DrW5Ft/CB6qa2mF70fgIF0h0Tgo6Yqmcg2L0ysX9Lxbll/KLLNuwfejGyzqzK0pOPZRnQH1L76QGSbw/WeJR3vz+YejGwzWliMbPOB13YCUD1U4cjXN3Dn3/vkLy+d1O5bVy4trotd9d0zHbfbN6XouynN5Z89wsLzNYJWyOA9WXI7EnhVnwN/v0DoHv22/eiGY7/nFAMKu30Si+3E1LG7Y9QHTea/vGNJcS1OpSLbhGF0Qr5fX9rrPdcfXc0xk4iuPD2VzS/peFNudLvvT10R2ebS/NSSjndpajKyzWhsLrLNjLe0iraP15f2d44yVi8sqd1kMvp87nCiz8FS7bP7I9usSxQj27xWGVnS8aqeE9mmJ1WPbNObWNoEobIbXSq51ExEtnn7XipvNum5OkW836Y5o84qERERERERERGR5ZLdHqdV9GlMq99NLoAA9v/tPH03pshfkaT/5jT5yxIc+vI8gfKjRS5KRhhihJqdeS50/kREZLnFsia1IycWRkk7rdO0Pi5udb6vvLuw+9Qb7oP5kQKHfzRC0HrbXNCWAbsd2O3wnl9/msHRBd5orYuMoydiXs7eWuftSduNPMa6bOfnmolFzxOrRMyveWU6el5QzDq3JOK4Hd0X8OZi5/Pl+tFzbqPmzcXM6OTjaqnzXKOefOebytuGDkQe47V45+vr0HRv5D7cRuf5zLVY9DyudLbzc6nXo/cReLGO22fNzt8hHTP62ppZyHaOYQnzsQd6T567+3ZLmR8eNztfx9vinedIPlG8NPIYuyYHO273WtHzTMuNzq/5Xfnoudv75zpfg42Ia8OoRcfpmZ2vne2bJjrvoB+qjzRJjToMDrSvEa/qc/jri3glLTQgIiJyPik5VbqCYUK86dOMn/zlNFH3uGRvmZgbEG/4xFsBdnD6m5eWY2n5B1lRht2+yQl1r3NeVQ+0cPIWuUsSFK5MAu1KygChD6F34vuA1Qzpe8Ujvz/grdzR2ast6oPRHRUisnb5RysmG0vLFxcREREREREREZElMCzIbI2z+Er04nUiy8aHuWdqzD1TY+CONPmrkmz95/2U9zZpznrUDjVpLWgAT0RERERkJRgm2GkLr3xhv5P3XrZIZqTK4o97Gdt7PAksmW5Qryb4wd/dykf+/SMXNCYRETk7498pYWdMYgWL7LY4ucsSDN6VZfzb0QU7RERE5OwpOVWWbODODJltcfx6QHlPg8akh5U2MYBW0ac558F56BfouzlF4doU25+appiNsX9Thpn+OBjt7LFCscXQzPHVesqpGDHXJ+EeD2Z8IMnITHtwe8uRMm/uSC5/oCJLlBhokhqtMv3EIMnhBvG+6NXd5Mw1Zz0mHy1jOgZ9t6axEibZbXH8ZsDcz6uYtkEYhqQ3xcn9xCU1GUAIIVAdNihttaiOKBtN5GJnGO/8Hzkr4dHHatcNMYqIiIiIiIiIrAHpjQ5W3KS8J7qii8j5MPNklcrBFsP3ZsntSMAOCG9LM/G9ItWD0dWKRGQNCDgvc1wuKjp/IiKyjOxMu4CAWz63ipxnw8m53Psrz1MtJfjW/3UnbstmcHSBzZePc2jX8AWPR0REzp5XCfAqAfUjLpktceK9mgcsy6hb5kG+UzfGLCJdRcmpsiSmY1C4qp3QaSdN4rdmTtnu8NcWaUwu32Bdz/VJem9MM/98jbGPjrBuosZ1ry4wX3DYsy1LKRtjMe8w1+PQt9BO8MvWXH567QChYTA8W6MVsziwIcuB9S0G5htUUjZw4TswRN5ixkLWv3+cg1/ayNi3R9j0zw5hxTVqc74ErZCZJyoAOD09xHtthu/LEYYhBGBYBq1KQAi4GZh8V4xWXtVSRaQtNeoQ+CGtBW+lQxEREREREREREVkzsjsSNKZd3KLG7GTl1I+47P+becyUSaLPYuShPPkrk0pOFRERERFZAXa2nTzkVVbuPjGdazC6Y4p9r62nXokzumOG0R0z7Y2qPyEi0nXCQBl5IiIiF4KSU2VJglbI/r+ZI39lgtylCex0uyOgPulSO9TCTBr0XJ1i+IEs498p0po/9w6CeL9N303txNS5Z6pM/ockk0NJ+uYaXPJmmVufm8O1DWJeiG8azPU4pGo+iaZPI2HTdCxKWefY/kpZ59i/+ymfc3wi58KMhax/aJz9f7OFmaf6Gb53eqVDuihM/KBEYsCmOe+R6LfJXZogOeLglKE2aDB+Z4zQUnVEETkuf3mC6r4mQUMdVefK0CkUERERERERERHA6bVIb3aYebKy0qGIABDUAmq1AL8WkBp1GH4wy9SPyoRas1BkTTPCECPU4MW50PkTEZHlFMtahGGIW1nZIg++1y5qkO/TPauISLczTIPA1X2LLC/NgxQROZmSU2XJvGrA3DM15p6p4fRYpDY6pEcdem5IYdrtZK5YxmL4gRyH/mHhnI6V2hBj+P4czTmP+eeqJ2yb60vws544vQtN8iWXaspmti+Ob5v4rokZhASWqh7K6ucUXMy4T2vOiW4sy8Jd9HEX28nzrTmf3pvT7f9Pw9TNSkwVkaMMiPfapEZjOD02009owEFERERERERERGS5DLwrg1vyKe5srHQoIic4/JVF1v9inszWOJktcWZ/VmXx5fpKhyUi50t49CFnT+dPRESWkZ018aoBrGxuKul8+x5gcTa7soGIiMiysJImpgOBKmCLiIicN0pOlbPSWvBpLdRZfKmOYUNynUNqNIadNCm/2TynfffekKLvljS1Iy0mflAiPEUR1tA0mOtLMNeXOHGDYRAouUy6SLyviZ3RsssrxXQMZn5aYfF/6wVD7x0iF70wpGe/x9BHe49ViS/vbVAfd1c4sDUgDNuP1a4bYhQRERERERER6WLpTQ6pDQ7j3ymu+IRjkXfyqgEH/36B5IYY6x7I0X97muz2OBM/LOGVdMGKiCyHMAx58skn+frXv84TTzzBG2+8Qa1Wo7+/n9tvv53/6X/6n7j33ntXOkwREVkBsayFV175790jW2d5/ZmtzIz1EIaaUiYi0s1mflph6J4sW36rj6nHK1TOMcdBpGvmQb5TN8YsIl1FyalyzkIPaodb1A6f+5IiuUvj9N2SZu7ZKvPP1ZYhOpHVzW9YxPu0HM+KMMC0DYKWehFFBBKLPiMvtEgtBJSOuBR3lmgt+ARN3ZSLiIiIiIiIiIgsB8OE/nelqR5uUT2ksRFZvepHXPb99zlG3pcntSHG5l/vpT7mMvFYmaC28pPlRWSZdOuE0tXkLM7fY489xgMPPACAaZps376ddDrNnj17+MpXvsJXvvIVPvWpT/HpT396uaMVEZFVLpYxccunqGRygQ2NzrP5inFmjvQQ+CaWrXsAEZFuVd7VxAAG7soyfH8W/11pFl9tsPC8chRERESWk5JTZdVIro8x+O4sxdfrSkyVi4JXs2jNO/TesLDSoVyUEsMxDNOgtbDynZoisnJMN2Tw9RZ9ez2aOYN9707g/7eZlQ5LRERERERERERkzclfnSSWtZj4XmmlQxGJFsD4t4vECibD9+dIro+x9bd6Ke5sMPPjykpHJyLStcIwZPv27fzP//P/zEc+8hF6enoAaLVa/PEf/zH/+T//Zz7zmc9w66238oEPfGCFoxURkQvJzlrUJ92VDgPDgDs/8PJKhyEiIsuktKtJ6c0mg3dlyW6L039Lmr6bUjRmPEI/JJa1MOMGoRfSmPJYfK1O/cjKfx6JiIh0EyWnyqrg9FiMPJSnNuYy/cSpB/MyqUbkfjbll5bk1+PUI9s8Ozka2SYMl1ZtMelEf0ldny1Gtim2Eks6XqUVj2zTm4o+B4tLLCa5lLj2BIORbSpedNwAm1NzkW1eL62LbHNwsWdJx6s3Y9FtvOg2z5Y2nfDv+PMWTgz29PUQlt4eiyZlLMWev75hSe3suHf8H2FIoeiyYaLG0EydUsrmjf/PZRjRlxSbfu2VJR1v4W+vj2zjl6KvFzO7tJvb0nw6sk0lFv0afbMv+jUKMNuMPl5pCe9BO4vDSzrevkp/ZJv3Drwe2SZuLu18DiSjJ5RszER/1tyV37Wk422MzUe2SRheZJs+a2kTYcpu9LWwlDZJa4nX5xI+HywzeoXJDanFJR1vz83NyDZvffl1eiyyO+LkLk1gOiazP6+y+EodzmDBy+mvXxbZptGKfr1b1tIOGo9Fn/cgMCPbDP7SG0s63nIywvZjteuGGEVEREREREREupGVMOi9IUXxtYYWjZSu4i4GHP7yIvEBm9GHCxSuSNKYcinviu6PFpHVrVvGLlazszl/t9xyCzt37sS2T5yy5jgO/+k//SdefPFFvvvd7/KXf/mXSk4VEbmYmGCnTdzyyfMnrukdi/z1RTfZcXsjjJ67EdVm0U9F7mNPtfP8q4laruN2fwlzPmJW53tq24ieg9L0O08dD5YwL7bZdDpuNyK+KBTN6C8SZsQ+ypXOf3cAO9b5fCXjrch9ZPKd59r6Qefz9cTYtshjRM0vMpYwvwo6Xz/VYvQ8roHBznNXPc+K3Eej1vn6arU6bz+ymI88htvovI9CbzVyH/GI19K6dPQ8XjPi9fZkaUfH7W+WoudGRklno+fWL85mOm5fymvJsjufr0Sy82upHvE6ATAi3hdmqp2fB0Dx76497bb9gDfrsGGxwrbpRZJDBgbgmQZNy8IOAtIpi8yWOH4j4PBXF3CLqp4tJ+rWvoRujFlEuouSU2XFGRZs+me9AMz+rAL68JOLhDVrEuRCws79NLJMehabXL67SKbmU0tY7N2UZWwkRWgaGHrjEbmoFK5N0n9bGr8RUjvUYu6ZKl5VHUkiIiIiIiIiIiLnS98taQhh7ufRkwNFViO3GoABQSugelCJqSJrQhi2H3L2zuL85XKdk3IefPBBvvvd77J79+6zjUpERLqQnTYxTAOvrMWMRETkPDJNjvTmONJ76vsSx/O48YtvULg6yejDPez7/BIq34iIiIiSU2VlGRase2+ewAuZe7ZKa16dC3LxaF3hk3zMJvVIjPodLmH0oj5yNsKQwdkGV+0sUs7G+Pm1eeYLDhhLLA0sImtK/7vS9FyTYv75Wnsi3HnMSTX9kGTNwwghU/EYPVwlMA1qKYvFgkMlE8ONGSdVTnVjJqF5iveoMMT0IbC78P0rpDsWIOmGGEVEREREREREuozTZ5G7PMHMkxWCpjpgpDuNvKc9afHIN4sE0UVJRETkLDUa7TfZZDK6epOIiKwdsWy7GuOpKqeKiIhcKC3bZvapKtkdCSynC+foyfnXLfMg36kbYxaRrqLkVFkxRsxg3QNZkiMxxr9bpD7mrnRIIheUtyGg9qBL8skYma851N/t4W1UB9tyMYKQdXM1to+XyNQ8ZnrjvHRlD4GlG0aRi5FhwdB9WTJb4kz/uEzx9WWePRSEZIsePTMu+TmXRM3HaZ18Rz/X69Cz0GLDWP30uzKgnrIo52PM9TvM9zv4tsnI3iabdh3/vbnhGJW8TSNt0khbNNImgd7iRERERERERERklRm4I0NrwV/+PjmRC6TnuiSJIZv6mEtzxlvpcERkmRhB+yFnb7nPXxiGfOlLXwLgjjvuWN6di4jIqmZnTQC8Sru4SWarg2EZlPc2VzIsERG5SJmOgX+KuX8iIiJyakpOlRWR2R6n/7Y0pmMw8T0lpsrFy18X0rjBI/VEjPjLlpJTl4Hj+qybrbFlokyq6TPTF+f1S/Ms5p2VDk1EVojpGKz7hRyJwRgTPyhRPdBa1v33TLfY+nqVRD3AjRks9sdYGIjRTFpUrBihYWAGIZ5tUDr6XhRrBaSrHpYfYJrHO7KMEOINn3TVJ7/QYni8QWhAPWnhtE78jOibdMnPuthvmwvVTJjU0xb1VDthtX700UyephqriIiIiIiIiIjIeZTZ4pAacRj71iJoCES6UGLIpu/WNH4jZOxbxZUOR0RkVSqVSif8Ox6PE4/Hz3g/f/mXf8kLL7yA4zj8+3//75cpOhER6QaxrIVX9Ql9SG92WPeePAD97woI36zDNhdDUx5EROQCqY+7pDbEsFImfk2dmiIiIlGUnCoXnJ01WfdADmivejh4TxbTMjBsAzNmUBtrMf7dIqEWnZWLgFGHxHM23nBA/XYlaZ8N2wvYOl6ir9gk7vqkmj4BMNGf4rlLs9R7zWU7lmFDar1D7XALp9/Grwd4Zd14iqxWhgXJ9Q4Dd2Sw4gZj31qkMbmMXzDCkO2vVhk60mShP8buazOUCzZvHxFptGKn/FXXMVl02omqlnX695FE3adnrkWq4pGpu1g+FPtsiv0xyj0WAHYrJFkNSFR94pWQZNUnt+gxONbkrV2HBjSS7cRV411p6mMutSMtQn+ZzkWEbll9vBtiFBERERERERHpFoYF/bdnqB5sUjuiMRDpTut+oT0p/vBXF1Y4EhFZdmHYfsjZO3r+RkdHT/jxH/3RH/HHf/zHZ7Sr559/nn/37/4dAJ/5zGfYtm3bsoQoIiLdIZa1cMsBTq/F0L1ZqodazD5doff6FPY/pWF/C+6oY6T02S0iIuff4is10qMFcpclWHi+ttLhyCrSLfMg36kbYxaR7qLkVLngvHLA4a8vkhyyMeMmoR8SeiFmzKD3xjSp9Y5WTpaLglGB9LfbiUn1213C3AoH1IV6iw2ufXMe2w+Y7kkyn4tTTsWYLSRoxY4mbRGdiGb6IflSi2zZI1NxyVY8Eg2fVsykFTdpORbp9+ZIDsewkiZhEGIcrUB4+KsLNKaUTS+ymhg2DNyRIbsjgWkb1Cdcxr9dwi0t7xeMkQMNho402XNVmukNcc7HMp2NpMXEhiQA8dipJ/B5cYNy3KTcaxMEb0vID0OcRkCy1k5cTVZ9kjWfzOY4PdekCNyQ2uEWlQNNqgdbBE0N4oiIiIiIiIiIyPIpXJPETpuMfbu60qGInDXLaff7JgZjVErNFY5GRJZVePQhZ+/o+Tt8+DC53PEJD2daNXX//v184AMfoNFo8Bu/8Rv8wR/8wXJGKSIiXcDOmGDA+vfn8coBkz8sEbRCJn9YJvd7PuGTScIvZ+HOOsYWLX4kIiLnV+2QS+CF9N6QovhajUBdQiIiIh0pOVVWRGPCpTFxtJPAgPyVCXquT+E3AyZ/WCZUcqqsdQEkfxIDC6rvbxEmVzqg7mKYcOnBRbaOl5nPxXlpey+NeOePNCMIKRRb5Cpue4zsaBJZuuYxPF0n5oX4JlQyMYq5GJODCWJeQLwZ4LQCDBPqky6ZLfFjiam1Iy2a8xeo7KCILNnQvTmy2+LMP1+jNe8ReCGpUYfmjEdjenmSyWM5k9HdNcY3JZgeTSzLPpedYdBKWrSSFsW+4xVcB//jOLGCRWazQ3pznOH7coRBSH3CpbK/RXl3g6C1zLMxumWCRzfEKCIiIiIiIiLSBayUSe8NaRZfq+MW1Y8u3evQP84z+qEehu/PstBrMfeMqmWIiLxTLpc7ITn1TExOTvLggw8yMTHB+9//fj7/+c9jnIcFYUVEZHWL5S1iGYtW0Wfs24snzFkwtrgw7BH+Y5bw0TT8UhljQPeZIiJynphgp0wmf1hi3XtzjD7cw8G/X1jpqGS16JZ5kO/UjTGLSFdRcqqsKDttMvJQHqfXorSzwdwzVfyGPv1k7XNetbCnTKrvVWLqmXJ6LIbuz+JMlNm1Mc++kWxktcKB2QaX7C2Rrvv4JoSGgREChLRiFkfWp5gaTFBN24Tmqfe16T+PseHhAl4tYOGFGqVd5yF5S0SWRSzXrh7ae0Pq2M/eqnhcG29RfK1B9VCL0D3713DvTWk8x+TgJanoxquQu+iz8GKdhRfrWCmT9CaHzBaH/tvT9N+Sovh6g4VX6vhVrRgiIiIiIiIiIiJnrv+WNKEXMv9zJfJJd2stBOz/mzk2/lovPdencHptJr5XWumwRGQZGGGIEWq891yc6/mbn5/nwQcfZO/evdx999186UtfIhaLRf+iiIisLQbEMhYAUz8q4ddP/HxJWi5kwL2tQuvxHPwoReIj8ydMFyt7nRcV/+70VZFhfM2/ruP2oWQ5ch+5WKPj9kW780RB04j+bG35Vsfth0v5yH003c6ftzErOvk3nWh1PobXOc5KPbrSen+2GtkmSr3U+drIDXf+mwGM5oodtztW54Xy98wNRB7DsjrPz0kloisGl4LOc5i8RnTKgGV2jmMoH/06qCY7l5icm8t03O6G5/59cCgbHefW7FzH7YeqPZH76It1vkZ/Orel4/ZSI/p10Co7Hbe79SWcL9fsuNlMd349A/TnKx23X9s33nH7q/PrIo8RhJ3nAXtB5+exlH3s+DdPn36j2a7gnfzdfgzDIAxDDMPAKdiktzpU90WfJxERkYuVklNlRRWuThLvs3nh9gKV93W+HJv16MvVy3W+oX3LUDx6wPB9m3ZGttkY73xz8pYnF7ZHtjlSKUS2qTQ732S8ZSAdfVMedRMJYC+hkwFgtt75ZhHgur4jkW1K7tIqz7nh0v7OUWL20p5fPhndAbExHb0qzpHb2jdnVsJg68f68RsB4w937riQE+WvTNB/ewa35HPkHxaw5mbY0aG9ETMYeFea/OVJqodaHH6uSmPq1J1BfUcfp7P3b69n5NkJpnJxXnnvxtMfcwmdhMSiX39BaYmdLLHo41nJ6OMt5eYfwI+4eQd49/DeyDZVL7pjBWBrciayzcuVDZFt7srvWtLx3t2zO7LNgpeObOOGS/uK9UpjNLLNUGxx2Y4Xj+gMBZioRa9q7IfRHT0AfYnoz6Os3blDEqC0xOul78l2J2ujAu6Cj+FBkArxsxAmIDZmkHg5xroRh8AOqV0ZUrsKeMdlvT3d+boLqiaVv41zaLtDLNn5s2Qpr5l1S+gQBfCWcN7fPfBmZJtDP+s9zZaAZr2B/bpNIZ0kf32K2Q0OE9sSNDInfvb6tSb86lKibjNCWMrb40rrhhhFRERERERERFa7xLBN7rIE0z8ua5FHWROCFhz4H/Ns+OU8mc1xNv16L4uv1Ci+3gCt7yciclYqlQoPPfQQr776KjfffDPf/OY3SSa1sreIyMXITh+fC9GY8shdniCzxSEMoLXo4+72MHM+RjLESPuEJbNd/UuFtkVEZBlt+me9xHImzTmP+lgLp8cm3meDiQo8yDHdMg/ynboxZhHpLkpOlRVjp00KVyepHmxS+QVdinJxyF+VoO/mdmLbzJOdVxKS46ykwdC9OdIbHRZfqTP7dIUwKsfOhG0f78MwDaZ+VKa0KzrJOMqR4TQ7DpbYvTlPM748SdIisvyCDASZk++m3dGQ+oYQsxqSesMg85KJWQ+p3Bye0aCFN+ZAaDC/fg2u3JwE70YP72qP6Rd6WbevwcDhFgtDMSa2J6j06DubiIiIiIiIiIicnhEzGH4gR33Cpbjz3PvlRVaTI18rMnh3htxlCQbvzNJ7Q4r9/31+pcMSkbMVhu2HnL2zPH/NZpNf+qVf4umnn+bKK6/ke9/7HtlsdpmDExGRbmFn23OwmvMehauTDLwrQ+1IC8KQ7LY4rR+9rRqkE+DcUcFY2prqIiIiSxIrmMRyJpV9LSYfiS6AJSIiIifS7HJZEYYFg+/OELghkz8sw++tdEQi59/gXRnyVyYpvlZn7tkqfkMDXUsRK1hs+KUChDD27SK1w60TG5hgp0y8WnDC6tQDt2cwTIPSrsayJKbGmz7xVoAZQq7SYiauVVtFulWQhsqNIV4+JPszA9M1KN0ewhIGL7zxGM2fZrGGW3jxNTza4cDktgRTm+P0j7VYt7fBlU+WKfXajG9LMH+K5F8REREREREREZHcpXHslMmRry+2K9mIrDHTj1eI99kkBmPUjrgrHY6InIsQVT8+V2fxWe/7Ph/5yEd47LHH2LZtG4888gi9vb3LH5uIiHSN5FB7GvPCCzX635Wh+Hqd6R8fL/pw7dMGQdnESIQYyUCJqSIisuzCAAzDwM7oQ0ZERORsKDlVLrjURof+29LEchYT3y8SuBqZlrXPPGySvzLO1D+VKb2hlcKXykoYbPjFPKEfMvH9Ek7BIr3ZIWiGBH5IvNem7+YUdtrCbwQUX6tTG3Opj7skR2K4JZ+pfyovSyxX756nf7HJ+ECShXx8WfYpIiursR3CWEjuJwaFhkHlupDYLDSCNIYdYjgh1nALq9cnDKH5bJrWCxmsdS2S71mEhYGVfgrnXWgZzGyMMzPq0DPpMrK3wWXPVlhwfF46ox11yerj3RCjiIiIiIiIiMgqZdjQc22Kyr4mXlnZPrI2bXi4QGIwRnlvg6nHlmcMSkTkYvIP//APfO1rXwPANE1+9Vd/9ZTt1q1bx5e+9KULGJmIiKyU8t4mGAahF2InTRZfqZ+w3XBCrD5/haITEZGLwfr35QHwa+rTlAjdMg/ynboxZhHpKkpOlQtu/UPtL3AHvzRPa06dBnIRCCH2QozaeEuJqWcovTmOnbbw6gGjDxcwTOOkNtWDTaYfr5D6/7P3n2GSZfd95/m9NnxEelPetvcWDddw3SABkCCHIgWAGg1IaVajHc5Qy+Ezu5K4DzFLDKlnnlnOuhdcUZS4GkpDEcMmAJIwbKBhGq670d5Ud5f36TPDm2vOvojqqi4XN8pmRtbv8zzxZFWeE/ecvHHvjWvO//w3+5TuyDByf47myYDUaPcrzs3ZhLUrv2CsZT2GKx0ObC4SupodSWS9aG+FFd9Q+qHFyNdtjG0I0hlMaEHHAiy8WxtgQ/B6ltTDVfy7G1jnH47WN8tiedpnecqjsBQy/npltXskIiIiIiIiIiJrzOSHCjhpm8Vn66vdFZFrYtMvDpGZ9KjubzPzpAJTRQadZQyWBmdekctZf+12+/S/9+7dy969ey9Yb+vWrZfdLxERGSxhNWb5xQbTjxdpLQR0ljWmVERErp+pjxXwh13Ke5rMfa+W/AYRERE5j4JTZVUEtej6BaZGhsxJyB4x5A4bZj9sQ/H6NC0CYB+zsZdsln7aWO2uDJ5TD7Nsz2Lp+QYrrzWxLLBTNrZrEVQj4k63Tv1Ih/kf1sht8xm6M0N1f4vlF5pXJTAV4O1tRUbKbe5/fYEXbx2lUvCvynJFZPUF07D4SYM3b+hsgF2lBQBMBMGbGVo/KkBsYY8EpO65wY/llkV11GPlgfylvc10X2vdIPRRRERERERERGQtGr4nQ2FXmpPfLBNUlGFA1p+pjxXITHrUDrWZeVKT94msCwZlDrlSl7H6Pv/5z/P5z3/+qndFREQG2/A9GfI7Usx+T5PAiIjI9eEP20w9VsIfdmgvBApMlb4MyjjIcw1in0VksCg4Va4bJ22R254CYP771+EELjIU3jKU3jDYwZlfx6lr37TIu9kzNiZtaJ4IkivLWSpvtanunwfTDRJ7R9S6eHB7/VCH+qHOVe9L7Ni8cPso97yxyHtenuOt7SUOb8hz46VPFFmfTAY6W87+neWAf3sTuxTR/F4Re1izc4qIiIiIiIiIiJwru8lj9OEcSy/UqR28+vfnRdaC9mJIfqchNeaCDSgGW0RERETkqkiNuYy9J8/SCw0qe1qr3R0REbkBTH6kQGF3N6CgfrjDyb/TRGQiIiJXQsGpctVZDuS2pRi6PU1q3MOEhjg0eAUHgOZMQP3otX8wXdhrGH7ZUN1tERRh5HmDsSEYViCZXGcOWC0LywUTrnZnBs9aWmetlMszd09w06Eytx4oM7rS5tWbRohtGF9sUWgEzI5nqOa91e6qiFxF7qYOhV9dWO1uDDbDZc2efd0NQh9FRERERERERNYQr2gz9ViRxtEOi881Vrs7ItfM8otNbM9i+N4s0x8ratCiyHpgjDKnXimtPxERuQriP5qEb3Wo/59KxBMj55W/VUkea3q8WupZ3gmdxGU0m37P8tlMPnEZm0rlnuUnK8We5dPF5OuMvNfuWd5OJw8LLyS0M5lOzmC7tzzes7wTZnqWO07yjD8b8r3XZ63d+zMDWOn0/uyj2E5cRj3s3U416J0xp5/P9abiXM/yV5c3JC4jiHr/rVa297YD0Or0HvfYInlcZGx6j9E27d79dPLJSWBKhd73oCKT/Lm+VZ7oWT6eSU7CFJjef0vS/mrnk8+n683e21e7nrwf4Pbe31Kp5EG6SZ/rgepoz/L5SvIxNEk/xw3bTq6T2eRR2J0iKEcc/5syYU0zkMklGJRxkOcaxD6LyEBRcKpcddOPF8ltTdE41mHxp3UsG2zXorMS0ZoLCcrXPuuYWzUUXzc0NsHyA92LDK8ckz+ghwtyfVkVC/cNl3B3uKaCLOXyGdvirR1DLJVS3Pn2Mu9/foZUcObi1FgoOFVERERERERERERE1j3LhemPl4haMTPfqmqAi6x7i882yG1Pkdvu4xZswqoGL4qIiIiIXKn2kEWYhuxsTGMiOYhURETkSti+hWVZLL3YUGCqiIjIVaLgVLmqCjenyG1NEYeG43/Te9aia8VuG8a/FxOnYOmhM7PfOC2DFYPTBEpgYjAtGwxY2RhLCVXlamuA/6SPyRqCh5Jnc5LBMj+a4Y1dhnveXDr9uz07ShzZmFvFXomIiIiIiIiIiIiIXB+jD+bwig5Hn1gm7igyVW4MM39XZsuvjDD+SF7ZU0UGXQxonMiV0ThuERG5GiyLIGPhtla7IyIiciNozYQYYxi5P0f1reSMwiIiIpJMwaly2Q78x3tO/7tY7XDrvhWGqgEnxzO8taNE+yOb2PG5l/pa1tQv7LkqfYr+aiNTPwywAjjyEZ/AseFUtkpvqZuxdey7huX2BHYbLNN90mBsQzgEnYkzr5vHZhPbS1v9BRy2ouRdLTLJTz1cp787+yk3OUVn3Ed7nbC/mcjS6eT2Mk7yuuqnTwDPzG9LrFNr+4l1bhqd76u9lXYmsU41TJ31f6sDQ09amBCWP26IrRRQ66s9WZtS6c5Z/3c7MbuPlmlmbI5syzEznSZ2rNNB771YbvIgHdPnkzy/0Emsk04l73+LtWxf7fUTyL+nMpVYJ93HMQFg3K8m1rmncCSxzgcyh/pqrx+Hw2JinTfb030ty7OuTkrlcae/ATDlTjqxztb8UmKdcpB8XAQoec3EOo8PvZ5Y5y/n7++rvX6+a2ZbhcQ6zy9t6au9KLYT6+RSyfuoY/e3v4/69cQ6m/zkz2857G9/3zm8cNGywO/wcl9L6bJM97XWDUIfRURERERERETWAq9oM3RHhsWfNugsR6vdHZHrprMcE9ZjsluSn0WKyNpmGYNl9GDgSmj9iYjI1eK2DPXk4UYiIiJXLGrErLzWZPjOLJv/3hBHv7xyOtZAJMmgjIM81yD2WUQGi4JT5Yr4nYjdBytsmm1QyXk8e9cYy0OngvSMYfThHF7eJo4MtX1tGseuXfbI7GafqW93CLNWNzA1f3bAyNEP+hSPxDgdg5eKwQZjGew2eIvgL1h4S5B7s1t/hSnyv7CIO6WMl3KJYih918Kpw/Ljhji/2h2Sq218tsWtr3WDAV++b4jysAYgiIiIiIiIiIiIiMiNY+w9ecJGzMorjdXuish1V369ydjDeQo3p5RhQ0RERETkSsUGtwlhVinNRUTk+lj4YR03Y5PfmWLnfzHKzHeq1A8kJ6EQERGRC1NwqlweG7Yeq7HzcAVjweu7hjg2nT0rpZ4TGUbuPZOZK78txYE/Xbwm3Rm6K8PYe3LUx21OPuwRe2ffqEgvxYy9FuJVDW7HYIfn38gwtiFOgRWCHVi4W1o4YwpMlUvnzYM/Z7H80ZhoaLV7I1fb2Fyb21+pMDeZYu8tBQI/OXOiiMgNz5jua60bhD6KiIiIiIiIiKyy9JRHfkeKmW9XMEqaKjeg5ZebjD6YY/ierIJTRQbZoDy7WMu0/kRE5CrwmgYLCBScKiIi19HMt6qMt2KG7siy4fESJ76+Qv2w4gauB69oU7w1gz/sYLsWcccQdwydlZDll5uwli81B/VewiD2WUQGioJT5ZJlN3mMvTePf6DM0ekc+7YVCbyzg7PcIGZ0pUVzJiAz5QHgpG22/+cjhI2Y5Rcb1HrMMOIWbNLjLvkdKQq70pz8u/IF61suTHygQPHmNEsvNFj4z4bJLMbkT8Qs3eISZsCvGDY93SHIWFS32EQpCz8bEKcgToNJQZwC4wKn728YbimsXJ0VJjccp9b9GYyvbj/k6nODmJv3VFgY93njzuJZAfkiIiIiIiIiIiIiIuueBePvzdGaC6juVVCe3KBius/Bpz3sNMSt1e6QiIiIiMjgSi13gyXaQ0oQICIi14+btyndnsEYQ2c5on5MganXnA2j92cZuidL3DG0ZgOiVozt23hZm8JNKQq707QXQkx4KpjSgereNs3j+nxERNYyBadK39yCzfh78+S3p2ic6PDj+yao5j2s2DC21GK43CbbDMm2IvK1ABtoexZLLzao7m3hDzn4Iy7pSY/px0s0TnToLEeYwIADtm3hDTmkxlyc1Nk3GjIbfFJjHk7Kwk5bOCkbr+jgFZ3TdXLbfIa/3D4dX1o6GIENdgidnMXRR33iVLe05OsERa6dcKj705+DzoZV7YpcZaMLHfyO4e1bCgpMFRG5BJbpvta6QeijiIiIiIiIiMhqGrkvS2rM5dhXVla7KyKravHZOps+PcToQ3nmv19b7e6IyOUY1Gwna4nWn4iIXAXplZgwDVFaY7FEROT6Gborg2VZHHlimfZcuNrdWb9sKN2SpnR7Bidj46S6sSXLLzYw0dlVMxs9ijen8UoOlt19r+PblG7JELVimicCmjMBQTkiqEQE1QhznT+6QRkHea5B7LOIDBYFp8pFWS74Iy7+sEN63KN4S5qoFXPyyQq1/W2qn9kOxnDPG0tMLLVo+Tb1rEc573F0OsfCcIoNv/7a6eV1liI40AELirekyW32yUx6WC6YCExsCCoxyy81GXs4d/p9QTWidHuaqBETNmPSY955fW3OBLQXQpYfT9Matol8i/zxCCuGTsGiMWFjXN28kOsjHIGwaEgdtuhs0NnceuK3Y2ILjK3jiYiIiIiIiIiIiIjcWNJTLiP3Z1l6oUFrVgO25MbWmgmJ24bCzpSCU0UGlYJTr5zWn4iIXAWpZUNrWFlTRUTk+spt8TGRUWDqNeJkLLKbfUYfyOEWbGr72wRHYmoH2rTnL7zOm8eDC2ZITU+6ZDf7ZDf6jD6Uw35XTEjYiOmshNT2tam83bruwaoiItKl4FQ5j1e0Kd2ZoXRzGtvvXvQHlYiVV5qU9zSxXYv8dp8HXp6nWA/wQsOrNw9zYiKDF8aUqgFD5TZjS92H1HH77JvRcWCo7GnRXgjJb0+B1Q1M5VSA6rmzYHiFbnbUznKEP+pijKG6r03jSIf2QkhnJYJTTcT/w/Dp963s1uYtq8SCYBTc8mp3RK622akUWw7Vuef5FV65t0Q77SS/SURERERERERERERkwNm+xdRHi7TmQpaeb6x2d0TWhNrBNqVbMzhZm6gRr3Z3REREREQGUmrZsLjNoxmcn7QEYKWZSVxGGPUObq3V0onLiBu9x5sG5VTiMt6s9O6rafceaxaZ5IQJQ5lWz/KMe35Qz7nuKJ7oWT7bLiYuo9zsvU6j+MoDjt9eHO9ZnvGT/9Z6uneUUtK2A9C4yLZ5urzt9ywvJXxmAHOtQs/ypXo2cRntdu9+lvLNxGUszPf+7E0rebyknU/4XNzeE5yMDSVPAPWBqf09y/fXxhKXcaJW6ll++1A1cRlpu/ffOuz3XucFr53Yxnw237O80+z9uQOYTu/tPI6Tjz2lVO/t+OD8aM/yqI99LUo4DrvZ5KjDsNV7GXv//X2n/z328gxD9YD4f9zJ/s1ntofd//CFxHbk4rySw+SHCmSmu9tm7UCbE1+v01mOEt55ca3ZkNZsyNJPu/elnayNV7TxCg5e0SE94TL+/jy5bSlOfL18Oq5k5IEslmOx/FLjvHgWERG5uhS9J6c5OZttnx05azaJqBMTtwyWZzF8b4aR+85c4KzEhrnRDJYxzIxl2HSywa37V7ANtD0bL4ixf2H4Qk3RWQ7xig5RKyYODZZtYdlgORa2Z9FZDjFx9+Qh7hjidkzUNpTfaFI/2A1KFVnLrBiMjrDrTift8NIDw9z54gr3P7PMq/eUqJZOXdwbQ7oVM7TQwIsMzZTD4nDyjU0RkRuC4fRNnzVtEPooIiIiIiIiIrIKJj6Qx/YtZr5a0T0UkVOCcndQnT9k01RwqsjgiYHkMdjSiw59IiJyhZysjdc2NEvKnCoiItfX87eO8YGXZ7npaAUL2Le5d8Cy9ObmbYbvyVK8JU1Yizj5ZIX2fEBQufoXjlEjJmrEtGbOxJNkNnps+rkhhu7MsPJKk9JtaUYfyAFQui1N5c0W5T0tgpXLD5IFBmcc5LkGsc8iMlAUOiWn2Z51OjC1U44IqxFRMyZsxURNQ9SMT7/CRszbf3QnWN364wtNbt+3wsxYmqMb8iyVfCwDN/83r2H7Z9/Nd7M2uW0pKm+3WH65qZvVsi7ZDYiTJ22TAVTPuzz/8Ah3vrTCvT9dZnE8hRMa8tWQVOfsA9o3PrBplXopIiIiIiIiIiIiInJ1DN+TobA7zcknK4RVPdgTeUdmk48xhuasJlYWEREREbkc6bHuEObGUHI2RhERkaup47t8+/5pPvrTk+w6WuHIZI6Or9CaS+UVbYbvzVK8KU3cMSy90GDllQbmOt8uax4PCKoR4+/Nk93kkduSonaozdx3qwzdk6V4c5rhu7M0TnSo7GlRO9DGXGGcqoiInKFvUDktWInY+0fzAOz/D/cm1t85NX/636OnHrhVH40ZsqsMnfp99MQk535vB0Dz1L8duplVozh55qtyOzkD4YjdSKwDcKw6lFhnuZ1NrPOctbWv9paaycvKp9qJdTy7vwf+rpV8tjSeqSXW8e3+zgxbkZdY54WlzYl1Mm7QV3tbCsuJdd4KJhLrFNzkdQ6QcZL7deI91dP/Lt6axn+0wMy3K1T/RX9tyNq3deTs7W7pMcj/NUzMnv8Z1zMOB7flcdwL74vxip/YnpXvb3+Io+TjZ7OZ3F4U9jcDoe0kT59zrJw8g1Qn7O8UZLGVS6zzC9MvJ9aZj1N9tTflJO+zWTu5zjZ/oa/2oj6mY97bnkqs88TK/X21N5pK/p68v3A4sc6R9mhf7b2wnHzsf9bbkVinn+MwwHIneVaAkVQ9sU4/32sAk9lKYp3YJO9b+8v9rc8gTn4Y828Ova+vZfVjMnvxc4UgvLSptCzTfa11g9BHEREREREREZHraew9OYbvybL4fJ3afj3zEHm39IRLWI8574G4iAwEyxgsowcDV0LrT0RErlRqwiX0LYKM0pmLiMgqsG1euHmU97w+z4demOH17UOr3aOBktngseFnisSBYeGZOuU3mtc9KPXdDv+nJUq3Zcht6Y6Z7ixHRC3D4k/qLD1bJ7c9Rem2NFMfLRK9L2bu6Ror+/obm/qOQRkHea5B7LOIDBYFp8pVkT8eE3mArZsEcmMr3JRi4oN5Vl5rUt2rQRrrmbHBiqA9DMTgNqE9YvHW+BALo6nTmaVFRERERERERERERAaODZMfKlDYnWLuB1XKr7VWu0cia4pbsrE9S0HbIoPMmO5LLp/Wn4iIXKH0pEd92NY4KxERWTXLpTSvbx/i1kMr3LV/mZVHsiz8uL9kWTe6iUfztJcijv/NyqoGpb7DhLDySpOVV5pYDmdlRjUx1Pa3qe1v45UcJj6QZ+zhHM1yC+YvvkwREelPf2nSRC7GGPyVGL9mcALY9rU2pf2aGlZuTIXdKSY/XKCyp8X8D5Iz08r60Jy0Of4zHod/0WPmUZeFsbRumIqIiIiIiIiIiIjIwLJc2PAzJQo7U8x8S4GpIhcyfGcGy7JYea252l0RERERERlMFqQnXeqjzmr3REREbnBHpgt88+GNtD2boTuzWC5gg5tTqM3F2L6Fm3foLIdrIjD1XKZHOEtQjlh4po7lWWz6+aHr1icRkfVMmVPlsnnVmOkfhqSqZ2ZC9Oow8UJIfdomzCo4S24chd0pJj9SoPJmi7nvKzD1RuC0wQ7BrWs2WBGRRLHpvta6QeijiIiIiIiIiMg1lJ7ymPxwATdjcfxrZZrHg9XuksialNuSIg4MnUVN3CwysGIDlp4LXBE9VxERkSvgDzs4vk19RMGpIiKyBtg2b2wf4t63Ftn5j8YAsCwLExuaJwMWn63Tml2DUZirwMlYTH6ogGXB8ouDmWW2PR9y8N8v4oxf4hsHZRzkuQaxzyIyUBScKpfEiWJGVtqML7XYNB8QZC2OfdAjzHQDtdJLMX7FEHur3VOR68OqWHhvOEx9NE15T5O57ykw9UYx9FpM5MPCfbpBKiIiIiIiIiIiIiKDzXJh9KEcQ3dmaM2EnPhalaCsoDuRC7LBLdg0ZxS8LSIiIiJyuTJTHiYyNIY09kpERNaGmbEcJ/8/Bxm+K0PUMgTViNxmn8wGj02/METcMbTmQipvtqjtb692d1fN5IeLpCdc5r5fI6jEq92dy2egPav7eyIiV4OCU+XCjMGOwYljUp2YseUWY8stRsptbAP1tMPKboflmx1iv5shNQBa40pfLzcO56BN6mkPHJj/UY2VV5qr3SW5TuyOoXAwZuV2mzitLNEiIonMqddaNwh9FBERERERERG5iuy0RW6rz8i9Wdy8w8KP66y82tR9EpEe0pMulmXRONxZ7a6IyJUwpvuSy6f1JyIiVyA95dFeDKnHPvQ4ta7WMonLymZ7BwhZdvJ3lp3pnQ3Pca88+CYIe4+vra1kE5eRcntPJBWZ5LFsx1pDvfsRpBKXsXVouWd53uv9meTc5KCujNM7YOjtykTiMubjQs/yVic5E0/S3xqme48bPbg4ktjGfDWXWCdJKd+7H5sKK4nLqLf8nuUNk05cRibb+1rZyvXeH0upVmIbE36lZ/lJt5S4jKT1EZvk8fBZu/ffelf+WM/ycpR8fDvoj/Ysr2WTA+uiVO/jm9XHENikffr26ZM9y/tZn68e2dCzPEo4hnYb6l3s+smZT1/+v91+3u/8TshNhypMLLfIpmxym33Cn7E4sSnNgd05sM/0rdVKPq5E7d4TM9z0a88nLmM1pUYdqvvaVN5M3l/XnUEZB3muQeyziAwUBafKaelJl5EHcqTHXXb94DjvPteMbFgqpXlz+xALIykaGY+dU/Or1leR1eYctUl93yPaHtN+b8DK/1uBqTeSzMluAH91mwLyRURERERERERERGQAWVDYlWL8A3lsz6J5PODE1yvKlirSB6/QHUDYqWh/ERlsCk69clp/IiJy+dKTHvXDN27WORERGRwd3+W1m7qB5lm/xdaDDTYdbbLlcJNNR5osjvnsvTVPJ32FoTlxzC1Hy2z7tVEsC4JKzJH/vXeA/PVg2ZAad8lMe+R3pHBzDq05ZRwVEZEzFJwqp00/XsTNOTRPBhx63zAdzyGyLQLXplzwiR1lBxQBsCoWqe95RJtj2u8PQPGJN5z0oqGThyir46KISD8swBqA8Qk6qouIiIiIiIjIepaacCnsSpHd5OOVHGzHorq3xfyPakTNAbh5I7JGxO3u/uJm9ZBQRERERORyOBkLv+SwOKPAFhERGSzGtTm0O8+h3XkmTjbZvq/O2HyHsfklWhmbasZjueRzcGP+rIyq5/I7IdNLDcbKLUqNAD+IsE13/FpkwPIs/NHeGVavtcxGj6E7M2Q3+diuRRwYGsc6HP/bMo2jvTMHr1eDMg7yXBoXKSLXmoJT5bSZb1WZeDRPZtrjlgNlWr5DK+1QzXk0si5tZ3VPcESuuxCsmgVFzjor895wMD60P6DA1BuSMaTnY9qjOlUXERERERERERERkbXPKzlMfDBPdqNPWI+oH+5QfqNJay6kPReudvdEBk79WAdjDNkNPuXXWqvdHRG5XEaZU6+Y1p+IiFym9JQHQGtW16QiIjK45qYzzE1nyJc77HqrRqESMt5sM7HUZuNMkx/cPw62jR3GTC42GV9qUaoGpNtnAlENENoWjZRL4NocGc+T+z+/xa5/MkZnOVqVv8v2LSY/XCC/PUV7IWTx2TrNkwHtxRDiVemSiIiscQpOXWeO/Ont2Nn0Rcu3/f1XLlrWPBlw+M+X8Ycd0lMeXt7GzTts2OIz8fIKR59YueT+jP242Fe9A+WxxDrVZiqxTq2VXAcgn24n1kk5yTc+7D6nvvDd5GWNZ2qJdV6fneqrvXaUHEgcm+SoymrQ3/rsZz3cN3I0sc7tmWN9tffnJx9KrBPFyYGD8638RcsKrxtKr5z6u36xickaCCysEOwmUIxxfZ1hrxf7/td7E+s4M93Pe3K+SWplmdc3DbMwc/7xNmglf7VafWw6ptXfhACpQvLxrFFN3pdtt7/jmdXH/l7KJA/EWKpn+2qvEXiJdaI+5vT5VvWOvtpL28kzMh5ojifW2ZGZ76u9I+2RxDqxSf77Sl6zr/Y+OvRGYp3ZYCixjmf1d9NjVyF5PfSzrJybvJ0D3Fc8nFjnUCv5nKMSXvxc6t2WO8nb8VS6ktxej3O3d7NJ3v8W+9y3+jFTL1y0LKr395mIiIiIiIiIiMgqsqB4S5rxR3KEjZgT3yhTP9yhj9tMItJL1M2emtmY/AxDRERERETOl5n0CKoRYV3j70REZPDVSj4vPdQdC9pqONz95jLTCy0+/oOTp+u8E4ga29BIuazkU8wNpZkbzhCfk2H1JiCoxPjDDmPvzbHwo/p1+1ts32Ljz5XwCg4nvlmmfvDGzJAqIiKXRsGpcp7OcnTWTBtjj+TIbfVXsUci11n0rsBUwP+rzCp2RtaSXD3gtrdWmB1LszDaXzCZiIgwOLOPD0IfRURERERERET6kNnoMf5IntSYS+WtFnM/qGEC3fsQuVri0OBmkicDFpE1LDZoxoYrFGv9iYjI5UlPebRmkieQFxERGTi2zcu3jbJ4ssbIShs77gakLg6lmR3PELo2UTs5ec3Rr6yw5ReHGL4rS9SKWX6hvwQmV2rywwW8gsOxr67QWVqdzK1r2qCMgzzXIPZZRAaKglMlke1bRG19IckNxLGYfRxyBwz5fWDyMeEDAXgGY4P3I594XLO23Wj8TsS9ry3RSju8dvPQandHREREREREREREROQ0J22x4/NjALTmA9LjHs2ZgKNPLNOaC1e5dyLry5ZfGcbLO5T3XJ9BgSJyjZi4+5LLp/UnIiKXwXIgPe4yv7e12l0RERG5Zo5N5zk2nb/s98eNmEP/YYkdvzbKyH256xacmp70KL/RVGCqiIhcEgWn3mhsKOxKYTkWJjTUD3eIOz0CTy1wczaZSQ/bt3rXFVlHglGLlVELpxWTOWaDDfFkjH3UwaraRI90VruLch3lGgEP7lnAig0/vXuUyNVM2CIil8Iy3ddaNwh9FBERERERERE5V36Hz8gDudP/j5qGk39XpnZAzzJErrbUhEtqxKVxvMPc92qr3R0RERERkYGTGnexHIvWrCZSEhER6cUfdcC6fu05aQsnZRHWNBHRxQzKOMhzDWKfRWSwKDh1nbJig7EA6+wzEq/gMPWR4un/V/a2mP129QILgJEHsozef+ZBtldyaM/rhoBcfyaGoOni567/9tcet8gcM3hPpc7uU0FnaTeK4XKb+95coOM7PH/3GO20s9pdEhEREREREREREREBYOTB7vO85okOh/58iWBFM9qLXEtBOcQYQ2aDx9bPjrDwkxr1gwoEFxlIxnRfcvm0/kRE5DJkpjziwNBe1FhUERGRiynsTjH5kQIACz+qX/P2bN9i8qNF4tBQ3d++5u2JiMj6ouDUdeaWt8oMh1Xy9ZDAs3n9lhKLo+nT5UE5YubbFaY+2g1QtS4ym4blWmcFpgK0F3QzQFbH3KtjHP7OZnb/3AGGd5ava9u1Wywyd9exZm38r3f3JZMx4Okhy3pnxYbNs3VuPbjCcjHFy3cMEypjqojI5TGnXmvdIPRRRERERERERARwsjYj92YZujPD/I9rrLzcXO0uidwQ4jYcfWKF8fflSI97TD9eZO77VSp7NGhPRERERKQf6UmP1mxw+vm86/TOzpbNJp9rZ/ygZ3lsktPO3Tlxsme5aydPBvXS7Mae5al0735afaQ164S9Eys4dnK2u9cXpnqWh1Fy8oakdTqaa/Qsv2f0WGIbDr3/lihOHsu3YbT3eNMNueTxqNuyiz3La1GqZ/m+ubHENuKo99+StO0A+E7vbfSNmd6fO0DQSQgriJP3pWyq9wROY9neQXb97K8vVzb3LL8t33t/Bsg6vY8tJztDicvIO62e5UNO77+1EfuJbaSc3mP3t44uJS7jeLnUs/zeqeT9McnbyxM9y5cq2Stuw3GTj2+x3fs4erG4iXebGut9XNhcWOlZvtLOJLZhPnI8sc74+/OYCA7/+dI1z2TqlRw2/EwRJ2sz82SFuK1BdBc1KOMgzzWIfRaRgaLg1HUm1wipjOY4MZXlpv0Vhlc6ZwWnOlmbwu40JjI0jgd4pQtfRJrAUH6jSem2MydIu//JOJW9LUxkiBqG6t4WnWXNvizXXqrUvQjc+9c7eOC/ebG/9zQjJo+0Obo7g7H7uJroxQIzFdP+bAMCC/9v0/hfzhA+1CHeEcEVLl7WGGOYXmiy+0iZbCvi6GSOPTuGsFydmYuIiIiIiIiIiIjIdWZBfkcKN2sTBwZ/2CG72ccfdogDw/wPa6y8qsBUkeupPR9y7MtlLBd2/BejjD2SV3CqyCCKB3VE6RoSa/2JiMglsiAz7bHymq5jRURELia33cdJ2ay83rzmgalu3mbzLw4RNWOOPrFCUFZsiIiIXDoFp64zz987ip1NUyp3sA0Ens34fItUJ2J4pcPEZ0eIOzEnvlHBzdtMPlpg62dH6CyG1I92aM+HBJWIODTMPV0jbMSMPnAmg2px95lA15H7shx9YpnWnDKqyrWVnz4ze9CR723C2WqIsudEhMaG/BFDmAG/bNjxYnfmmpNb0wTpqxQ9mgbShs7PN3Gf9fG+nyLeGxF8UA+b1wVjGF9ucdORCsV6wOxwmhduGaOW8wBw9GBSRERERERERERERK4jy4Xpx0vktpzJohC1Y6r72iy/3KB+sEPc0b1rkdViQlh6scHYQ3mG78mw/JIG2IsMFGO6L7l8Wn8iInKJUuMuTtqmcbR3ZkUREZEb1dBdGcYeyRGHhsVnate8vYkP5olDw9EvryhjqoiIXDYFp65T6XZ31oqb9lcBiC2oZ12Wnq9T3tM6ffIQNWMy0x7pCY+JD+SxLpBhsjkT0JoNKN2eob0QEjXj0w+6g4pmx5Brz03FTN4zx+xLE8y9Ms7mN0JmH3FobrBP1ykciBl//uzZYZo5myBlYUcGDMTuVQpSzUL4oQ5mKMZ90ceev3AGYhkcQ5U2Nx8uM1LpsFT0+fGd46wUU6vdLRGRdcMyBmsABigMQh9FREREREREZJ2zILvRo3R7huxGD2yL43+zQms2BAtMZDB6PCeyZiy/0GTknizD92UVnCoiIiIikiC7ySdqx0qIIiIicg5vyGbDzw7hlxyidszRJ5aJr8NcDl7Bwcs72J6l4NQ+DMo4yHMNYp9FZLAoOHWdmh1P89y9o4SuRdt3CDwLLItt//eTZ9WrH+pQP9Q9c7E9C2/IwSs6WA5YFoT1mMbxAAws/Lh+oaZErovpB7rBqZved5y3Dm5i8ocRxz9uERS7Aaf2BQZiuB3DQ0+u4IbdE6pW1qZecKgXXeolB3IGLhSwagx2B9LHID1jsO6yMaMxzhsuzh6XaEtEdF+As9clno6It2gUyCCxbCjelia/LYWbt3HSNrtfnaeS83jutlEWhtLdA6CIiIiIiIiIiIiIyHVg+xaFXSmym30yGzyclE17IWTpxQbVvW3CWpy8EBFZNcuvNBl9IEduh0/9gDJAiQwMgzJ/XimtPhERuUTZTR7NE4G+Q0RERN5l6M4MY+/NAVB+s8Xcd6vXvE3LhamPFPGHXeLQYHsaNy0iIpdPwanrzJbPv45reZf13jgwtOdD2vMhM1++NbH+WL6fYNWVvtreUlhOrNOJkrNT+k5/QYL9LMu1kx/0F71WX+3ZVvLdFP9C0ZXnyKaCvtrz+uj7SjuTWCf1+KG+2uvHS33V2XTRspEHsow+AM//fpHavnm2fmaY4v/cZO7pGgDVIYfRz4wAUH69ieVZRM2YsBETNbvrIzXqkhl1GRpzcdI20Q9jFp+pU36jhT/sULgpTW6zj1u0cfwzWVk5kiaoRbj57nbTeTIk/lsHb5PF4f/vMuHvalDI1bb/P96TWMf3+5tBL+ic+arLNkPu3rNEvh6wMJyinvUIXZty3mNhOAWWRffy6grugMbJF2gm3cc20+dmFQTJxzPLuXp3dC07eVm3D80k1nmdqb7aK/jtxDpznWJinUqYfMwDaMfJp0bHG6XEOq8tT/fV3s1Ds4l1nD6+Qxbbub7a29PcmFjn7uyRxDqN2O+rvd2ZucQ61SidWGdfe7yv9jwr+bt0Jcgm1mlG/Z1LzdSTt73YJB8TwthOrAPw4fG3Euu8bzR5Od+Zv7mv9vaenLhoWdy4xMuImL6Pa6tqEPooIiIiIiIiIuuKN+Sw6eeHcNIWzZmAlVeaNI51uplSRWQg1Pa3GH0gR2bSVXCqiIiIiMhFWJ5FZtJj/ke11e6KiIjImpHflWLsvTnituHIXy0Tlq/tADYnbTF8b5b8jhRO2ubkN8vUDnU0cUS/BmUc5LkGsc8iMlAUnCoia4JbsBm+OwsGWvMBtYMdTHDmTDdqdc+KJh8tEJQjym+0GL4ny8IzdSzXorAzdbru3A9rFzyJqnImyM0rOQzfnWHigwXGHsljexZRK6Z2sE1nb0RYiYgjGH0gi4mgvRTipC0KO9NkN/rEgWHmyQphVWdrg8DrRGw5UWf7sRqtlM1P7h2nmj8TXKdrKhERERERERERERG5LizIbvTIbfVJT3ikJlw6yxFH/rJMVNczB5FBNPZIHmMMtYMKTBUZKMYoc+qV0voTEZFLkJ32sByLxrH+EnSIiIisd+MfyFO6LY0JDYf/YpmocY0DU7M2Gz9Zws3ZVPe3Kb/WpLPcX2IwERGRXhScKqdZLtiuheVaZGohdgx2ZLBjgx3R/Rkb0qeyUDbvNGArhbtcGSdjMfbePMXd786cl2HppQaLP+lm57VcyG7qBhKuvNqgsxJRvDmN7Vls+ZVh3KyNiaF2qM3is/W+ZvcIyhFz369ReatFetIjKEfUj3bOe2/jyNkPkStvtfFLDrWDbcKaBomsZVZs2H6gzsh8h3wjwFhwZEOe/VsLRE5/WQpFROTqsIzBGoABCoPQRxEREREREREZTF7JoXhzisJNaby8Q1CJaM4ElPe0qO5vnzVhp4gMjtS4S3azT3s+pDWjjMciAyUe1HQna0is9SciIv3LbvUJqhFBWUEwIiIiGz5ZIrfZp7MScvSJZeJrNOeZ5ULptgxDd2Twig5xYDj2lRXaC7qPdTkGZRzkuQaxzyIyWBScus64Qw6UL1Bgg1dw8Icd/CEHf8jFyVqYEIJ692J/+M7s6erbf7CS2Nbem9KEmavUcRl8FtgpCydld3/6FnbKxkl1f3bLusHMQSUiqMbYnsXQ7RmcnE11f4vCzvRZixy+J4Obd8hv97E8i+N/u0LUNmz/ByNYpwKjo0bM8gsNqvvaxJ1LP3FqzYa0Zvs/wW4c6dC45FbkqjKGYi1geqVBphFhbDCWRXzOz1wtYGyhw4nJLEenc8yOpwk8Z7V7LyIiIiIiIiIiIiI3AMsGf8QlPelS2J0mM+URtWOq+9pU3mrRntPgH5H1YOS+7jP2k9+srHJPRERERETWpuEfjkAAxb+0ad1sGP4/jpxVngl7n0uPp2uJbRxvlHqWxyY5CUslSPcsb0fJw63H8/We5Uv1bM/ydpDchm33HiNZb/uJy9g8tNKzfKZaSFwGce/kEEFCecltJjZxV+Zoz/K8205cxv76eM/yRuglLuOllU09y5O2L9PH9pe0jDhOXsbMYu/9IJtrJS5jrNh7Gx5KJ39uYcJnf2txpmf5tvRiYhuB6T0ONGsnbxuB6b2/OX1MZPNGY8MVLWPYSx6NvK3Qe3104uTjRt7rvT5SdvKkAYvt3scvy+p9bEo6dkHiYQU/lZx5ezTfe50+PH4ocRm3Z4/3LN/mLfQsf665PbGNZ24eI7vJo3Giw/GvXijw48rZKasblHpXBse3qO5ts/BMnebxDlFLgYoiInJ1KTh1ndn6S8N0ThiWX2iQ3eqTGnHxhxy8ooPlnArma8cEKxFhI8ZyLXJbUvil7ol6ZznEH+5uFoFrUSu5RK6FHRm8wFAodx+Uv3FPASujh+Y3MsuzyG/1ye9Mkdng4aQufFVgYkPcNkSdmLjdPZnN70jhpGyMMbRmQ2b/tkx7ISQoR4zclwOgdGsaDISNmPrhDssvNQgqMROP5k8Hpi4+W2fpBYWK3hBOBaSGrs32o1U2zzS6x6i8i0U3S6odd2d2sU33/5Fr88btRY6N9nGzTERERERERERERETkCrgFm9zWFOlxl9Soiz/cfTZnYkPjWIeTT1aoH2pjlCBGZF3JbvaJGjFhXdkDRQaOMd2XXD6tPxER6VP6oIUVQusmfXeIiIj4JQfLslj4ce+A8L7Y4A853ZiREZfUqIM/4uIVHOLQUHmzxfJLDcKa7l2JiMi1o+DUdWb+h1Wm3z9CfluKqBXTmgupH+0QrER0ViI6yyFR8/wL/JH7s4w+mKN2sMPwkMPspjSpVozfjrGahtCz6fgWc9Mp7MhQHXIpouDU9cyKDYXdKbKbfFqzAdW9bXLbfLySQ2rUJbvZx3YtmjMByy83ieoxUTsm7pjuz7YhahtMcOEbSpYLGM4ahLH4XIOVV5sX3EbfsfCjOq2ZkKAW0TyePAuODD6/E3HXm8uMrXRnb4psi+Wiz0sPDGHs5BnB6FzjDoqI3IDs6BIfGJlTr7VuEPooIiIiIiIiImuKV3KY+ECe7CafODJ0FkNacwHlN5q0FkI6SyFGj9RE1qXRh7LYrsXiM8mZY0REREREbmSpfRadjRDnVrsnIiIiq6+6t8XwvVmG7sow++3qpb3ZgsKuFNnNfneSxKEzCcyCakRnKaS6r01nMaRxIiBqKCj1qhqUcZDnGsQ+i8hAUXDqOlN5s0372BKpYYfGiQD6OJ/wRx2Kt6ap7m8Td2JMBAduyRF5F86EKeufHRi2P90i89EiYTOmcFOK4XuyeEWHsN4NdF58tk7tQPuyZ1K54EAMQ8/AVIA4MFTeal1WmzJ4vE7Eg68s4Acxz98+ghcadhyp0ko5/QWmiojIVeeEMVOzdQ6sdkdERERERERERFZZdovP9GNFwkbMzLcq1A61FYgqcgMp3pwm7sSsvKrgVJGBpMypV07rT0RE+mB1wF2E2iP63hAREQHoLMdEjZj89hSz9BGcanezrWY2eAzf3R3P35oNaM10J0lsL3aDUuOOvmtFRGR1KDh1HYrqMY16nwGDFkx+qICXd4iaMYWdeWoH2wpMvcEVT4ZkVrrbUFiLcDMeXtHh6JdXaM0oW6lcB8YwUu5w+95l3NDw7N1j1LMeACcmswD4yt4sInLdlCodxpdajKy0KVU7hO0OT1/KAgZlgMcg9FFERERERERE1oTMRo/px4s0jnaY+XZFQakiNyDLtYhauqcoMrDiQU13sobEWn8iIpLMmwULi2BSmdtEREQAvJKDnbKxXYudvz5K/WhAatTBKzgXfoMNlmVhjKG2v82Jb5bpLEbXt9PSNSjjIM81iH0WkYGi4NQblJOxyG1NUbwlTWrUZeXVBsWb0wB0VnSycqNrDjlEHtRfbYENTtrGKzgM353hpIJT5RoauitD6dY02390EjcylPMez98xQiOjrysRkevNMoYHX17AC2PyjZCOa7M05LNn5xDzaQN/sto9FBERERERERFZHdlNHtMfL9E8ETDzZAWj8bUiIiIiIiIiF+TNWkRZQ5xf7Z6IiIisjurreep782Q2N8ndVmXqIwVs16LyVpO4A6lRh8axgM5y88wcStaZ95uoG9/RWQ6J2woyFBGRtUfRPuvM4X97B3Y2ffr/mWbI6HKbbDMk04zINCOyrRA3NhhgoZTi9ekCc+/PgDE4sSF6xMIsJ2dOrdXSiXWC8YvM4HGOcjN5Wc2mn1hnpFTvq71SupVYJ4yT18HPj73YV3sb3eXEOt+p3ZZYx7b6G90w2ygmV/rosZ7FB0799IcdnHQer+AocPkG9vafPJBYpzD6rv3PGIYWA9LNGGNBJ2VTHvaIXQvX7m7HfjOitBjSytrUSi7Gsdj25DKRa3FgqkAl77FUSoFlXXDC2jDsL8PzULGRWCfndxLr9HOcAogyyctqNFLJy6l7fbVXzCUfz/KpdnJ7fRzzAJYbmcQ6e8qTiXUKfnKfADpR8vfIhF9JrLMzPddXe//u8HuvSp/Gsv19Hy13sol1tmaXEutM9Ld5cqJdSqwz7Sd/h2Tt5O0cYKs/n1hnKUp++tDIJZ8DACwFucQ6Q17yMWG5M9pXe/eNHU2s04yS9+X3j+zrq70DzfHEOp7V/a6OV2zMvItViLEmQqx37eLRh0/01d7dty4x/GiBTjli9sUGlTe7xxsfmDQBe/paioiIiIiIiIjIYEtNuAQrEXHH4OZthu/NMnR7hvqRDie/WVZgqoiIyIAyJsboi/yKaP2JiEg/vFmLYMqcFWQjIiJyo5j96iStIznA0D6WZeXHo6TGDOXXm8w9XVvt7omIiFwVCk5db4xhqNxmYr7F+FKLXDMitqCZdmimXZYLPsfHszTSLit5n3bqXZuAZRE5ugMgZxt7JI8/7DDz7QrVff0Fk4nc9GqNqRNtDGfuK0Y2LI/7LE15tDM2t7xQw+uY02X1kosXGGolh0ObCqvWdxGR9SB6OUP8djdq2RoKce5rYm/vnBWk2svIfVlGH8pRO9jm5DeTA8CTWKb7WusutY/GGH74wx/yla98haeffpo333yTRqPB2NgYjzzyCL/xG7/Bhz/84WvTWRERERERERG55iY+mKd0W4aoGRO1YrySQxwY5n9YY+XV5mp3T0RWmYnB0ogLEREREZGLsn0LZwmaN692T0RERK6/zrJL60gOy48o3F2h8twwdjpi/5+sEFY12c8gGpRxkOcaxD6LyGDRo5J15sGXFhkNbVq+zcJomrd3pFgaThE53UiEMOgvk6kIgJOxSI25VN9uUd2rwFTp39SJ7vbywnuHqOcd0s2Ysbk2YzMdbnr5TEbJ8ojLkZsy5MsR+XLIsusxsyU5q6iIiPTm3tMkWHYx8y5mxSV8qhv0b+9ukd3cpnH0wtlvLRfG39sddLnwbJ3lF5Izzd7InnrqKT72sY8BYNs2u3btIpfLsXfvXp544gmeeOIJfud3foff+73fW+WeioiIiIiIiMilmng0T/GWNAvP1nHS3WkY2y+F1Pa3MeEqd05E1oTOYkhmo0fh5hTVt/QsVWTgGAOxRmdeEaP1JyIivWWmPSwsgkkF4IiIyI0lWPaYfWIaMJiOQ+W5YYr3LzP00DJv/T+UwEdERNYXBaeuM7Wcy6EtQywOp8BSFlTpGn4zxFiwcpNzwe0iNepSuDmFm7WJ2oa4HZMa88ht8THG0Dh+4QAWkQtxO92bieUhl0beAduilXM4tj3Lse1ZMp0QN4hpZxxit7s9Vke8sxdSvd69FhFZX6xSjPfpMvFBn+jFDGape9of702z8ZNpynuazH2/Bu8aM5Ce8pj6SAEnYzP73SqVN1tXr0PGDMYAhUvsozGGXbt28Vu/9Vt85jOfYXh4GIBOp8MXvvAF/uAP/oAvfvGLPPzww3zqU5+6Fj0WERERERERkWvgncDU2e9Uqb6tgDMRubDZ71fZ+veGmfxQgfS4y/wP6slvEpG1wxjOelAil24Qnv2IiMiqymzwcPIht0+fuOhw1h8t7ei5jPlWPrGdZuj1LE+7ybNMzdZ6Bwq1guTh1q7dOwi3E/ZOLuO6UWIb9Vq6Z3k6kzzW07d7t2NM8thjP6GvG/PlnuW3Z44ltnGbP9OzvB77ict4ZnFbz/JWwrYDsCHX+2/ZkVvoWZ51kz+T109OJ9ZJ4vm9t/NdI737CRAbu2f5zvx84jIiei/jwfzBnuXjbiWxjRea23qWv1LfnLiMvZXxnuUpJ/m4UfR6j626OT/bs7zkNBPbyGZ7bz8lJznxwBuNDT3L99YmEpfRiXofv5KOs9vGlhLb2FXovY0GCdsnwKjX+97M/blDictI273X+R/svOu836VGXUYfzpEadyE2NE8GpEZdLNfi6Je7f7sFhH8UAwpMHWiDMg7yXIPYZxEZKApOXWf23DSEne198Sk3Fis0jL3avRFgbIvKDhvjnLl54OZsNv3CEFE7JihHeEMWTsomrMXMfrdK43iHsKqZy6Q3yxhylZDhhQ6bDjWJbHjrzgLGPv9GVZC2CdLJF4kiItIfEwLzDjRswsUU8byLqXSPs86ODu7765iyQ3zQJ551oW1TujWDm3OY+XYFExpGH8wxdHeG1kzI8b9ZIajou78fDz30EHv27MF1z76s8n2f3//93+ell17i61//On/8x3+s4FQRERERERGRATH2nlw3MPWpKtW9CkwVkYsLKzEH/v0iW355hNLtGZozIbV9Om6IiIiIiLwjs9HD39BWnhUREVl3vCEHy4aoGbPll4cJ6xErrzaxfYv0hEscGBaerhHVNQ5PBo8xhh/+8Id85Stf4emnn+bNN9+k0WgwNjbGI488wm/8xm/w4Q9/eLW7KSJriIJTRdY5t3lmpouJl0ImXoLYhehzI0TNGDdvY3sWB//DMnFLs2JIn4xhernBpoUa2XZIuhPhxobYgrnpFId3Z2lnes+UJCIiV4d5JgN7UgCcOy9l9GqG6NXMee/pLIekJ1y2/L1holaMP+Ky8JM6K680r8kk4Vbcfa11l9rHYrHYs/yxxx7j61//Om+//fYV9EpERERERERErqfCTWnKrzUVmCoifTEhHP6LJXb+2hgT788rOFVkkMQD8vBiLTNafyIicnH+iEN6zCO9bWW1uyIiInLVpCddpn+mhJs5O0nP7PdqNI4kZ0qWwTYo4yDPdal9fuqpp/jYxz4GgG3b7Nq1i1wux969e3niiSd44okn+J3f+R1+7/d+7xr0VkQGkYJTRdYxrxIz/eOQMAVHP+rjVw1O+9Tr3zVwMhZh06b1alOBqdKbMaSCCDcyZDoh22crTJRbLBZSzJUytHyXzoaYatE9KzOviIhce9b9LYwFlG1s22BCC0IgtDBtGxrnZ6sOajHHv1Zm6qNFnIzF8b9eoTUTXve+r3etVguATOb8AGERERERERERWXu8koOTsggqAzi6RERWTwTlPU2G78wyfE+G5Zeaq90jEREREZFVN3RHhqAWkd6u82MREVkfotBiwydKhNWY2aeq+MMOxVvSLD5XV2CqrCvGGHbt2sVv/dZv8ZnPfIbh4WEAOp0OX/jCF/iDP/gDvvjFL/Lwww/zqU99apV7KyJrgYJTRVZRbSVDbSXD6IbyVV3u5DMBxSPdgROdvMXxD3mEOYsw966gwWfrV7VNWd/e89Yso9UzMz03fIfndo0zN5w9/bvCsLYpEZHVYKUN1nu7D3M869zcqV3GQHzQJ/xBjqgKyy81CKsxx768ch17emMxxvClL30JgPe9732r3BsRERERkbWheHOakQezeHmHoBZx6D8sgebME5E1wh912PjJIYJKROWt1mp3R0QGzMKP6xR2pRl9OIeTsVj4cWO1uyQiSYxBFyRXyGj9iYjIhdm+RWF3mqUXG1jOavdGRETk6lg5UcRJ2Rz76gqdxYjGUVh5RZMwyPrz0EMPsWfPHlz37HAz3/f5/d//fV566SW+/vWv88d//McKThURQMGpItdcp+7x3E9uo1lLEXRcHDfCsg2VxTy1lTOBfamtTTBgFyJMxyJc9Ch9dAlvPLjkNs27buis3OTQKZ6fMU2kbzanA1N/fMskbdehnnbBUoZUEZFBYGo24Q9zxEd87G1tDvybGlHzOmf/MGYwBiic6mOlUjnr16lUilQqdUmL+uM//mNefPFFfN/nn/2zf3a1eigiIiIiMrBSEy6THy7QnA3w8g5e3sH2LOLOAFwriMi6l55y2fCzJYJyxPGvlXVsEpFLF8Ph/7TIlr83wvDdOQq70hz9qxXCmjIxi6xVJo4xlvbRK2GM1p+IiFxYetLF9ixq+9vJlUVEBtk7p8Qapn1D6DQ8AKK6roVuWIMyDvJcl9jnYrHYs/yxxx7j61//Om+//faV9EpE1hEFp64zW3/9NVzLu+LlHPzzuxLrhJ0zm48XRAxXOwzVOqQ6EelOxPhKi45n8cKDwzRzvTe1XDo5lX0YXb0z99gkB9WNpJJns32mujOxTvDdHPHe9Hm/z+6qMf7eGeK2TWNfnvnvdiNK/REPv9RdX/v+r0UWfvTubJSV85bzDidrk93o4Y+4eMUm7OwGUDh/VIYXNDOvXL7shu4xpb0UsuV/fgu34JDb4gNQP9IhasR0ViLcvxoFJ3nfyrrJ+/vr8VRinSDsb1q9kU8ln/iWfjCaWOe94wf6aq/kJs+CdKA5lljnaH24r/beP7q/jz4lHwMasd9Xey9XNifWmW0WEuv0sx0AtB9dSqwTv5b8/fCTSvLxGmAsk5wBuBkmf8/eVJzrq72LZbl8t/cV9ibWeap8a1/tuX3ElJejTGKdtBX21V7RTs4wkbOTH0Rs9hb7aq8eJwcPPltP3hYeHj7UV3t2HwMW9jUmEut8/fahvtqDS5+wwi3YbP/V7vFk+aUG5T9vMflogfSEy4F/v3jmBqmcZfPms491v/u7v8sXvvCFvt//wgsv8Ju/+ZsAfPGLX2Tnzv6OQSIiIiIi65U/6jD1ke79gvTEmXvFxVvTrLysGaVFZHVlN3tMP16iNR9w8usV4mAAB5aIyJoQt+DQny0x9t4cQ3dm2PxLwxz8//V3f1tEREREZL2wHBi6K0vYiAnKyeNiREQGWf57Nv4xm+qjEcGWy7uv+M6cL5YCXNeshcNDzO0bIT4Vy5Aa92gc7W8MrMh61Gp1xwZnMsnjjUXkxqDg1HXGyViQHAdyxdKtkOJCm5Fqm+FKm0LzwkEqfmBw4hv7Ib77vjql3Su0Z1OEFY+46dCeTdE4mKX04DL+aED+1hqv/PMzwVxbPzuCX3JwswlXGhYM352hsDtNarS7OweViKASsfJqg/rRgMYRnfzKlSne0g2uTo24bPzUECY2tJdCMDDxwTzWOxlU/8LQ3GRYfMTqLwJORESuuagZ0zjeIbvRZ/ieLMP3nMna7vgWUes6naeZU6+17lQfjx49etbsX5eSNfXgwYN86lOfotVq8bnPfY7f/u3fvtq9FBEREREZOLmtKfyh7v3Lypstlp5v4A85tOb6m/xIRORaye9MMfWRAvWjHWaerGA0ZlZEroKFH9Xx8g657f1NDCoiq8QMysOLNWwQs8WIiMg1N/VYkcy0x4mvl1e7KyKyjoSBzfzhYWYPjjK7MELUcIkaDpZtsNMxdjoid1ON/G3V69qvqAQcg8L3HMqfCImS86ScxcRw5C83E9ZdNn7yOH4pwPIMlobgroqg5XDyjQ20qmkcL8LxIhorGY69OkWm1KRV6Y6nzm5UcOoNa1BvJVzFPhtj+NKXvgTA+973vqu3YBEZaApOXWe2fW6UeMVi/kc1WjNXf2BPvhZw69tlhisXz9xVzbicGMuyMJwhGI8x9o19hmx5kN3RILvjTObCxafGqL1ZIFj2sf0Yt9Ad7eDkbEbuyeD43XXmJASnjj6QZeT+HPWjHZZerNA81rl+QSZyw1h4pk79cIewHhNUI8JafOYk1QInbZHbmqL09wukT0Bxj6Fy542934uIXCvj789jQsPCT5Kz/AKYEI7/dRnLBa/gMHxvluJNaZondM7QS7FYPCs4tV8zMzM89thjnDx5kk9+8pP86Z/+6ZlJHEREREREbmDLLzZoz3XvKTeOdX+GtXg1uyQiQm6bz9RHC1T3tZn9bhV0WBKRq0m3BUVERETkBvCRV8+MXTAGVn44TO3lFGOfmmXrbzYBCIzTcxnLrd4Ztxrt5ElfsqneAULD6WbiMm4emutZPpmqJC7jeGuoZ/kLM5t6lm8sJQf0Hk8ob7W9xGXsXRjrWR5FyekbU37v8cmLrVzP8rdb04ltnAiGe5YfbY0kLsO1e9/wKaaSswGtdHpvo8+0tvUsTznJY7nTqYuPyYb+YorGC73HEm3JLScuY0tqqWd5NUr30ZPe/t3NWy/5PcVb04w+lMPN2HTKEe2FgLAREjUCLLs7htUtOLRPjHPoXxeYfSo5QNXmaM/y3p/IKT8cpnlvjN2A1EGb/Pccyv/ZmdnvfnR37+PXx19rUduXozWTwXJjDv/5NgCcXMjQfSuU7i6zKzXTcxkTzpUH4zbj5ONsO+odclLweu9L1SB523Ht3jMHFu3kY/nz9/Y+fj3PjouWpSdcpn+mhO1bhNUIO23jZrrLm/1elcqeFvmdAUN3ZqgdUmCqDKZK5ezzmVQqdUmJOwD++I//mBdffBHf9/ln/+yfXcXeicggU3DqOjP7vSrjdxeZ+liRI3+xTNy5vKCD8YUWuw5WqeQ9Ytti88kGsQW2gdC2MHSfp5VzHk5saKRdyjmfmdEM1azHO1O2ZOz21fvj1pHamwWILRa+MQnA5n9yEMuGDY8XSU96tJdC5n5Qo3bg7PXnjzj4wy5ewcYrOhR2d0/Wo0ZMbZ/WtVwbYTWmWr3I9mUgahoqb7YIPlJi+Mcx6RNQufP69lFE5EbgDzsM3dG94R21Y5ZfTL7h9o7UmMv4e/OkJzyqe1vM/7B2rbp5QZYxWAMwe/aV9HFpaYnHHnuM/fv38+ijj/KlL30Jz0t+6CMiIiIickMwZ4JSRUTWgtSEy9RHi9QOdvoarCYicqnSky5GSeJF1rbYgLX2n12saQPw7EdEBpudsshMe6SnPDKTHqlxF9u1WHimdknPy+XaMzEsf2+U+hsFhj6wSGarPh8RuXKpcZeJ9+dJT3pU3mqx9GKDYOXCAYxOzia/LYUJrvM5qgWNB2NSB22cuoXVBnMJcV6NQzn80TbTv3iC5tEMGIvKGwWWfjJC4fYKvGtZzXIKNxXipXsHccrlGX9/Hjdrc+DfLxI1uoHt2S0+neWQsNr9f21/m9p+jde/kQ3KOMhzvdPnzZs3n/X73/3d3+ULX/hC38t54YUX+M3f/E0AvvjFL7Jz586r1kcRGWwKTl1navvaRItVtn1mhNw2n+rb/Z0AuQWboTsypMZd3JyD/1p3hpxC/cwTs7d3Ftl2tEa6HRM6Fq/tGObEeO/ZjeTCNnzuKO2ZNIvfmgBg8alxhu6G9GQ3gKE9H5Iac8ls8HB8Czttk55wcVLdGViidkxQiagf6dBZCinvSZ69SeR6CPMW6ZOm+xDqcjLFGbB0b1JE5DTLheG7s+R3pkiNuHTKIa3ZkLGH83hFh7nv9QgytSG/PcXQHRky0x6tuYCjX16mNaMRUVdbrVbjE5/4BK+99hoPPvggf/3Xf00m03vmTBERERERERFZHV7RZsPPlmgvhMw+lZz1RETkUuS2ekx+pIiTsll+pbHa3RGRXoxBqdOv0AAOyBWR1WH7FnbKws3ZuDmHwq4U/ogDWHSWQypvtqifykDmDzs4aZv8rhSlW9NYtkVQi2jNBNQOthl/b56xh7sTM889XTsdPCKra/l7o9T35Bn56Dy5W3pnbxQRSWKnLMYeylG8LU1nMeprvJPtWZjYELWv/znquxNEW81LC071SgH1/TmaxzLkdtWxLEhNtDn6Hzcz+7Upxh5u0Gl4zLw9ytzeUTbcPscdP7Pv6v8RQnqiO4bfelfy1cYRZUiV9eXo0aMUi8XT/7+UrKkHDx7kU5/6FK1Wi8997nP89m//9rXooogMKAWnrjPTnyiSKXSzaTZPXngmesuG3PYUnaUQy7Mo3ZqmeFOaqGNoHuvQngvZ87kNpDox0zNNjmzKUil4PPzCIm5k2L81z8EteTqRMkFdLm8oJKyduVCK2zat2Q6tuQDs7ky6lm0RtWPijiFuG1ZeadI8GdBeCC87I67ItRaWwGmD3YQ427uuswTOsoUVgV23yLx25oou+76QRuHafUWlJlzGHs6x+FxdQVoDyE5bZCY86rrwl3WueEua0Qez2Cmb2r42i8/WaRztYCJoHOsw9ZEiUSNm5dUmlmvhZG3cjI2bs0lPeWQ3+bhZm8aJDif/rkztgPaZa6HdbvPpT3+aZ555httvv51vfOMbFAqF1e6WiIiIiIiIiFyAk7bY8MkScSvmxDfKGCUZEJGrbOqxEpYD8z+usfKyZmQVEbmYr33ta/zhH/4hL7zwAu12m5tvvplf+7Vf47/+r/9rbNtOXoCIDAQ3bzP6YI7CrhSWc2aS++ZMQP1Qh/SkR35bivy28wfFR+2YhWfq1Pa3CWtnAlAbRztkNniM3J9j+z8YIazHhNWIoBpTO9CmfljPxa+39oxP/Y08Q+9fVmCqiFyx4i1pxh7OgQ3zP6xTfr0JfQyZDlYilp5vMPpgjsy0x8qrDZoz4fWfxOASh70W7yrTOplm7htT5HZXmfz4HN5QwNSnTjL3zUl++qU7AMiN1knlAhor6WvQaSne2l2vK682zjrvEFlvisXiWcGp/ZqZmeGxxx7j5MmTfPKTn+RP//RPsS4niZWIrFsKTl1nstM+vt/9WAs7U9QPd+gsn3mynt3sMfZIntTImY8+bHRv5JTfaGJCsByo/2OXctHCC2Jue7tCM23jRt2zey+MiR0L+nxgn2p2K7YzTkLNG0tmU4vcrRXqe4qM/+wsr/6LPEefWFntbolcMq9o4w255PYYcvsNsQsmIXbdmYfSNy78FRQOGdqZq/uwafThHCP3Zuksh6y83mT0gRxO2iZqGWZmNDP+oBm5P8vwnVnKe5q9s0aKDDAnYzH5oQLN2YCZL68QVs++6VV9u42XrzP6UI6R+8/OZG9iQ3sxpPJ2i+pbrbPOBVeNMYMxe/Yl9jGKIj7zmc/w1FNPsXPnTp588klGRkauUedERERERERE5EpYLkz/TAnbszn6V8vEq5BFQUTWv+reFqVbMzhpDc4SWetMbDCWzgeuhLnMZz//6l/9K/75P//nAOzYsYN8Ps/LL7/Mf/vf/rd861vf4q/+6q8UoCoywFLjLqVb03SWI8bflwdg/kc1gnKE5VoE5YiwHjH1sSKZKY+wEeNmz97nD/35EmEtwlxgvvnOckRnOaK6r01+m0/x5jSZDT4ZoHhzmv3/dmFVEj9YnkVqxCG72cfJ2FT3tmnNXDi5yHoSt22WvjWOP9Ehf4fGYInI5UuNu0y8P0960qPyVouFn9SImpd2PF96vkFzJmD0oRzTj5eA7nl/HHSTBMUdQ9Q5kzQo7hjiTkzUMZjI4KRsnLSNk7ZwMja2b9GaD6kf7tA41oE+YhbNJUZmOOmY6U+fpPJ6gYXvTNC+d4XURIfsliZbf/0QG1orOH5M+WSel796C9vfc/TSGpBElgNDd2SoHWgz/0NNsiAJBmUc5LmuoM9LS0s89thj7N+/n0cffZQvfelLeJ6S3InI2RScus4c/vMliltz5Lb6jNyfY+w93Rs8C8/Wye/wSY95NGcCjvzvyzhpizg0tOZCLBsKu9Pkd6TIbvDY9dMFANq+jRMb2r5DZNtkWyHlwqV9mdz702UyrZilUZ89txfopBSkChBWHTpzKSw3Bj2blAFkuTDxaIHi7u6MQeZVQ2sClt5nYbzeG3U0AvWHIjKv2tjNbt3aByI627onv9H8pT1osiODG8ZEjkXkWHDObCzp8e7XnT/sMvH+M9nsmic0W+IgSE+6pCc9nIxNaswlt9nv/n5cFzeyDhiwfQssTg+IdLI2o/dnMcYw82QFO2Xh5Gyi+tl3OJdeaFA72MYrOZjQEDZjokZM1DJ9zRgoV+4v/uIv+PKXvwyAbdv88i//8gXrTU9P86Uvfek69kxERERE5Hy5rT6jD+cIyhHzP6qx8zsXvk97c3bmost4vb7xgr/f/2DrqvRRRORacbI2048XSY26HPvq+ROBiYhcLXPfq5Hb4jN8T5bq/g6dhQtEVIiI3MB+/OMf8y/+xb/Atm3+7M/+jM9+9rMAvPzyy3z84x/nq1/9Kn/4h3/Ib//2b69yT0WkJwtSoy7pKZfMpIc/6uKcmojePWdC+saJDiuvnJ1RfvjeDNmNPmE9or0Y4m45kzl137+ex/RxyRa3DZlpn8wG//TvolaMnbJw8zZBOcJc5XmcMxs8pj5awPZtLBdMCCYy2J51OjNs1OoGPQ3dnqHydov5p2vEwfp7gG/7FsWb08z8b8OY0GLsU7NYGhYqIpfBTlmMPpSjdFuazmLE0S8v05q5/Gvp5vGAY3+1gluwSZ36fnJSFrZvYfv2qZ8WXsHu/v9UmeVYxO2YqGmIWjFRKyasQ26zz9DtGTrliPmnqzSOXWDigXcd/9w5i2DL2cd9ywZ/xKV4S3ecfliPKL/eIg6q2N6p8WLp7pdfUPZw8qe+wAwELZejL41z5MVpJm9aZNNdF3+GIxdn+9ZZk1dYLmz+hWHiTow35OKkLRafU2CqyLlqtRqf+MQneO2113jwwQf567/+azKZzGp3S0TWIAWnrjNhPaayp0VlTwvLgQ2fKJHd6DP2UI7agTbHf7Jy3olx8ZY0ow/lcNIWzRMBtQNtCqeCzVoph2fvHaWZufxNJfBtMq2YkcUOO/fW2XN7ASwLvxXRSdnnBZHdCJqHMsz/3SS2HzPxczPY7vq7ASXrk5O22PYPRrHd7n4bd2Jmv1OlcayD9zdjYPe5PzvQvtngnTD4x7rv8Y5aBBsMxk94L5CuR2w50qBYDsjVQ/x33cSNbAg8m45vE9sW6f9siPREN4ix8maL+Z/UyEx7bPh4iYkPFCjdnsH+mkXl/YaoeGnrQ66xGCY/UqB4U/q8oqgTs/ATZU2VAbViYR9xsWYcrFmHnb/enUwkqER0ViIy0x62ZxEHhk2/MISXd4hDw9x3q1T3tc9a1Duzwq55hr5mD1x1l3hK1m6f+Tz27t3L3r17L1hv69atV9IrEREREZErlt3sM/VYkdZsQGrUZfMvDmMONmFDiJXqngibGDjhslAeJay7ONmQ4TtWcLMDcM0hInIxFpRuSzP6YI44NBz76xXa8woUE5Fr6+hXVtj2mRE2farEgT9dXO3uiMjFmJjBeHixhvUTPXaOL37xixhj+C//y//ydGAqwN13380f/uEf8qu/+qv8q3/1r/jN3/xNZWIRuQQbPlXCNS5x2xC1T2WBa5/KCtfuZoTrlsVE9fj07vtOMGFiEKdFN7AnbZOecBl9MIdXcIgjQ3s+pHk8IGzGpzJJQWVvG7/kYKcsGkfPnzh+5dUmYw/ncXPdDhz/WhliA5Z1SYeWzKazjxNO2mb7r44CdJN2zAY0TwaE1ZiwERHWYjor0WVN9pzZ6LHp54YAWHim3g2EdS0sB+Kgu97DakRrLgQDhZtTjL8vj5srsvhcg9w2n2AlojUfdANnB/jS1M3ZbPz5Iby8TWpDndLDK7ilAf6DRGRVeCWH/I4Uw3dlwIb5H9Ypv968ahPyh9WYsHp1kpekxlzG35dn6rEiB/9sCXPupAMW1B+MyD3nUPieQ/WDEcHWbp30hMuGny3hZGzCZkz17RZeyWHi0TxH/jSLP9ahdfxMoNfcN6fOWvQRwPFDdn/wMNseOH4jDrm/Im7eZvLDBbIbfdpLIa2ZAG/IwSt0XwBhI+boX+m+sfRpUMZBnusyjq3tdptPf/rTPPPMM9x+++184xvfoFAoJL9RRG5ICk5dx0wEJ75exh9y6SyHF7yJVLwlzeSHul8SSy82WHymDhbs+ZWNtFI2rfQVbCLGMHmyRbHSPVkzwNTJFvlqNzg2X4topWyefe/I5bexRpiWBZ1u1jN8Q3zUI/xJDueOJs5tbYKGR+tYmmDFp3U8TbCQIrOtzthj89ipQTxDkRvZO4GpAK2FkDiImfhgHvfbhjhliNIQpyBOW0QpiE/93zhgBeDXLZyqhV0Bd/HMslKHbFKHbJZ+tfcF3vY362w81CTwLJaHfZZHsrQyDoFr40QGvxPjd2K8IMaODdZCSP1wh9qB9ukArrGHcmfaHXFhie4Nclk7Isj/yCL9rsDU9mJIcyagNRtQP9w5nWVSZJDYP/VxXnnXzK13dVj+1x2yW3yyG3y84pmp9CwXmocCZl6vMPlogeIt6fOCU2V1ff7zn+fzn//8andDRERERKSn/M4U048VaRzvcOJrZWzPYvrjJdxv58A1mF0dcA0c8aDisJjK4OUDgorH8ksjjNy3yMg9y5pgT0QGTnrSZfwDedJjHuU9TRafqRO1dCwTkWsvrMQsPltn7D15pj9e5OQ3K6vdJRG5ABMbjKVzgythLvEZe6VS4Vvf+hYA/+gf/aPzyn/5l3+Zf/pP/ymLi4t85zvf4fHHH78q/RS5EQTlECfn4mRt/OEzWeCclH1e3bARs/JKg+KtGfySg4kM7YWQ+pEOhZvSWA5EzRgTdSexd9I2Tvrs5dQOtJn5doX2XHjRYNJm/eJj4kwIB/50ASdjX3awKMChP1siNeoy8mCW1mwIFgTliLAekR73yGz0KN2Wwc2e6X/Uimkc69CaDanubxM1eo/dS0+5TLy/QGrMpbMSUjvYYfnFRmLfqm+1ieoxGz81RHajTxwYLAcs28LEhubJgNrBDo0jbYLK2hk/6BVtirdksH2Lldca2L5NZsrDzdt4eQe3YOOVHOK24dCfL/HBH1VXu8siMiCMgWjJZeSBLPntKVKjLnFgqO5rsfhsnai5ds/NOyshJjJYroXFhb+22jcZ3MWY1AGbwvcdjGtobfUZujODk7E5+uVl2gvh6ckJvKLNPX9oUdubP72MsY/M4WTOHuy/bWiOwngd21m762ctG7orQ2rMZe4HNUq3pclMe7QXQuJ29/xn8bl6d1yxVq/IWaIo4jOf+QxPPfUUO3fu5Mknn2RkZPBjfkTk2lFw6jpnQmgvXDzQy3nXjZfSbelucKqB4X/yZuKy3/5391+0rFDvcPvhZUarbZaGfVaGPI5tylKohmw83iByLPK17gl0ZBxsK7jost6xaaicWGepmU2sA+BayTd03liYTKwz//MrWC7s/PUxrAtkjIyeyxE9l+MEI5jIEFQi2gsh1QNl6oc68H/JXWCpImtX1DLs/aN5bM+idHuakQdzZDd0g6yarwXEnRg3beNkujembe9C0zQ55/0masa0l7sXfIsfrDBlli/Yvu1bbPr1McpvNpl/unY66N479XpHcOoFcKHcmgvP1NnwMyWidszc0zVm/6eNhJYNPcYGbM/1N7P1U3cm79cfeXUhsc6OTHIdgKydPLvXbn8msU7M+Q8kLre9k9mhxDp3ZY9c8PftqsfJVyeYeXWcTv1UAJ8bU/zoMqkdrQu+55uztyW2V/Av/N5z3T10LLHOrekTiXX+48zDfbU3mqon1nmtuamvZfXVnpfc3g5/PrFOwW721d4uL3nAzbiTSqyTsvqbFbkcJ++nU27y+cR81N/sTpFJ3m/O3WcaN2U4tm8jTiqis+KTOWqwHshhWd0bmUElJqhEtGYDGscDokaMnbLwhhzqx67ObH6rwTIGawAmARiEPoqIiIiIXKrUiEMcGI7/TRkMRJHh2FdWuOk7KcybPhzyug/dxyKsDze4aUt35u2w4TD/43HmfzJOeU+JqQ/PwPBq/zUiIv0ZeSDL6AM5WnMBR55Ypj2nWe9F5PpafqlJfkeK3Daf3A6f+oHBvb8rInK1vPjii3Q6HdLpNPfdd9955Z7n8eCDD/Ltb3+bZ555RsGpIpdg/uk6rnWB8w2rO9bmnUBVJ20xdFeWsffkqR9ps/RCHduxKNyUZvTBHI0THZonAtyMjeVYtFoxUSsmaplTP2PCekxYvfJgyu4yk1K2Jmsvhpz8xvljE1ozISuvnhrbYIObtfGKDpkNHtnNPqPbUozcn2XmqWo3u+upR8VeySGsdzObTn64QPHmNM3ZgGNfXaF5InmM47s1jgXEkcF2LGafqtA4HuAPO6RGXXLbfMYfyWG9P08cGDorIc0TAcsvNVYlQMv2Lcbfl6d4c5qoHeOkbIbu6GbyiwNDUO1mnm3PdwN0q2+3CGtxX+OkktS+3HvcSKudPGYkjHuP34gSygHyXu/Jwm/NJY+58TK9t+n2eO8h2/eWLjye6t2+3L67Z3lsktMqxnHvOrlM8sTpjt17O824vfeXZ5e3JbZRD/ye5aPp5M9kpZXpWZ5yk+8ZpZzedXYUeo/zK7rJ49aStuGhVPJYrY3plZ7lw14fgfVRumf5j+7u/ZlckA1Dd2Qo3Z7GL7kM3RlTP9Rh8bk6jaOd5Ozda0BuW4rsJp+ZpyrE78qauvi+s8e5LgLZTR4bPzWEFVps+NnS6bLUqIuJOX2fMqjEPPePYePPdzOjHnlimb1/ZHFuaMcP2NCzb//DgeeT+2/33qdH+hhTmE713qdTdu/yt8OpnuUAc63eY/Y2Zy88rviiLPCHXcJ6TPm1JuXX+hvzKNLLoIyDPNel9vkv/uIv+PKXvwyAbdv88i//8gXrTU9P86UvfelKuyci64CCU28gdsoiNepiexZxpzsTl1ewMcbQWYyY+/6lzWLlhjGjlRb5ZoAXxXhh91VoBuRbIfWUywv3DrM80r154IQxgWczN5FmZKl7M+ztm4rETvLF8FpmQqjua1O86fyLsvrhNqkxl/IbLZZfagzERZRIP+LAsPxSE2Ng/JE8cWiY/U6Vwu4Uow/kaC+GBOWA7KYL34xozQc0jgWE1YigEtE8GfS1f4y9p3tDs37wym5K1A91OP61MpMfLjD5aAFrX5vKhAsGvLbBa8d4LUNhoTur4tJGjzhnYxfP3FyPTniYwMLdqsEEV0PQdNn/nS3MvTWK7cTEYTeI2S6EFD++hDd+aTf4Rdaq7IYmN/3jfQDUj2Y59rWNrLzSZOmF+umZ8c4Vtw2WZZEa1qm7iIiIiIhcutrhDiP35xh9MMfis2cGGFiFGOvBFjx49sAY69TtWjcbMf3RGUbuWeLkt6c48sRWLM+AZ2AohooNkxHmg/1NCCUicr2MPpRl5L4cC8/UWX6poVnvRWTVHPvqCjs+P8bUR4ocPLZArEdKImuLiYG1k6luIF0sXeJF7N27F4AtW7bguhd+7rVjxw6+/e1vn64rIlfIdJ83x21zOqC0cayMP+rQWTwz8Ka8p0V6wqU1H67PQ2MMYS0mrMU0TwQs/bSBnbKYfqzIxk+UiDtx9283kN3kE7VjVl5r4g93M8se/8rKpR7yTlt+qcHQnRlqhzsQQ2s2pDUbUn6jhe1ZpKc9/CGH1IhL8eY02U0+J75RvioBwL1Ydvcw7pUc8jt8hu7IYLkWc9+vUnmrxc5/1E3WMfNUheretq6tReSyeEMO048V8Ycdqm+3mX+6RuNEMHDfNUElIg4NEx8sULo9Q2cppLMcEax0f29iwHR/hs2Yw/9pidGHcuS3nwm+n/hAN/By/79dIO6cOaiG1Rh3yjl9XO5XesqlsDvNkbcn2bx79vSzHQEsyEx7FHanyG32Ofmt5AQbInK2dvtMUPvevXsveo2+devW69UlEVnjNML9BpEac9ny986f1j5sxCz8qM7Ka83zbiD4ow7+kIubtXEyVjcTYsY+9X+bXc8fwwI6jk3gnno5NgulNG9uTlPNeoxETTYdrTO62GFkqc07kyXVsw6Ht2RZHE3OljYIZp+qUj/YZvrjJepHOmBB1IpZ+FFtVWYyE7leVl5t0poJ6JQj4pYhfWp2t9Toma+X9lLI7LereEMOtgutue6Feb9s3yK3zSdqxBRuTrP0fJ364St/et840uHwny8xfFeG0ZzN1LtmrA58izBl0Sg6WAam327T3DOKlY+w0jFYEM93Z+Vz/vE81vnJYOUSNMs+b3x1N+2qz6b7Zlg+XKK+kGXD3bO0H4iwfR1HZX3KbW5w0/9hL2/9P0d71nsnC7Wd0l1EEZFrJSTQQ3UREVm3wtmAE08bxh7OE3s+Cz/pTo7TqV24fjM+Z+acVMjkzx6gfiTL0dkxrFdTWCsWEMMSxLcFhEaTSonI2jB8f4b8HR4nnl6i/JqC50VklQVw9JuLTH2swNSn8xz7yjJxcgIiEblMIZd2XaJ7glfunXVeqZw92DuVSpFKnT8eaHm5m+loePj88UvveKfsnboicm28OzAVANMNmryRxG3D8b8tk550yUx5pCc8bN9i9jsV/BGX4buz2G73Gb0/5p7OdHeplp5rsPTchbMVxoGhcaRD41SyTH/YYePPD7H9V0dpzgbU9rWp7m8TNa5OFJflQGajz/BdGTIbPax3RTJV3m6x+EydsH6qLQPGGNKTHtW3dRIrIpfOH3HY+KkholbMkb9cPv+7Z4C050IO/q+LFHanSY+7pEZdCrvSp8d0XUwcdo/z+R3dc+MT3yifFZgK3UkMNv/iEBs/OUTlzRZBNcKE5nTmbSfbzWZuYgNx91heuj1DdqNP2Ij5/pfvpThS45FPvMr4hvI1WweDZPLDhdMJp4JaRP2QvsdELtXnP/95Pv/5z692N0RkgCg49QaRnjjzUceB4cj/3r2JG5TPPtn3hhyG786Q2+bjZrrRVnFkiDuGuBMTVCLaiyFRM+boL21msZSmmTp7M3LDmOmlBh98dQYnNhhgZchj364CK0M+jaxD5NrX9g++Qm7dcOcPy7QzNs2cQ+RZhJ5F5NqEnoUdGbLViJGPFsC2aBztMHJfltqhNie/oRlW5AYSn31z+sQ3K6duYPr4Qw5ewaE9H9Je7L4uJrfNJ78jhZOxIX5nJqnuTc7MlIeb6x6POishSy9c+IbtZXW/bVh8rsGBL0yTqsfETjcodeJAh9iB+VMzV9mh4ZH2MeJFl3jJIZrrBqbaYwGs7cPZmjf/9jBvP7kdLx1y+6f38tY3dmCMxV2/soehTVX2NDeudhdFrql+Zq1zst0DzcKP6wk11zADmAEY4TEAXRSRq8v3faampvjBzNdWuysiIiLX1munXu/y3Uev0rL/5CotR0Tkanj+1EtEZK04Avzb1e6EyI1jamoK3/d71tE9wasrn8+zefPms373u7/7u3zhC184r26r1Z08pNdn9E5Qa7PZvHqdFBG5GAOtmZDWTAi8+7jTpvx6k4lHC2Q3+hR3p5mfu8hMb1dRZzni0H9YJLctRWFnirH35Bh7b47miYDG8YDWbEBYjYhaBmxwMzZeySE15mK5FisvN85KpOHkbFLD3fLsJp/0lIftWrTmAuafrlG8JU16wiOsR8w+VT2rL4vPdzO+Dt2ewUnbzDzZHRPpZG2idgyDG2MmItdBasxl46dKBNWI439bJm4N/oCcuG0ov9bk3eGfTs7GssGyLSwbeNe/TczpgP/ynhaNY50LjkvqLEec+EaFsUdyTHwof9bEARfTmg848Y0y9UMdfuMH+/jJN+7gxe/dzOOfffbq/LEDyhgo3pqmeFOauR/UqLzZxNxYc2/I9TAo4yDPNYBdFpHBouDUG4DldDMVzjxVYeojRWzPImrGZ8++YnczHW76uRKWY52ZZcUC27GwMxZkbKKGYe573RsNx/5p/vTbnShmcrnJ9FKD8ZUmjoGTIxn23ZYn8GyMPViZvqzIUChHFMoRXGR2zdC1CPIOxhgmP1QAoLpPs6vIDS6G5ZeaLL/UvWG74ZMlijenWXqhcV4w/DsmPpSndEuG1nxAUIm7gVp299hlWTaNYwFLL5ZJT7i0ZkPMtbi5aVl0MjaZSsTEwYDpfd0sqrnliEw1wgmgQw7TsSHsHs+s4ZD0J8oXDSyzUxZO2sZJn/lpeTadHkG6N5I4tNj/vS2cfHmSsd1L3PT4QY6/OEmn7nH/P3yNzJCOpyLQnUVw66+MAOCkB+t8SkRkEKTTaQ4ePEin01ntroiIiIiIiIiIiMgV8n2fdDrds47uCV5dxpjzBtBfKGsqcPqz6bXu2+3uc+JMJnOVeigicnmCSszxvy6T3eLTWb5+Y31MCLV9bWr72ti+RX57ivxOn+G7Mzip3AXfEzZiLBcKO1NEre640KgZU9jVPe7GgaF5osPiM3Uaxzt0lrqDrypvtcjvSNE8ef74yOUXGiy/0GD7fz5CfofPtl8d6Y59OpVNtrMcceyry8Std73JQUGrIjcQywXbtbDTNrZv0Z4PwUB60mXDJ0p0ViJO/O35mULXk6jeX2brRqP3tUfzRMDRv1zB9iycTPdYa7kWJjREjbg7ZtamGwBrWWdl1B7fUOa2hw7y46/dRXUlQ2HoxpzkJZpzCZ7PMvloivIbTcqvNxWMJyIich0pOHUd84cdpj5aJDV29sfcnAkwscEbchi6PUN60sUfdbEdi6gVY/vdGwhRMz6drTCODO35kPkfn5kBzA1jxstNphcbTKy0cIxhOedzdCKPAYqNgAefWyTdjul4Nj95zyiB71y3v/9KBEWbZz86xOhsh6GFgNGZ7g2YFz9YIrbB2BadlMX4p98GYOT+LKMP5ijekmbx2QHOaiZyldUPtclt9tnyK8N0FkNa8yHtuZDG8Q7ZjT5Dd2bwRx1mvl2hurd3MGKwcm3vXu5+pk5xISK2oDrikGrEZKoRjZJD6FsUhqpYnsEqRdhDIVYh7l7sv0t4wGfjz2fITHpYzvlBZHFksB2LlR/D0CMr1/TvWcuiFYcXv30bjaUMuz56kJEdZfY+uY35vSNM3LqowFSRd8luOjNz9PgHCtQOLK5ib66AMYMxY9gg9FFErrp0Op04YE1ERERERERERETWD90TXB3Dw8MALC8vX7TOO2Xv1BURWW2NI6s3mUHcMVTealF5qxsB6g05uFkbJ2Njom4AaliLCesxbsFm/JE8TtYmPeURt2Jmv1elcazTzdx3gfgpE5E4Xqv8ZouR+7I4aYuwYWjNdEhPe6RGXEq3ZFh+qUnhphSTjxa6CVFMt1+1Qx0Wn6kRh2A7EGtOCJGBZwKL3Da/+9qaws2cPXgyrEc0TwbktqZozwcc/3oFE2gczqWIA0OcuM7OL99y0yzPPRny2o938sjPvnZtOreGBW+k6TzdTTJVebtF1DKMvzdH/XCHxrELJ6gSuWyDMg7yXIPYZxEZKApOXccmP1I4LzAVIDPlsfPXxrAci7Ae0TgWUHmrRXs+pL0YkhpzyW/vzmLYmg9pzQWE1TN3J0buy5LfmWLX88ewgJWcz8mRDMayKDY6bJutndemH8TA2sv25bQMEy+EOG2DFUGnZBGdCs4NCyGzW9IsTKcYnene/A48izBln7ecpecbRK14Lf6JIquq/HqL2sEO+R0+6XGPzLRH6bb06ZlT64fbzP+oRvPE6l8A2iEEvsUrjxUwFwgs3TV9vOf7oxMe7SdLWHRY+EmdsBYRtbs3XKO26R4jYhi+JwMMYdlQuKeCnepv9qxBZgyYlk1cdgiOpmi/kiWTb3Pv517HzwW8/J9uJQoctr//KNN3z612d0XWlJVXm9iuxehDOVZebqx2d0REREREREREREREREQuy+7duwE4cuQIYRjiuuePaTpw4MBZdUVE5IxgJbro5P5hNebk31UAcNIWcWgwVyHh69JzDZaeO3usgj/qsOXvDZPd7NM4HjDxgTzGQGVPE6/kkBp1GbotQ+nWMxNBNI52OPG1ypV3SESuOxNC46UCjRfzbPgZm85ySOXNFu3FEBMa4rbBGENhZ5r0pMvKa02Wnq9flWOQ9MfzI4bGahx4bQMPfuwNXG/9j0l9t+jYmeQPxZvSBLUIL+9Qui3D/j9ZwNxYq0NERGRVKDh1vbLBH+p+vEvP12mcCIga3QApJ2ORmfKIA0NtX/u8k67WbEhr9vyrAjdvM3xPlqE7MlTeajF7SwkvjCk2AjYtNggci3LuzAneUt5nYTrF4miKRm4NbmrGMP2jAK9maA9Z4IJfNtihwYoMtzZqhC5Yp9bPvjtzFwxMfUf59dZ16rjIYIkaMeXXWpTp7iO2Z5HfmSJux9QOrpFp8YzB2OB1DH4rpp27cJZnE4OpOFjpGCttMG2L6KSHPRGA151VprMSsfJq86JNLb/UZMdvhFReKFF9tcDYz8yT3rQ+jx9x3ab9epbOngymeWqduobUbQ3u/eAeiC1e/tItRB2Hu//+HmVMFTlHZoPH+HvzpMZcFn9aZ/mlix9bRERERERERERERERERNaye++9F8/zaLVavPDCCzz00ENnlQdBwHPPPQfAww8/vBpdFBFZF6LWtc2M1VmM6KxEZDf6bPklH2MMCz+us/LKmTEN6SmXkfuzmLA77jS3JcWmT5c49pXyNe2biFw9xkDnUJraD0vEdYfMnTX2/F8CgvKFg+RbM+cnNpLro9N2KC/m2Hnn8RsuMBUg9eEK0S0eAHs+E1K6PcPI/Vkqb7cUmCoiInKdrMGIQbkqYjj0vy1BbM672RA1ujcI+lW6Pc34+/OnMx0CZDd5FOfrtDyb2eEsrw9ncKOY2w8t0/JsXtkxyvxQhnT+4oFn2w/UGJ9v0cw41DbbLG30wLq81KNbvtkhVTEc32VRHXHx2jHpeky2GlFcCIhti8WNPjPbU4SeRW45Inc8JrNoOPYhj+b4OUGnxmC95ZGthkSuhdc2VIe1u4hcDXFgqLy5toIxM5WYwlL3uFicCylPWnSyNnZoSNVjmgWb8LBP5wd5TK0bZGllI3DAVM8OZC3dlqFxrEPtwMWPf6WHV8jfUWXxW2MsfG2Cqc+cwC2u/anC4shi9gfjlN8sMfm+OUq3nj2joYmgU/ZpH8sQHvUJDqbBMfg3N3E3dHBKEXYxxDp1uH/1KzfRrqS4+1cUmCpymg25LT6l2zPkNvs0ZwKOPrFMa27tHyN6ihmMDPO6ISkiIiIiIiIiIiIiInJNFItFPvaxj/H1r3+dP/mTPzkvOPVLX/oSlUqF0dFRPvShD61OJ0VEpC9H/tMyuR0+/rBL40iH9vzZYxpaMyEn/vbMuKJt/2AEX+MvRQZG3LGofnuYzqEM3uYWpU8u4g6HBGU/+c1y3c0dHSHoeExsXuLI2xNYliFXbOF6EZYFgeMSRxb1uSylzVWcdRbAanngbgkAiJqnxvAe7TD3tAKm5RoYlHGQ51pfu72IrEG62lvHosaVf4u4OZuJDxTO+l2nHFE/2KY1FxCHkBurctd2n/S4R+1Qm7nvVhluzTJ87sJs8AoOXtHGH3YZf2++28a+JhPzHtn/aZbqvjapcZfRB7K0lyIWn6n31c/UfzUOwIa9zdNBtEEtIihHLB8LsH2L8dsipg6dCX4KmzHzLzZo/tGFs5AZ4J3WW0D+1EtE1h//swcpP5onM+2x5ZUmltWiUw5x0jZOyibuxLT9EvXDbVZerWL7FpmNPn7JYfH5KiP3ZLDT9umg28bxoGd7T92ZA8D26mz5FZ99/+M4J75W6fmei9n53GhinUlvJbHOn9y0vWe5k7aY/niJ9IRLZyXixJMbOPyXk1gOWK6F7VpYzjtXXAZvNGDovUvkbq1h+2dPkmAiOPi3W2nMZfjo33+O8emLz4pY9TOJfX9w9MKZbt8tNv1dDb5Vm0ysc7CRvM5naoXEOgBpp/e2AtCIkm/q3Zyd6au9bf58Yh2P5AksfKu/SS6CPibjjExypajPK+NGnNyvwKQS6/SzDgD+X7tvSazzD986SvlonvpcFgATWbjpED8f4OUC/HyAW7BJj7mkpzwKu1K4OYfWXMDJJyvU9itwW0RERERERERERERERNaHf/kv/yXf+MY3+Df/5t/woQ99iM9+9rMAvPzyy/zWb/0WAP/9f//f4/sKfBARWevqBzrUufjk/e94+18/yNQbx8m2A97+1w+eV+40eo+diapeYhtBuvdQ6E5COYBr9x6bcrhyb+IyUk7v8SZbCks9y18sb0lsI2kE1IZi8hi0lNt7gnTfTp5Afa7Re2xUpZ3uWb7cSB4TFkV2z/Kbt84lLqMV9d5++hnjVaX3WKOxdO8AuKP180ZTn+dEpdizvJVN3g8yCePQalHymKlDDzWxfYuNnyzhDTnMfbdM7WAHsAGdn61Fv7vjftKTLht/zvCjv707sX5rPuDYX62clVHUcsEk7Pb/8K0TPcuXwt4j7I883E88QO86ixcrsOkO+jeABU7GIrPBx7JR5lQREZHrRMGp0lNYjzn4Z4tgutkO49DglxzGHskzfE83yCLuxDSOBcy+XsXN2TgZm6h15iLbH3aYfryIV3Kw7O6lcRwaGsc6LL/cxLIg84kScWjY+tlh/FJ3s8xsMiw+V7/gTA0bP1XCH3ZoL0Z4pe4F6NILDRZ/WsfN2USNGHPOdf7yiw0mHi2QGnU4+c0KneX+s8eKyPo3973uTSLbt8hs8Mhu8vFHHNoLIXHL0ClHZwWJvTsz6omTyQGGFxIHhoUf15h+vERq3D1vFsG1IDXuUrotTWFXGhMZjn11hdZsSGF3Cn/ExUSGODCYsPsdEdVjHvpyGTt14YBDE8Pit8ZpH87w4V96nvENFw9MFRkUbqE78Yabs7FsaJ4ISE96uHmbPX+1k5VDJSw7xrINtmsI2w68K2B6+692f4b1iNqBDuU3m5eU5X4QWMZg9RGIvNoGoY8iIiIiIiIiIiIiIiKD6n3vex+/93u/x+/8zu/wuc99jt/5nd8hn8/z2muvEccxn/zkJ/nv/rv/brW7KSIiV1m2HdLykiefF5HVlRp3mX68iJ2yOP7X5TU5nlHO15oNOfBvF/DHXMJqd8yZW3Cw3e74NDtlYVndANSpx4tMPV5k7vs1TGzY9KkhUmMuQTWi/HqT5ZcunPBprUlPukw8WsDN2jhpm9Z8QHshJLvJx7IsagdbCkyVa2JQxkGeaxD7LCKDRcGpkiisdc/ObN9i9IEcw3dnCCoRM9+p0DwRENZiCrtSjL0nh5tzGL43y+xTFSzXYuS+LP6QSxwY5p6uEZQjgkpEWI+7M5QAY490MwhOP148HbxaP9xm9rtVshs9hu7IEDUNs9+tggWTjxbIburOwNOaC2kcC5j7bo3mqeCwsHrhs8m4Y5h58vIyE4rIjSPuGOqHOtQPJc/sdzXUTrVTvDnN/HzvWdSuFydjMXR3lvxWH3+4e+Nh+aUG5T2t01m5q3vbwIUzOp4bmGpiiDs2wYJP5bkh2idTfPDTLzG97aJzWYmseXMHR9j8S0P4Qy621z1/Macu4C3LwsSGqBkTdZrs/tmDjN68zKnk7pgYgoZHp+bRqXs89V+N0V4Ir0rWexEREREREREREREREZG17F/+y3/J3Xffzf/yv/wvPP/888zMzHDnnXfya7/2a/zGb/wGjqPgJRGR9WS42sIxhoVCcqZMEVk91tsum38xR3sh5NiXK91x3jIwTAztuTPBxFHzwoHFJ79ZYfrxIjv+4Shxp5sIava7VdLjLqMP54gDQ/n11vXqdiI3Z+OPulg2uFkbbIuoGTP6QBYna7P8UoPMlEdmk4/tWdQPd6i82aK9oMBqERGR60nBqZLIH3bY8LMl3JyNMd0MpcsvNjAxpEZdpn+pyP+fvT8Pj+s+7/vvz1lnxw4Q3ClK1C5R1m45VuRV3uPEdl23iWM3aZ5eTeK0flK3vzS94l6/tGmbxU3TNPm1cR73F6d2vMlybNmOpdiyJcvad4kU9x3ENsDsc7bv88dQoMAFA5AAgQHfr+uai5hzvnPOPSBmMOeL+/7e6QFPlb1NjT86rXXv6tbat3dLkir7miq90lT9aKjGyJk7C069UFd62FNmjTezzRhpzZu6lNvkz2wrXJ5SYyxSZo2n4rM1TT1fnymcBYBOZdlSVE/Uc21GlT1N1Y+FstOWFLc6q15oXVekNXBHa9GAyp6mxh+pqnoomFlQYL7ihq3KCwXVd+cUTnozXSLdrlCD7zuuTZcfX+zQgQvGJNJz92+T3+sqqiatolNLrdXmbMlJWWpORmqORdr8prLChqvJXT3ysqG8XKR0T1N+PpSfb302qh3sWt4ndCEY07qtdJ0QIwAAAAAAAAAAQId7z3veo/e85z3LHQYA4AK49tCEjKRX1vYsdygAzsIateU8nFJpR0OjD1UkUrNXrdqhQAf+ZlKpQVfZDb6q+wPVDgUq7ZDstK3+W3NKDbiqHggUN43CqUhx/fR8qrDmqnQ0JyWWei+dXvQ4UwOuBl6fU3b9yToCkxgZI9mOpcZYqKP3TCmcilVUZ3R7xSrRKXmQp+rEmAF0FIpT0ZblWvK6WqsSHvjCpPweR26X0ypavbtVhDr6o/LMSilHvzUlv89VOB0rKMZtjx+VEx2+Z0rDby2ocFlakpTfklJzMlLx2ZomHq9q4PV5yUhewdbIA6UTHfsAoPOZSDr89SkNv7mgDT/To7ieyMnYMolRaWdDk0/ULtgqZLlLfK15U0GlnQ2N/biipHluFyO1PVlNPjAgGSmztabcNWU5mVhuTyivP5zpHgl0miS2NHW8oN2PbVRtOiPblby8rWAqVjAZKSjGshzJydpyMrZS/a7GXu5TWPNkYnvmOOnehq54z15lB1bOKnMAAAAAAAAAAAAAAACLae07upRvhDpeyCjwT6Yr21GiDcWKQsfWeNZTYttzHAXAkjGStcuV85OUzECi0R9VFtzEAp0nqiSKKoGq+4JZ28ceKqvn+qzyW1PqvqrV7TqJjI59tyRjJMuS4tDS8//nKtUn0zOPu/oDr0jr5n9+J20pu9FXqt+Vm7eVREbBZKzy7qbiWiLbt7TuXd2KG4lG7i+pfiyUiY3iE/msbs6muRUAACsMxaloqzkWKW4mclK2Nry/R27m5ERAVEvUHI9U2nmyuCIsJQpLwZkONaep51srlzRGW8UdtcMnO/WN/ahyfk8CAFawcDrWoa9PKbveU2adr6AYycna6r0hq8LlaU2/WNfkEzUlwdLM/JSPZ3XpLw3I9ixVDzR1/Pvlcz5W741ZTXwnp8xlVfXeOSEnwyQAVofRfX36yVevn7UtrMQ6+JWiksbZX5sf3XlI1bGMGlMpWVZr3J77N2nHNy7V1R98RVN7u5W/NKXGaKiozOsFAAAAAAAAAAAAAAB0NjstbfpAn7yCo2LW1xOXDs7s23J8WlcfKerVte2nxj395Mah5QkUuMjZj/lyXvSVbAsV396U/u/ljgjLKa4bTTxa1cSjVbl5W27e1vp3dWv9u7u1495LdeXP7JGMpajZqiPo3ljS9KEu7frOFnl9oSzHKNUXqP/WCdne6fl0TsbS4B155S9NybItBdOxokosz7VU2JbW4B151Y+FKu1oyM3aGnuorMre0+sRKEwFAGDloTgV81J+pame6zIKJiNVpmKF07Gq+5sKS4v3Aa9xPNLI8XMviAKAjmak2uFQtcPhzKbplxrquS6j3u0Z5Tb5Onrf9KK+776W7VmqHw107Hulc3q85UhDdxXUtS2trluL6rp5mg6pWFX8TCA/E6hnuKy128aV6Wro8+9cLxOevTDV63b0yrcu0cQrvWfYG+qFL1ypsO5q7dtaL5aolqhxPFRjNGr9OxbNefyOYkzrttJ1QowAAAAAAAAAAAAAAKxgW/5RvxzfVvG5mn78sS0z290o1tVHikosS44xMpJevrR72eIELmrTluyXPMU3NZVsD9uPx0UlqiSKqonKe5rqviqjZsmXjOT4ia7/xzv0wt9crulDXZKksOorvbapJLJUfKZHwZQvrytUVHUU1VzZjpHf19TQGwvyuh2NPVxRZW9Tcf1knpbtW8pt8dV/S05r3lSQJPm9rqSFN8sCllSn5EGeqhNjBtBRKE7FvIw9XNHYjysznUwBAEvPhEbFp2qq7G5o3bu6tfFne3X0u9NqjESLep78UE1hJVZjIpI5h0N7PY6G31SQ3+fq2N9Na+OvTi9qfMBK0DNc0Tt+9ceztplw3Wnjspt8Db4+J7fgyHYtlQ6Huuzu/Sqsq6hZ8TX+cp9GXxiQSSzFoa3XffxFffXOYaWHPKXXuEqv8dT7uowcPydjjOrHQk0+WVP9CJPAAAAAAAAAAAAAAABg5bMdSyY2Gn+sKn3s5PaNExVZknas69HVR4pqeI7qGWe5wgQuas6TvpQ1Sq4hJwlnZjlS91UZSdL6W0dkEkvHn+vXvu9vmjVu4MpJ9b9tXJI0+XSPik/3Kih6cnOx3Fyk5lhKm/9BTpJ07LvTquw7veA0CYzKrzRV2dtUetCTJDVG+dkEAKBTUJyK+aMwFQCWRVhKdOieKa29u0sb3tej2pFQUSVWEhjpKUfyTevm6TVfG8lv3TdGM11Mm2VPxYPdmjrYpdLRvGw3ke0YeXlHlT3NecVjpy31vS4ry7YkS+q+Kq2wEuvwN6bUHFvcwlmg0/Ren5Hf66o+Eqp+NNQd//6oHD9RUPFl20ZJ1Hoxxk1XlpPIxJbihlH1YKDqwZMTb36vo/QaT11XprXhvT0qPlvT+CPVJYnZclqrz9m+feJfS3EjUTARL95JOmXFsE6IEQAAAAAAAAAAAACAFWz8saoGbs/p0l/s18DnXlJlT1PNiUjDb+6StqaU/r9f0fRteXVfndabHhmRCY3iplFYjlV8pqbawQtfkPTK/3PLnPutVNL+INbcOQeNaO6U7XI91fYUSWLPuf942NX2GJns3DlizabX9hhB1Z9zf99gqe0x2p6jTRzjzVzbY9SjuY/RnW60PcbRqbm/p/tL/XPuPzzS2/Yctjv3z44xVttjDGQqc+4vv7E883V6jauNP5vX8e+XVPrD+eUM4uJjImn/Fyc19FN57f72JdoVG8mSSjvrmnqhLkmyXUu7xmIpee3P+ZQkyXKlvhtz6rvx5Hvb2ru7VXyupvEfnzkPzkRS/RhFqVh8e/76dWfcntQa0i/fO/8DdUoe5Kk6MWYAHYXiVAAAOkDSNDr6zWl1XZVWbrOvVJ8r27eUPHSioMw7+wTUD+NblARGJjFyc46MMWqOR6ofC2XZlrwuR1PPTc2rI+v2n1iq/e9+yViyeiOpYcu9pqbc9pp6P9Ua82hxS9vjvFhZO6/n3efX2o7pduttxxxp9M3rfEcr3W3HbOmaaDvmyr7j8zpfYuaeMJak/bW5JzAlacCbe3LxVY9UtrUd87rsgbZjGqb9JLQkvdhc33bMpf7ovI41H8/Wr1iU4wy45faDJH1kx9HTtkXNEe352y2SCsoMe9px72VnfrCfyISWnvnCVbrqr2uyNwZS2siaWRDUSApkTKD4+bR6ldPWf1tVatOZJ8VNLEVFT5OlvBRYMzfz6tehJQWSAkuN5zRTiOr4liznzO8fzfFIh78x1SqEBwAAAAAAAAAAAAAAmIepZ+tKgkQDr8+r9/qseq/PzuyLqrGSQBr7UUWlnQ3135KT1+XISVvKrPWUXdejuJHo+A/Lqu49vbsegPM38Pq8GmOhSq9QmIq5hVOxjnxzWn6/o8ywJydja/LJ2rwaXuUvSanvxuxp252MLb/PUd+NWcVNo7GHKjTQwgXnxImc2CgJaMgDAIuB4lQAADqESaTpFxuafvEMxWmWZjoevtoB0Zl135LtWmpORKodDZU0zvFq3pJ0YiW2zIeKMx1ZAbS4qUSXf2CvgrInE1t6sfaaAt1I0rQjM+nI2hLKPJCVqraiH+VPjrGM5KjV/dg1snwjUztRxOy0XrcmtBROeIrGfYVjnsJxX9GEJyWnvCA9c0o3ZSNljJqjseLAKAmMkiA58W/rFp+433NNRj3bM63X/GJItHjHWkrzWOgUAAAAAAAAAAAAAADMrfRyU6WXm/IHXOU2+3JztuJaouIzJxeqb45GOvqt6Zn7liv135pT9zUZrX1b10yuQRIaTb1QV2lnQ1GJP+wD5yM14Coz7Onod6YpCMS8BROxgol4QY8p72oqLBdl2ZaSyCg96GrojQUVLkupa1v65LhXGmocp0AQF84lh8q67MC0HCMFQaBdC3lwp+RBnoqPTwCWGMWpAACsBqbVXTVpvjpjtLCJgPlqPlCQXKPUG8sUpgJnYVlSqitsfe2dclXfn8ja2tqn91Vknk5Lk5ZUdVrdTUNJkS1FrRfYa+eAi98akO0bJXW7VSRuG7m9obzBQJkrq/IGAhX9tORL8oysszTmHf1U2PY5+L2OmqPRa95TAAAAAAAAAAAAAAAAFiYYjxSMz6/oyETS+I+rGn+squG7CvK6HSWhUWrAVf9NOfXflJMxRlEl0eF7pxRVqLQAFqr7mrTCcqzqAToTY+k1Rk6+/3sFR5JkvSbxtDke8V6OC8pKjLYdmNbxgYyODmYV1+kgDQCLgeJUAADQVqrflZO1FR/05d1Sk3s5F2TA+bIyRtYddXnW7GJyk0gKLJmGJTVtmaYlNS1lwkhJ05aTj+UNBHL7Q1nOKccMUucWiyMN3VmQ1+XIcqX0oKeR+0vn+MwAAAAAAAAAAAAAAADOUSSN3F+etSl/WUqpfkepflfZjb62/OM+VfcFmniy2rabn9tl03EVUCs/KL81pann63RNxQVX2dPU3mMTKlyakuVI1QOBguLSNGEBzsZYrbe/ctbTWH9GSY0uPQCwGChOBQAAba15S0GpvtbHBmcjq6YBS8myJaWNrLSRdPKPIzmvtmTndPOOuq5IKyhGaoxGKj5TV2XP4hWhW8bIMit/VrsTYgQAAAAAAAAAAAAA4GJT2d1UZXfra7/f0dq3dSl3ia/81pRMYmQioySWTGRkYiM7ZcvxLcludekzidHUC3WN/7i6vE8EWEbZjb6clK3ybhpTYHnEtaRVHA0sF8vSeG9alx4saWQwq8pCH94heZCn6sSYAXQWe7kDAAAAK9/oD1qrEabeUpIzGC1zNAAWW1SOlYRG5d1NHf9+eVELUwEAAAAAAAAAAAAAABZLMBHrwBeLOvilSRWfq6k5HimqJVJiZHuW3JwtJUbNyUiVPU0Vn6spbhr1XJdp7QMuUnaq1SEwu85b5kgAYPlUs54cI3kRXdUBYLHQORUAALQVTMetL2xWzwFWI5NIpVca6rkuo+kX64obi/xaN6Z1W+k6IUYAAAAAAAAAAAAAAKCgmMy7E2ppZ0ObPtirwTfmdew7pSWODFiZyq801Xt9pMJlKU2/1FjucADgghucqGvr4bKmCr4qGVcKgoUdoFPyIE/ViTED6CgsAQQAwDKxPEtO2lruMObFejVMPjkAq9bk460/2PTfklvmSAAAAAAAAAAAAAAAABZPVI5lWZb8XleFK1Ky08sdEbAMjBSWYiXRcgcCAMvjsoMlTXb5evT6QcUuCdEAsFjonAoAwBKwPUt+ryM7PfvixXYlr8dVfouv9JAnSYqbiYJirKAYzfo3qiTLEfoZJZFREhslk660ZYErBQHoCHHDqLSzofzW1OIfPDGS1QGrbyUdECMAAAAAAAAAAAAAAFiQJJCCYiS/19Xwm7pkjFFjNNLIAyVFpUSX/38eX/IYXvkft57/QTLxnLstp33eQxQ5c+7f8uHnFhTSuXjlf93SdozlzZ079/LYmrbHsNvkqtTrfttjROHc36+jjbmPUeiutz3HUKEy5/47Bva2Pcb1mUNz7v+f2ipJ8rod1Y+EbY8HAKvJOy5/qfXFK1mpaenuK1+WJAWVUJ9dyIE6JQ/yVORFAlhiFKcCADAPliM5aVu2b5242bJTlpzX3j/xtd/rKNXvyrLP3BU1CRLVDocaebEkExh53Y78XlepAVeFy9KyvdbjktAoiYwsW7JsS5YtmROrl4XTsYLpWOHUya/j2tIUs6aHXWWGPTWOhXKPeNKNS3IaACtA43io3u1ZOVl7yd5TAAAAAAAAAAAAAAAALrQDf1NUZoMnJ22r9/qM0kOutnykT2MPVzT9QuOcjun12Oq6PK2Jx2qLHO0FliTaureqvvFA6Y/0ScaoOR5p6oW6GiO02VxNvC5H0y+d2887AHS0A6406kiXU6APAIuN4lQAQGexWoWiZonnvCzPUmbYU2adp+w6T+lhVzJnKDa1jOQbyWv9W1JKlaytY32uqj2OwtTszqnGlkarBck6c+GqjFGmGStfC5WrRbITo8S2ZCwpsSzZxihbj5SrR8o2IvU2Yr16pMCztH9rTkc3ZGReUxi7ua84+xyJkVeWUkUjv2jk1ox644aMkSzXtFbQcyTTsBVXHCWlkx8Xgu5I1WZ+zu9d3mvOuV+SgmR+H0F2lwfbjmm3wp0kHSl1zet867tKbcesSZXbjnlxeu28zndDz+G2YybCXNsxXzt8w7zOt6lQbDtmf62/7ZhKOL/OmoPpuVf1kySn0L4AspbM73yPT21uO+bS/HjbMY8Wt8zrfOUw3XZMf7radszGTPv/F0kaD+d+7UnSzpvPb+LEnFhg07LnHgcAAAAAAAAAAAAAANBp6odbeRWV3U35vbY2/EyvBt+Ql2VZmnq+fYfLV2U3ehq6syA3Z8uyLXVfm9H0C/WOLVK96qWS1o40lViSyViyLEted0qFy9IyppWbZRKpdjDQ2EMVRVUWPO9Ebs6W7VqKSnN34AWAVemZlORIuql9jjMAYGEoTgUAdJTht3Yps9bTgS9MKgnbFyWei/QaVxt/tleSFFVj1Y6Gyn4gkPKJLP9EMeqrN3d2nemOkYH2J6idpTBVkixL9bSretrVWN88YvWbytRiZWqxBsab2razoo0Hapru8WQZyU6Mck4kK5GsWLLiVmGqfWJ+KcxLYc6S3RVLlqRYMpElE1qys7HcgVDhiK9o1JeViRXewIpBwGqWHnIV1RJFlUX+I4IxrdtK1wkxAgAAAAAAAAAAAACA8xYUE+3/PxPa8o/6NXBHTrKkqefqcgu21r+3R5YlNcciTTxZVTDRSrZyu22tfWuXUgOuLMuSSYzqI4H8Pld9N+bUuz2rqRdqGn+ks4pU8+VIiSX94C1rtPGDL0iSnKyt7mvSSvW5MrFReshTbouv3JY+xbVE5d2NmedpuUvfbALnzy20VqsPyxSnArgIvbEu3ZeVvp+R3lmT5kjlPqtOyYM8VSfGDKCjUJwKAOgohUtbHRQz6zxVDwRLco4kOPkhfP8XJmUiqe+/rMxfmca2VMu7quVdTQyldGRDRuuONJSrRDK2Wl1XHSnxW11bjWOrskVq9lpq9lgyfuvq6rTuqq89RyIFB9NyB0LVnO4L9MwAXGi2b6nryrRqh5bmvRUAAAAAAAAAAAAAAGAlSQLp6HemtfH9vRq8I6+e6zIKpmL5XY6SIFHuEl+5S3yZ0MhIsr1WrlXtcKCR75WUvCbFouuKlPpvz6nn+qxSQ54s22oVsdrSwS9NLs8TnCc/TGROKdKJa4kmH59dZOv3Oxq4Pa/MGle923PquiIjy7VkOVJYTjT9fF1RPVFcTxTXYkXVZNb3CMvLKziSKE4FcJHqS6SfakgPZKWi3boPAFgUK7PSBgCAs6geDJTb5CuuL81FQc/1GWXXe6odDZRd58tJ24vfQXAJVbo8vdLlzdo2V+HpfFi2lNrSaN2pn9ehAKxUtjT0xrwsz9L4Y9UlOEGnrBjWCTECAAAAAAAAAAAAAIDF0hiJdPQ70xr66by8giOv4MjERnv+3wm5aVt9N2WV3eDLJFLjWKjRhyuKSqfnk5V2NlXe09SWj/Qps+ZE/pYlWZYlN+9c4Gc1f93FQKnAqJptH2MwEevot6YlSf23ZtVzfVZJaNQ8Giq70dfgG/KzxhtjZCKjiSdqmnqWxLPlZqcsJZGhyy2Ai1d4YiUG/1zzBDslD/JUnRgzgE5CcSoAoKMc++603LyjcHppVu/KbfKV3eBLkiaerHZUYSoALJSTs5UectW7Pav0oKvj3y8rrvK+BwAAAAAAAAAAAAAALh7V/YEOjU9p8KfyCoqRJh5tdQyNKolGH6zM+zgmkvb91ckuqW7O1paf79PQnQW5UaTIXXlp25laKw/PThZWuDLxWE0Tj53srGr7UmrIk5O25WZs2WlLXt5RbouvgdtzSsJEpZeaixo7FsZ2LZmIAiUAF7FXi1KblpTn/RAAFsvKu8oBAGAOJtaSFaZK0rHvlrTuXd3yehwVn6q1fwAAdJj0sKeea9NKD3vyTqzMGUxFOnzvlBqjLI0IAAAAAAAAAAAAAAAuPlEl0bHvlBb3mNVEU8/X1XNdRm99+ZD+/qqNChZQoOpHka44VlQ6jFTKpDQ6mFIx50u2ffrgJJEca8Ex5iuhJCnVTJSunXveSBJI9cPh6Tts6dKP92vw9XmVdjQl1kxfNnHTyPYtWbZk+H8AsBrYUt/rsspfmpKba/1ujGuJgqlYjbFIjWOh6sde87vp1fRz6lIBYFFRnAoAwGskodHxB8va8g/7lN+aUnkXq7UB6GzZTb76b8nKzTtSYuTmHDUnI5V3NdUYDdUYjZa+W6oxrdtK1wkxAgAAAAAAAAAAAACAjjH+46qCYqQ1P92ltz5/UKVdTY3+oHzaOK/bVvc1GWXX+3IylmzfluWc3D9UaeiyMckkRtMvNzT2o1ZHVztra+N7W80YktDo+N+XVd0fzDu+pqTD6z2tf0+3rv/rozp2vk/4VIk0/mhVg2/I65Kf71NYTrT1kb2yz1JIaxKjYCrWoXumzruQ9eCXr5tzv+u1b5LRXajPub9Yys65f21X+4LnRuTNuT9MnDn3S9JUPHcckhTXE1m2JTttK65RnQpg+TnfX9d2zO7jA2fc7oWJtr9YVM90oOPrU6rnHMlIfjNRrhKrezrSQGRUzTkqlEdkZROVHx+Qs7Gp/NrW79Cmd4ZFFebSKXmQp+rEmAF0FIpTAQA4RTgVqzEaqv/WnMq7m6yQA2DFM01LZtRR15WuLFuSJVmOpfSQq8JladUOB5raV5dlS82xSNUD8/8jBAAAAAAAAAAAAAAAAM5d6eWm3HxV3Vem1X1lWoVLfTXGIiVNIzdny+91ZXutYs0kNkqaicJSrKgaa/LJmhojkfwBV/lL/NYxrk6rOR6qdijU5g/3yXKl+rFQmTWe1t7dpeIzNSWRlB5y5Xc7CqdjJZGRZVuyHMmyLclu5ZYkQet8kmR5C++8Oh/TLzTkFWx1X5NVetBWVE0U1GJZZzhdatBVetDT+nd368jfTi9JPBcrr+AoiQyFqQA6Xq4a6nXPF+XGRs/f0q3pvjMU+RujrmKkbS9VVP1Or+x8LEWWsnfyuwUAFhvFqQAAnMIt2EoPtS5UnLSluE51KoCVydQtJU9mZF7xpdjSmrtaK0iaRJKRgqlIoz8qa/rFxvIGmhh1RKV/0gExAgAAAAAAAAAAAACAjjP5eE2Tj9fUf1tWhcvSyqw9UUhjpLCSqLYr0PSLdQUTZ+7mGYxHmhyPNPlUTVt/sV9DdxZkYslypGPfK6m6N1B6rasN7+tR3+tyrUMbIxNLXvcpnTfNa/61JcuylISJxh8+vaPrYhl/pKbxR2ptx2U2eBp+S5ey632te1eXjt7XvvMo5sfJ0DEVwOpw/UtTSmxLP9neJ/WeJefPslTq87Tj+oJu+nGspOQq955J2YXzeB/slDzIU5EXCWCJUZwKAFjV9v/N9W3HrO09OYFVOBZp/VNNNV1L++5MK/q5zZKkH4+cYVWdMyjX0m3HeH7UdkxPvv1EnCStzbWffEuM3XbMwXrfvM43HbZ/ft1e+yK4vD+/53e43NN2TE+63nZMX7b9GEnqT1XbjtlTGWg7Zkt+cl7ne0vXi23HHAl72465qXBgXufbVV/TdsxUmG07xrPPPAl+qnXpqbZjakmq7Zi8M7/CyqzbvhvoZJCbx3HCeZ3v0vx42zHP3dj+ov6Vb1wxr/MNvm/nrPs912XUd3NWMlLx2ZrKuxuKykwgAwAAAAAAAAAAAAAArFQTj9Y08ej8cqfOKJYOfqmoDT/TI9u3NPpgRdW9rZyZxrFIu//XuFIDrmSk5kQkzSeVxNb8xl0A9cOh9v3vCW14f4+yG30NviGnsYdbOV1uwZabt+X4tgqXp+TmHZVeaai03Iu2d4gkSGT7S9MdFwCWihMlytZj5auhcrVIA5NNFaqRnruqR42Mq7TmzvesdrnK/PS07Ewib0P7HFMAwMJRnAoAgCQrMhp+PlD/vkilYUdHbkwpTjMRA2AFsqQ1P11Q15VpTb1Q18TjVSXNFb6ylUlat5WuE2IEAAAAAAAAAAAAAAAXtaiSaP9fn2Xx/ERqjrZvnnDqY1aaw1+f0uaP9Kn72oxKrzQVFCNt+UifLLuV02eMkYyUWVPQwC05jT9WUeml5jJHvbLFDSM7ZUmWOrLxH4CLgx0Y5Q8kyh418qeNttaPz+xr+Lamu3zt2VLQWH/7xiivSl01vwY3bXVKHuSpOjFmAB2F4lQAwKqSGnI1/OaCbK81CbXp4dZFSWJZmur2dGhDTpWcq9ixJMuSjFFuLNbaZ5rya0ZHb/A1eYnb2gcAK4zlSMNv7VJuk6+RB0oq72JSHQAAAAAAAAAAAAAAAKvPoXuntPUX+rTmTQXVDjVl2ZaKz9cUlROVXqkraUj9t2bVc31Wa+7s0tAbjZRIJjFKImnDw6OKHFu7L8trciC93E9n2cX1RJZlycnYimsUKgFYGeymUe6wkRUbpSaMckeMrESqr7FU3mLrsCmomnVVzbqKXXu5wwUAnAHFqQCAVSW3yZff42ri8aokaepD3ZIkOzFaM9rQ2qcmJEmJJYWeLTs28mKjWo+tPW9Kq9nFhQuAlclypHXv6lZ6yNPR75ZUOxgsd0gAAAAAAAAAAAAAAADAkkhqiar7A+UvScnvdRQHicYfrs4aM/FYTROP1dT7uowyw57stC0nZcn2LKWaiTIm0Zb9VYpTJUXVVkGqm6U4FcDKUdibqP+51ntS0CUVr7FV2WIrzrSaDB07nl3O8AAA80BxKgBgVQmnY0lSaUdDUTXR/k8VZvbtuaSg7lKodDOWGyXywkTGsuSsD1UbsOmWCmBF676mNYl++G+n1RgJlzuchTGmdVvpOiFGAAAAAAAAAAAAAACAi0T9WKj8JSkFk5GO/l3prOOKT9dVVH3WtvKfX67XPVNU73SoNz8woqdv6FWxP7XUIa9YUaWVW+l12WqOL3MwAC5K2Q2e1r6jW8FkpNIrDVViI79slNjSgfe7Mt4Kz+PulDzIU3VizAA6CsWpAIDV5UTjUydjz6z09SpjW5rq8U97yNres09aAcBKYmLTeYWpAAAAAAAAAAAAAAAAwDnwex1JUv14pGh6Yd0+C//sFU3fmVfP1RlZkq770bj2//Xkgo5R/+4lc+7v+0fPzLl/51/e3PYchb7qnPufmdrQ9hhPvsluOyZuGEX1RJm1nip7g7bjAeB87fvi9bPuD443tP6FotJDnlJDnga/EsmS9PxlvTp8PHfmg7SpV63X2r//PVXceMbtUbXZ9rEAgPYoTgUArBq2b6n/5pyqBwM1x6PlDgcA2nJztvqPNZWbjhW7lirdrio9jmLv9AmTcCqW7dvyup2ZLtEdIzGSOmD1raQDYgQAAAAAAAAAAAAAALhIdF2eliTFtYUVpkpSatBV91VpRdVYU8/XVd5HEdL0i3X135xTZq2vxvFQzYlI1YOBosrCv78AsBBWYtRdahXGP3ZDvyLXUu94qGJXStOF0xsPrUidkgd5KvIiASwxilMBAKtG7hJfbt7W4W9MLXcowILUSimVJ3Ia3FSU7XAReDGwfUv9t+bUfU1a1tNVNdO2nMjIjVr///WsrUqPO1OsWu1y1ZxsFd1nN3ia7rTiVAAAAAAAAAAAAAAAAGCBTGxkOa2mFZYjTTxam/dj+27KSpIOfnXqnIpbV6PJJ2pqjkXKb00pPeyp66q0BmLp4FeLCqfIRwKwNDK1SDc9N6lso/U+E3qWqjlP06n0MkcGAFgMFKcCAFaN7AZfzbFIUZmJJHSW3Y9v0p6nNkqS/Eyg237mBfVvmJJlLXNgWBL5y1IavCMv25XGH6lq/7/boDBlS8YoXU2Un45at6lY/SM12YlkLMn6+X5Jku114A+GMa3bStcJMQIAAAAAAAAAAAAAAFwkjv5dSf235JRZ4ym70W9bnFrYltLgG/JqTkTKrPVkWZZ6r0+rMRarOREqnGqTW2hLqX5XzbFoEZ/FylI9EKh6oNW90MnZ2voL/cqs8ShOBbBktu0ry5L0kxv7VSp46tjk2E7JgzxVJ8YMoKNQnAoA6EgHv3zdadvWPTKmsb6UDn5k48y2rB+0PdbIVKHtGNedX8Gr77WflJrPR/y3rH1lXufzrPYTQo9Obmk75sXJ4Xmdz7LaRz/tZ9qOqQT+vM63uavYdszRSnfbMbcN7p/X+e7qerntmJca69uOeXp607zO918ubf0cO1lbQ29sKn9JSkHd14++eKOSINHUCw1d/V+K8vrDOY/z99fl5nW++f30Ved5rPaOypvHqPmM6ZrnGUttR9z0dPvX8pOvs+d1trF5jTrJ63Y09Ma8sht8lfc0NfbjiuJqop4P7TptbPXE7bgtpXpdpYZcmdiofiRUVKUAHwAAAAAAAAAAAAAAAKvfund0y3YtNScjjXyvfW7Q4BvyctK2Mus8yUjGGPXecDK3yhijuJ6o+HRdU8/XZz/YkS79WL9sz9bUS3WN/bCy2E/ngum5PqMkNqofCVTYllbSMIobicq7mrPGJc1ESZCo66q0ynubMiEFTAAWl5UYDY435BiplnU7tzAVAHBWFKcCAFaNxOaCBZ0priU69t3W5Gl2g6f17+mR7dvquzGrkS9m5Q811ffWcXm9cxepYuWxHCmzzlNuc0pdV6YV1xIduW9atYPtC+clSYnUnIjUnFhZqzFmN/nSweWOAgAAAAAAAAAAAAAAAKvZ5BNVDdyelxKjcHr2gu492zPKrPPkZm05aVtuzpZlW5p6oaaxh04u0O8PuEr1OfJ7HKX6XWXW+xp8Q159N2c1+VRNpZfrSgJp4NasbM+WSYy6r0qrtKOh+qkBrURJou5r0/K6HFmOpcKlKTnpMy/O331NqMNfn5q5byLp6LdLWvvOLq25qzCvAmAAWAhjSca2pNgo3YhVyc+veQgAoHNQnAoAWDVix5Ib0VEQna12ONTev5rQ8JsKym7w5XaFihu2jn95rfreNK7MZbUzLxxlSZm1ntyCLduzZHu2LEeqHwtVP9Iqak0NuPJ7HcmSTCxFlVjBZKyEFe/Oi+1b8gqOvG5bXpcz6+bmW5PeYTlW8Zmais/UZFZWnek5yW9dYHGqkWQ64OesA0IEAAAAAAAAAAAAAAC4WBSfqSu/NaX0kKcN7+9WVEkUlmOl13jKrvNljJESKYmMgslIpZ3N0zqiBuORgvHZCTv9t2bVc31Wg6/Pa/D1eRljZnKorBNNMobfXNDUAmJNDbry+xwloVF17zwXrj9PuQOJBh+LZf9UYWZbEhlNPFFVWI6VXeertKshJUb9t+WVGfa06YO9Ku1sqDEWysSSnbIUFGMVLk1p7EeW4gYJNAAWkWUp8GyN93mq5L3ljub8dEoe5Kk6MGQAnYXiVADAqhG5lpyYT9DofHE10ZFvTqvn+owGfyonNx/J7Yo08XdDcn4cyR9uKrOlpuy2qqwTi0gVtqU0/Oauk8eoJ3IyrZ2Hvj6l9BpXg6/Pn/F8lb1NTT5TU3N0+asmvW5HmWFXxkj1o6FkSbmNviQpbho1RkNF5eUpQncLtjJrPfndswtQX/0+t2JMFJZihaVEjT1NhaVYjZFQQTFelpiXSnNs+X9WAAAAAAAAAAAAAAAAsPod/35J69/bo/SQJ62RLMuSMUb1kdldQBdi4rGaJh6rqXBFSplhT27BUXa9p6gWq3Y4lO1bmnquJn28Z9bj3GqiDc805dcSRSlL1ju75Pe7crP2TFGr1CoQnXquJjtJlNjn2SUwSZTfb5Q/2CrEjbNSnLKUHkuUKkrGkY4/WFLtYKgkTpQ0Tj60vLM58/Xhe6a07p1dym5qdY49EyfvKG6QFwTg/DlZWzc/M6F8NZIfJtqz5czvOwCAzkdxKgBg1YgdW15I51SsHlPP1XXtfy1p4nsDiiqO+t46pnDcV3Mkpcn7B1V6qlu5KytyckaV3U1N9tbUc01aJpGOfGtaw28tyEnbiqqxBm7tVvG5mqZfrGv9e3vk5Vur9NmepfzWlPJbU6oeDDT2cEXh9IUppLQcKTXoKTPsKj3sKbPGk5OxWysaqjWRLEkmNpJ1clXCqBqrPhKpMRKqPhKqORFJS/jS77spq8LlKfndrY/OYSVWWIrVLEaqHAgUTscKy7HC6VhJ8+IokC/varYf9FrGdMaKYZ0QIwAAAAAAAAAAAAAAwEUkKCba9/9Oztx3u20lzdlFmOeqvLM5U8C57l1dym70NfaTqpLamZORtj1Yk9uUjC2lKkba5CsJjRpjkepHAjXGI/k9rnqvz6jvxpze8cQhlTOeDg/kNdKbUT29sK6BvaNNbf77WE4wu/GdJSMjqTEgHXujo/hP55fLc/TbJcmWchs9+b2uZFuKG7Hyl6SV6nMUTFCYCuD8WI7k97ta/65uxZVQBzfkVM57GutPLXdo569T8iBP1YkxA+goFKcCAFYFOzbK1iIF/nmuMgYsN1tK9bpyMpZs31IwZim9vqHKC12SJfW8oShJah73VX6qW9OP9mrzPzA6/I0pTTxaVenlurb8o35t/LkexfVEh+6ZUte2tIyRksBo3bt6JCNF9URuxtaxB0qypFaB6iUpZdb2as9nxxcUspO2lB7ylFrjKj3kyc3M43VoS363I8uxlASJGqORpl6sqzESqjEaSZaUWefJsqTqwUAmkuy0pcyQ1ypkHXbVf1tOtmu1JnhHW4WqjZFQjeORkuD8L6YtVxp8Q15dV6ZV3tXU+E+qqh8JF+XYnY7vAQAAAAAAAAAAAAAAAJZDNL00q9hPPFFTblNKg7fndPzvy5KkzN37JEl+r6217+yR1+Wo+FxN4z+unvU4VQUqPlVT4fKUeq7LqNBvdHW9qKsPFWWM0cTjVRWfqreNZ+iugrquSElGrXM+Vmst4O9IbsZWVDnH70MiVQ+Eqh4IZzZl1/sKS9bsClgAWKDua9Ma+qnCzP0dG7p1YO2J+8Hp403TaXvM/ODZ328lqdlsXxK1+/jAGbcntUVY5QAAQHEqAGAVMEaXv1JSthbppav7lzsa4JxZjrT5I33y8icvuIvfl+x0rPSmmtxCqCS0ZHtGqTWBUu8cU1yzte8P1mnzh/rUGA0VN050HbUtWa6l/ltzym3xVd3fVP/NudPOmV3nye92lFnnqzkRqbzr9Ittv9eR1+OodjCQLCk14Ck95LZuazx5hVa8UT1R43irSLT9RKXR9Iux6iOhgsn4jOOr+2bPRiQNo+rBQNWDwYnnKKUGT3RdHfbUfXVG/TflZIxRMBGrOR4pDhOZwKhZjFXdP89un1arW2rPtRnZKUtjP6po+iUmIc5LkmhJ29sulqQDYgQAAAAAAAAAAAAAAMCia45GCkqxCttSsn1LxWdrcjK2cht9dV2RliyptLMxZ2Hqa5Vfaar8SrPVqXSzr8xaTz3XZNR/c06NkVD1oye7lKaHXRUuTyuuJSrtaCiqJCps9SVJez83ruS1aVSxzr0w9SzCUqLMOl+2b7FoPYBz5ve2ypMmn6oqiaT6lQOtrp2WtcyRLZJOyYM8FXmRAJYYxakAgI5lJUZrjje0+UBV+Wqkl67qUqXgLXdYwLx4By11X5NWXE+U25RSem2rSPRVx/5uWrXDoW7/RqjS4z1qHMyqcTAr2Uap4aZSG+pKr2/IX9PUoa8Vld+aUm6TLydna/RHZZV3NzVwe05u3tH0S3VNPFpVZW8gN2/Lzdhysra8bkfBZKT8JSlJUu1woMopBaFOxtLGD/TKdi3FzUS2Z8myW91Km+ORKnuaaoxFaoyGisoX9gLWJFLjeKTG8UhTz7ZWE/S6HWWGWwWrfp+rlOfK9i315R2FlViNx+uyHEm2kd0XyV0TykqdnFA1kbT2bV3KbfE19VxdUy/WL/jzAgAAAAAAAAAAAAAAAHDhHfrapDa8t1e5zb7yW1Iz26NarCN/O6WgeA55RElrkf7qvkDlXU1tfH+P1r+3R1ElUWV/q4B1w8/0yDpRvNV3U1YmkixXsixLw2/p0tFvlxbrKZ5RaWdD3VentfnDvYqbRrZvqTESKpiKFVUTlV9pyMRLGgKAVSCqtN4o+m5sNVIZ2DGuatrVD7cPy9irpEAVAHAailMBAB0p1Yh13fNT6i6FGu9PaceVXZru8Zc7LHQgYyQz6cjqOf/ZM5NI4ZQnb6R1EZ1kjJK8ZE750fR3Wcr/xFH+DXlZtqVgOlb1QFPFiUhhOVFYihVVEvVcn9HYvf3yBgL1vXVMbiFSMO6reSSt8rNdKj3WK8tNtPbuSLUjgYrP1tUcP7mi3uiDlVnnrew5c+fQyr5A3ddm1H1FWr3bs6odDjT9Ul2V/YFkWbJdS8Xna0oaRlEtUWP07N1Ol1s4HSucjlXaOfu5ugVbA7fn5L+ckSSZ2JICW5KR3RvLyseyLCkpO8pucnTsuyVVDwRnOAMkKbfFl/YvdxQAAAAAAAAAAAAAAADA4kka0sEvF5UadJVd7ymqJ6qPhIqmF2dx++ZYpL1/Pam1bykoPeSq97qseq/LyhijA1+elO1b6ro8rcxaT07almyjxmvywZZKOBXr4FeK6r0hKyWSSYx6rsu08sOsVsHswb8pKglXYMIYgBWjdjBU45JQUy/W1X9zTl7BUa4RydKKTDcFACwSilMBAB3pyh3TSjVjPX5zn0rdFKVeSH41UddYpFQlUbqaKFVJlKonMpZULzgKBqXaoK36gK3EX9krHZlECh4oKNmXkr25qdrbUzKJpXShKcc9eSmcJFLxcLeKR7o0WeqVbMnNR3IKkdxCpLjmqL4/q9qenJKGo8Ip50k8o6RLam5NJEfKPmqrcXmiQ//fCTnpVhfSzDpf+S2+1rwpo+mX63LzjnIbfRVumFb37UVZdutYqXVNFa4vtwphx301DqdV2ZdX/8052a+3lERGMq0VqMZ/Up1XgWVUSTTxk6omH68qf0lK3ddktPbt3YqDRFGlNbHaGInOWtzaCaJyopHvlbX+v7SejzGSKTmKjnmKxzyZWusbbPdGOvKXZTWOL/2kbseypL6bswsrTjWmdVvpOiFGAAAAAAAAAAAAAAAALKnmWKTm2NLkDyW1REf+dlqSlN3oKXdJSpU9TQUTreYKjWOVuR6+ZKJyorEfnTz31PN1mcho/Xt6JFtKYvJqAMytORHp0NemJEm912dntl+zr6hDQzlNFVJneWSH6JQ8yFN1YswAOgrFqQCAC+rI165pO6Y7Wz/rPisyGn4l0MArgV64tlvlHk/WHOvpdGcabc/XM8f5XhUndtsxknR0vKftmHUDU23HeNb8unj+ePt8CnOPth3Rfcp9y5V6rs0ou8FXVE8UTEQyiZRZ5ym32ZeMWh0+pyM1pmJVKolkSekBV4W1nvryjiSpORmpfixU41io+rFQUbVVGNg1r2cnFecxJqPJtmOeO9NGSxp+a5cKl7YudpMDKT34v26VJJnYKCjGGv1hWalBV303ZuXmHMXNRFE5keVIbt6R7Z0svg1Lscp7mqodChRMx7IkuTlbbsGRV7CVHvKUG/Nl2ZaqhwId/fNp5S9NqXBpStkN/qxjdV+VUXMy0tH7plX980BSbo5nF0ualmVLqTWe0gOtj3c92zNa985ujf6wrOmX2r8OWs9bKu9uqry7Kb/XUW6LL6/L0eQTVVX2ro4uok++7rWvZSMpOHHDfBUuS8nv5jICAAAAAAAAAAAAAAAAOB+1Q6Fqh8LlDuOMokqi7mvS8vscHbpnSlqc5rEALhKH7inq0J9erw1jVa0fq2rjaFUHh3J64dK+5Q4NALDIyCoHAHQGY9R3MNLal5tym0Z7t+Y0uqbDV9BZbpaUHnKVWe/Ly9kKq4kaI6FSg656b8jK8S1VDwby8o5ym3xZlhRMxRp9sKLy7obMHAvDuQVbmWFPmbWesus89VyTkSSF5Vj1o6GmXqgv2cpy89VzbWamMPVVk8/UVDsYyO9x1H9LTht/rleSVNrZ0NQLpdNidtJWq2g1aBWtniqqJtLoq4+py05Z8vtc2a606QO9Sg24qo+Emnyy1eE0KMbyepxW8W8p1hx116cxidQ4UQgsSY2xUP035zR0Z0Embj2HhQiKsYJi+8JtXHyym3w1xhY4Kd4pK4Z1QowAAAAAAAAAAAAAAADAIsmsbzWsaBXKnlzk33KlrivTqh0Olz3XD0DncTK2BqcacuNETc9RthmrUFuZxfjz1il5kKfqxJgBdBSKUwEAK1rXsUj5iUhdo7EypUTF9a6OXp3ScZNf7tBWBMttdf8MS7EmHq3KtGm46vU46t2ekd/ryu915KRsxY1EYSVWvuDIuTUnkxiVdjQ0+XTtjAWX8xGVE5XLTZV3NSW1ijjTJ4pVc1t8bbqiV9WDgSafrKpxfHkmrir7mjKJUXMiUnM00tp3dKt3e0b5Lb6SyMjJ2ArLsUYfLKt2+MwXxHHDKG7MP/6kaeRmba19W6t37PTLrSLd6qFg5nsdTs2va+5c0mtcZdb5SoLWBWV2k7/g4lTgbGzXUthgsgIAAAAAAAAAAAAAAADoZD3XZzR4R14mNuq9PqvGaKi4nsjrceR3u0oio2OPTi93mAA6RG6Lr/5bc5KR/B5HZn9RtZSrStbTU5f3a6wnvdwhAgCWAMWpAIAVy68muvTRuhJHqvY62nlnVrU+p7WzsryxrRRewVF+S6v7p0mkiZ9UzzrWzdna+P4eJaFR/Wio6oFA9aOBGqNRq0On1boYjOuJ4kUuPIsbRtX9gar7A43/pKr81pT6bspq48/2qnY40OSTNdWPLXBFJFvSudXOSpKiSqLpF08WbB799rQKl6WUGnBle5bSA57Ku5tnLUw9F36/M1OYKrVWltMV0qCkyr5AE49VFU6fe3Fqeo2rwTfklR7yFDcTNccjTTxZ1dSzdEDF4gmnY/mbnOUOAwAAAAAAAAAAAAAAAMA58rpsDdyWU/HZmsYfbeX05bf4sj1L1f2Bgu5YxWdqaozQNRXA/HRflVaqr1WiNPZwRaP/eUjGtSRJvhpar9lNVsYrubbHrExk5x7gtM937hson3F7bDXbPhYA0B7FqQCAFctKWhcMh69LaWKLv8zRrExBMdb4TyoauD2vvhuyKu9sKCjOLm60HCmzztfgHTklkdHBrxSVNM9wMWZ02mOXhJEqe5qq7Gkqf4mvvpty2vAzPaofDTT5VO2sxaCpIVddV6SVHnLl97qyLKmyP1B5V0NROVHcTBQ3EplznQszUnlXq9urm7fVfXVGfa/LqryroWBycb4vlm2pORGp+HRNtSOB4oaR5Uhdl6fVe0NWmz7Uq9LOhqaeqy+4SDWz3tP693SrORbp8N9OqX40bBUdA4usfixU7urMwh6UGHXED2TSATECAAAAAAAAAAAAAAAA5ym7wZcsaeKxqpRIld1NVXZTqAXg3I18v6xLP9ZquFPZ35wpTF01OiUP8lTkRQJYYhSnAgBWJmO08dmmIk+q9NOhby5Tz9fVd0tOtmNp/Xu6NfV8XWE5kZuzld3gK7POk+1aak5GOvq302cuTF0mlX2BKvsC5Tb76rspq/Xv6VH9eKjJJ2uqHQxmxqWHXW14b4/CSqLGsVDlV5qSLXVdkda6d3TPOmYSGyWNRHHTKGkaxY1W4WrSMGpORKoeDNp+DzJrPUmSiY2i6nm0Zz1FcyzSwS8XZ20zkTT9UkOlXU31XJdRz7UZdV+dVnV/oOKz8195Lj3oyoRGh742tWjxAmfSOB5KWmBxKgAAAAAAAAAAAAAAAIAVw3ItJZGRuQD9LABcHJKG0eTTNfW9Lque6zKqLndAAIALguJUAMDKY4yGdwQqjMfa9YaMmgWKU+diEkmJJKfV+bTvppxsrzVxVD8WauKxqqoHA4VTK3cWqXogUPVAoOwGT30357T+Xd1qjLWKVKv7Aw3+VF7N8UiH7p1qPdcTpp6tyy3YctK2nJQl+8S/TsqWnW7966Qt+T2unIyl3huyMolRYyRU5UCg+pFQUT2RZUmyWp1NLUcafkuXKvuaGrm/dMEm30xoVHyqpqlnaypsS6t3e0Yb39+r+vFQU8/WVNkXnHHBJSdtKTXgKrPeZ6IQF0TcMErihRW5G5PImMUr9F4qnRAjAAAAAAAAAAAAAAAAcL5s15KZX98EAJi37qvTkqTe67M6GhsZZ/V0T+2UPMhTdWLMADoLxakAgGUxMNrUmqN1BSlHljFyYiM7NnJDo3w1khcYHb3KV2WQX1VzsRxp7du7ZHuWis/UNP6T1jpDlispOVG42kFqh0PVDk8ps85T301ZrXtHt5LQyPYsHf3O9KzC1FdF5URReX5P1Mnaym32ldvsq//mnOzXn/2it7SzsSzFniaWSjsaKu1oKLvJV+/2jNa+vVthKVbtUKBmMZKbtZXqd5UacOXmWsXbcZBo6vn6hQ8YF6W43mFvLgAAAAAAAAAAAAAAAABmJFErL89OWUqaC1uoHgDOxknZM1+7DaMwK7U6yAAAVisqfgAAF5SVGKXrsfrGmhocDVTJOzK2pdhp3ULf1viQp8qAQ2FqG8ZIQ3cVlFnv68g3p1Q7HJ7c1+ErmtWPhjpydFrpYU8b398jqdXNtLSzobGHKud83LiWqPRyQ6WXG7JcKdXnyk7bUmJkjFoFvcYomIyVBMs/4VY7GKh2MFBq0FX31Wmlhz11XZlW3EjUHI9U2tFQcyJSczxSWKJYEBdOc2KBbzLGSMnyv6baMh0QIwAAAAAAAAAAAAAAAHCeKnua6rsxq00f7FXx6dqyNXMAsLrs+/yE1r2zW6l+V1d8t64wZWn0ak/FS7xWfl4nF6p2Sh7kqciLBLDEqPoBACyK3of7zr7TSN4RyalY2vL4qLzpkxcWlfdGkj17eJ9f1xxHkyS9rDXzisuy2n+gfv3AvrZjLs+MzOt8X0nd1HZMJUi1HZO2w7Zjaruy6tqW1rH7S7MKU1eTxkio/V+c1JZ/2Cfbs9RzbUbFZ2qKKudfiGkiqTHaGVW8zbFIow+eKMq1JHGdiGU2+WRtuUMAAAAAAAAAAAAAAAAAcI6iaqJDXyuq/7a8Bn8qr57rMjr8t9OKazRJAHDuokqiQ/cU5fe5Sv5gWD0HI61/OtCalwLZoTRyna/JS73lDhMAsIgoTgUALCkrkLrut+VNWDKWUdQrBQNG/nirQHXoq1IwJDU3SPUtkpxlDbdjGCNNP9qryr6mKrubyx3OkgqnFhsGhQABAABJREFUTi7H1hgLFVUv8skvClOxArh5RyoudxQAAAAAAAAAAAAAAAAAzlVYSjTyvZL8Xkfr3t2t9e/p1uF7p5Q0SVIDcO5MJDVHIzWHXVWGHAX5UFYi+dVEw88HqqxxFOTt9gcCAHQEilMBAEsq85Ild1qaenusaI0UJbYyuyR/vLXfDiylD0vpw1L+GaOxDyxvvJ2ieSylaNpT8bmp5Q7lgoiqsZy0rWN/V6I4E1gB+m7MSIcW8ABj1BEvXtMBMQIAAAAAAAAAAAAAAACLKCjGOvK309r4sz0afnNBR79dWu6QAKwWtqXRq31JkhUZbbu/rs0PN3T4lpTkL3NsC9UpeZCnIi8SwBKjOBUAsKTcMUvBWilac3JbY6NkN42MIzlVyYqlzD7JeOrIz+zLIWm0WsyGxWiZI7kwDvxNUSYxMhfH0wVWPC9Pm2sAAAAAAAAAAAAAAABgtUiCRJJkp+hmCGBxpN6+/7Rt41t8rXtHt9Z+viTvX4Vtj/F8ccOc+203aXuMgfe+csbtkWl/fgBAexSnAgCWlN2Qwq7ZFacmLVWvnT2udNsFDGoV8AcCSUa5LSmVdjSWO5wllwRULQMrheVKTnqBk9BJIlntJ4GWnemAGAEAAAAAAAAAAAAAAIBFltuckpO2dfwHU8sdCoBVxnKknusyyl+SUnqNp7iRqHowkJRZ7tAWplPyIE9FXiSAJUZxKgBg6USSU5Ialy93IOcmLjoznVwrdlb5tbXlDeiEJLAUVx25PZG6r01fFMWpAFYOy7aWOwQAAAAAAAAAAAAAAAAAi6g5HkmS3JytcCpe5mgArCYbfqZH6SFP5d0NTb1QV2VvUyaWUupe7tAAAIuA4lQAwJLxxiQrsRQOdtaKKyaUkilX1W/2SkGrO+AODejmf/HsMkcmlZ8raPonvTJhKy43l0iWZopoAWDJLbBpqiTJGHXEG5XpgBgBAAAAAAAAAAAAAACARdYcjxTVExW2pVQ/Ei53OABWCdu3lB7yZGKjkfvLyx3O+emUPMhTkRcJYIlRnAoAWHyJ5I1K+Z/YinqM4p7lDmhhGj/sUrg7M2vbtvfvXaZoTorrtqYe7lN2W1WF7SW5XZF+cEumI69zAHSu/JbUcocAAAAAAAAAAAAAAAAAYJFNPVfXwG052a7V+UVkAJZN11VpdV+dlpOy5WRb3TBG/n7lvad4vY5UXO4oAKDzUZwKADh/luSOSnZT8kYs+QcsOXVLcc6ofEdybl32lpG7raFwd0Z2f6hkwlP6jSV1b1n+iyLLMbIco6joqfJCQSa2NHCHrfGHq8sdGoCLhGVL/bdkVdpfW+5QAAAAAAAAAAAAAAAAACyi4tM1eQVbORavB3AeTGyUGnBlQqOJx6qqHQoUFOPlDus0a366IH19uaMAgM5HcSoAoK0rnvDm3J98Nyd912ndySbS1kDaGskZjNVrzR77QnFt2/OV3zjedkxOi9fJ9EnZGrgjp97rs2qOR7JTlryCVH46UWow0djnUvrCP143z6Mdazui+PWr2o75++tyZ9ye3VhWz3UZOem00kOeeq+TJh+vKQlonwpg6VmuJdu3lVk39++FU5kkkbGSJYpq8Riz8mMEAAAAAAAAAAAAAAAAloLXZSt/aUrV/cFyhwKgg5Vfacp2LQ3dWVDjeDhTmGq5UnaDr+5rMkoPudLXYk1db6l62fJ0QXJzCztvp+RBnoq8SABLjeJUAMD5SxnJMdKHKlLGrPhOqW7Blpu1ZadsyRgFxVhRtfXBOzVw8ldjblNr9a/CpSmF01nVjoSyXUtx06gxEi5L7LVDgWpHAq17R5ckafqlOoWpAC6YJDA68s0prXn3mQvoAQAAAAAAAAAAAAAAAHSm4bd2KW4kGnu4styhAOhwdrqVTL7mroJkSbZnyUnbshxL9ZFQxadryvyDgvoeN7KSRJXLL3zyubXC890BoFNQnAoAOG9Wbyyz15NyK7dI0nKlwmVpdV/d6jh6qiRoFacmkZGJjJz0ySuOxlionu1Z9d14sg3srj8fW/qgT1G4PKXmRCQ3ayu3KaWxhysq7Whc8DgAXNx6t2eVhAt8vzdG0sr9HTHDdECMAAAAAAAAAAAAAAAAwCIrbEspPeTp8L1TNMwAcN6CyUiSVLo0p0rOVexYCnxbxR5f1Vwrj7vPqummg9Ny99o6Mtx1xuPYqXjO83QV6ucUn+1bsv0FVqd2Sh7kqciLBLDEKE4FAJwTYyQdcWWeT0lHPKln7g//58pypdSAJzdnK7/Fl0mk4z8oz+uzveVZygx7ym32VdiWku1bqh0KdOy70wqmYsVNI8uR/F5Xfq+jVF/r31OLV5PQaO//b1xel6PN/6BP5T1NydIFvb7wehwNv7l14WUSo7AUa+r5c7ugAoBzldvsK781pQP3jS93KAAAAAAAAAAAAAAAAAAWQdcVaQ3dlVd5d0P1Y+FyhwNgFajuD/TAnWuUOGcvAL3qsbIkac/23IUKa4abp20qACwWilMBAAtmyrbMjzLSUU/qj2S9sSazafGLU3NbfK19W5csp9WxNG4kctK23LytsBTLdi1ZJ26trzVrm5OyZNmWwkqs6Rfqmt7RUFROTjtPVA5UO3jyfmadp/Xv7ZZltc478r2STCQFk7Emnqiq/+ac0oN9qh8LNf5oVXGtdUzLlfKXpJTqd1U7Eqp2KDjv70HPdRllN3jKrPMVNxONPVyRl3dU3k3HVAAXXmatp7Acq3Zgge9viZGsDlh9ixXCAAAAAAAAAAAAAAAAcBHIrPOU3eDJsi31bM9o+qWGxn5UWe6wAKwiZytMtWOja1+eUrbSyr+OPOtChiVJ8grOwh/UKXmQpyIvEsASozgVADBvxkja6cs8mpFSRtbdFWlDJMuSjFn8FWRym3xZjqVDXy8qmIyVBEbDby2ocFlaZtiofiyUiY2SIFFck5LIyETmxL9SXE9UPxYqnF5Y4Wz9aKjj3y+r+5qMokqiuH7yQ/nkEzVVDwZac2dBXVekFTcSTb/c0MBtOWU3+rLdVjFs7w1ZVQ8FGnu4onDq3Ap3e67LaOCOnGqHQk0+VVPplYbi6unFtQBwoaSGXDVGWR0RAAAAAAAAAAAAAAAA6ERO1taauwrKbfIVVWNZjqUShakALqB0M9aasVaTnmqXo8i/8F1MrXOoTQUAnBnFqQCAeTEVS+ZHWemIJ13RlHVbXZa/dOdLDbrKX5pSVE8UTMRKwlaB6MgDZU08XltwwelClV9pqvxK84z7mqORjnxzSmvf3qXe7Vn1bs8qrMSaeKyqyr6monKi3CZfA2/Ia/OHejX1Ql2TT9aUBAtbeabryrQqewONfK+0GE8JAM6bm7XVHI2WOwwAAAAAAAAAAAAAAAAA56DvpqzSg66OfXdalX3BcocD4CLiRIn6J5vywkRjfSkNTjYVpC5811RJCss0CwKAxUJxKgCgLfOKL/NIRvKMrHdUZG1Y+sKkgdfnlIRGh742NVOY2gpGS16YOh9xw+jwN6bl9znyuhzVj4azik+rBwPVDk+qZ3tGfTfmlNuS0rHvTCsozi/27EZfqX5Xow+xGhmAFcSSsht8ZdZ70pEFPM4YSR0wmWMWtogAAAAAAAAAAAAAAAAA0Ancgq2+G7IqXJHW1PN1ClMBXHBDYw1du2NakjRd8LTnuqzG1i9hp6Q5hOVzyEXvlDzIU5EXCWCJUZwKADgzW8pt8tV9TUbmh760rSnr9oas1IX5gGoiI8uS4trK/hAfTMYKJs98gWISqfh0XZU9Ta29u1sbf65Xx/9+fl1Qs5s8haVYjWPhYoYLAOdl7OGqhn4qr3Xv6JY+u9zRAAAAAAAAAAAAAAAAAJiL5Uq9N2TVe0NWSWBUfLqm4rO15Q4LwEVosi8lSTq8LquXr+hWPttYtliShpndPAkAcM4oTgUAzEgNulr79i7ZviXLsWS7lprjkay3VWRtXrpuqV41Uc+hSG7TKExbcrZnlN3ga/LJ1TEBEpYSHbqnqDV3FbT27m7FO6o6cFlWiWud9TG2Z8nEXPQAWFlqBwPt/z+TsnoWtnCASYyMtfLf0wwrhAEAAAAAAAAAAAAAAGCVyG/1NfD6vJysralna5p8qiazdKmgAHAaKzG68dlJ9U21ujUnVqs41W/GykaxmhlbsXf2fOqltNB8wU7JgzwVeZEAlhrFqQCwSgXf23zaNis26jocq/tQJDuSKmsdlT5xVEok2dLgHXnJkiafqkmJVDscKCjGyn1iUGpTJ9qIvXnFlXr7/pmvbd9S4bKUBm7PyUiKKoncjC3n9XnVR8JVtTqXiaSR+8tqjEVaFxmteaGi5likzLCnoBipdiRUVEnkZC2l+l0VrsxIkizPkmFlHgDLzZK6r07L63bkpGyVjlSl4nIHBQAAAAAAAAAAAAAAAOBUliOtvbtbuU2+KvubGv/bisLSwhajB4DF4CRmpjBVkmwjXb1jSl2VVqX8VL+rl28vLEtslr08RbEAsNpQnAoAq5xXTdR1NFZmIlFuLJYbSJVBW1Ha0tCLoXo+2KvyKw1lN/lKDbo68s1pNUbC8z+xMcrvN0pNGVXXW2oM2ZIkN2er76as0sOe/F5HklTe1dToD8snV+Sy1SqYXYWmnq2rsrepwTvyygx7mnqprlS/q+5rM3IztuJmomAi0tTzNVX2BhSmAlh2lmdp7du6lN3gKZiKZSKjwc15aedyR7ay3HffffqjP/ojPfXUU2o2m7riiiv08Y9/XL/6q78q27aXOzwAAAAAAAAAAAAAAACsYpYrpfpdpQZc5S9JKb3G09H7plU9GLR/MAAsgS0ffk6StEut/PFLfqG/teOpikYOBhp+a5d6JiKt29lU7EiNjKNyj6sg7cwcI5WeO6d9bVepbRzxWbZbpPW1RV4kgPmgOBUAViHLlboPROo5ECk/liixpXqfreJWV1ObXQX51ofB1HSi4b+YVv8tOTUnIx399iIVpkpyK9LQY62P8127pIPvtWRH0toP9kqJUWV/oKlnazMdQ2dZpYWpr4rKiY599wwXQ6u4KBdAh7KkDe/tltft6Mi3plU/0vodkaSiNg88hUnUEW9w5txi/E//6T/p//q//i9J0tatW5XP5/Xss8/qE5/4hO6//37dc889TMQAAAAAAAAAAAAAAABgUVmO1HdjVvmtKXk9jizLkomNgqlYI/eXKEwFsGJE1US7/nxs1rbxf92lTXtqWnuoLjuW3KjV0KeZsuWFiQ5fktHuS7oWPRbLkYbuKiy8c2qn5EGeirxIAEuM4lQAWEW6r06rcHla6UFX1hOBqoO2jtzkq7TeUeKd/gG62W3r2HdKkiVpkRt0Fg60Psgev93Rmp/EyowY9b4YK2kkOnTvlJIGHUFP04HXKwBWt9wWX+khT4fuKapx/GRBKu/hJz3yyCP6rd/6Ldm2rc9//vP6yEc+Ikl69tlndffdd+sb3/iG/uiP/ki/+Zu/ucyRAgAAAAAAAAAAAAAAYLXIbfHVd2NWfp+r8s6Gis/W1RyP1JyMyEUE0BGKg76Kg/7Mfb8Rq3800GUvVU/cX5o3s/7bcuraltbII8UlOf5qQF4kgIWgTB0AVone12U0dGdBcT3R2I8reuUdae2/M62pLe4ZC1NnWYIao/z+ExcElpR4rS6qViId+dY0RU0A0CF6rs2ofiycVZh6LkxiOua2UL/7u78rY4x++Zd/eWYCRpK2b9+uP/qjP5LUWkEsDBenMzkAAAAAAAAAAAAAAAAuboVtKa17R7f8XlfHvjOt0R9VVNrRUHOcwlQAncuJpd6xQLEjvXRDQbuuzS/NiU68T9YXmBe53LmN5EUCWKkoTgWAVSA14Grgtrwmnqzq2HdLmn6xoTB35rf4VCnRwM5Q6x9rauMjTfXemJXXtbi/Drp3xvJai9YoPW50/HZHzV7p2J2uogozHwDQCTLrPGXX+5p6sb7coaxYpVJJ999/vyTpl37pl07b/6EPfUhdXV2amJjQ97///QsdHgAAAAAAAAAAAAAAAFYJv9dR341Zbfxgj4bf0qXynqb2fHZctcMUBgHoXJfsqOq6x6Z1w4+LuvlHRXVPRtp9VV4TwynJatOcaZ4sV8pu9JRZ52njz/Wo94as4mbSKujHaciLBLBQ7nIHAAA4f0669eG7sqc557jBl0MNvRQqdqVGjy1jS703ZDRwa061o4GCyVhRJVZ95ESXvHNocOrUjAq7EzX6LB17syPjtGI7so71EACgI1hS/6059d6QUe1ooMreuX+3zItJ1BHLMpqFxfj0008rCAKl02ndeOONp+33PE+33HKLHnjgAT366KN6+9vfvliRAgAAAAAAAAAAAAAAYJVLDbnKX5JSfqsvv9tVHCSqHQhUfLqu6v5FyOkBgGWUn460YX9dgW9putfToa1ZFQd9Jc7iFKW+auiNBXVdkZ65H0xHOvrtkky4wET5TsmDPBV5kQCWGMWpALAK1EdCmcRo4Pa8jt43fdZxhSORar229t2VkuzWB/fUOw8ovzWl/CUpZYY9uV0pDfi2onprEqO8t9kqUm3zOd+pG23+xskVZCobJbO41wYAgCVmpyytfVuXMus8TTxaVfG5ekfOpVwou3btkiRt2rRJrnvmS6utW7fqgQcemBkLAAAAAAAAAAAAAAAAnI3f76hwWVqFy1LyCo6ieqLq/qbGHq6qfjhYaI0RAKxYw4cbkqRH39S3aF1ST+VWzKzCVEmKa0bhVLwk51sNyIsEsFAUp64ykcJz6nQIoLMN3JRVGIUK40CRCSVJUfX0VbFqdiSvniiqn/wAb4ehijtDFXdWZralBl3lNvnKbvY1+NaMwnsDFW+X4sLZYwgaicqZSKkTtbH+Hind5ahyyeyLhfhEfACAlSW91tPQG3OSm2j/N8bVOHb29+tIC3sv75TPqK8+r1KpNGt7KpVSKpU6bXyxWJQk9fb2nvWYr+57dSwAAAAAAAAAAAAALKZO+XssAODs3G5Hha2+8ltT8ntcxfVE03srKu8L1BjhfR7A6mSV6gqCUF0HyioOnZ6fJ0lxZM95jCg9dxfpOJSKe2vyCraq+wN1XZlW7BlFJly1eZCnIi8SwFKjOHWV8H1fw8PDemjkvuUOBcBy+MmJ22v9zBzjP9PmeGMnbk+eT1AAgI5yTNKX5j98eHhYvu/POaYTP6Pm83lt3Lhx1rbf+Z3f0ac//enTxjYarZXb5vo+vDp5U6/XFy9IAAAAAAAAAAAAABe9Tvx7LADgLKYlPX3iBgAXi/90/ofYvdAHPDH77mrNgzwVeZEAlhLFqatEOp3Wvn37FATBcocCAACAi4Dv+0qn03OO6cTPqMYYWdbsrt9nWh1M0szzn+v5NZutldkymcwiRQgAAAAAAAAAAAAAnfn3WAAAAGAlWa15kKciLxLAUqI4dRVJp9NtfzECAAAAF9Jq/oza29srSSoWi2cd8+q+V8cCAAAAAAAAAAAAwGJZzX+PBQAAAFaKi+lzN3mRABbKXu4AAAAAAKATbdu2TZJ08OBBRVF0xjF79+6dNRYAAAAAAAAAAAAAAAAAAGAlIi8SwEJRnAoAAAAA5+B1r3udPM9To9HQU089ddr+MAz1+OOPS5Juu+22Cx0eAAAAAAAAAAAAAAAAAADAvJEXCWChKE4FAAAAgHPQ1dWlt771rZKkz372s6ft//KXv6xSqaT+/n7dddddFzg6AAAAAAAAAAAAAAAAAACA+SMvEsBCUZwKAAAAAOfo3/7bfyvLsvQXf/EX+sIXvjCz/dlnn9UnP/lJSdKnPvUp+b6/XCECAAAAAAAAAAAAAAAAAADMC3mRABbCMsaY5Q4CAAAAADrVf/gP/0G//du/LUnaunWr8vm8XnjhBSVJone/+92699575TjOMkcJAAAAAAAAAAAAAAAAAADQHnmRAOaL4lQAAAAAOE/f/OY39ZnPfEZPPvmkwjDUtm3b9PGPf1y/9mu/xgQMAAAAAAAAAAAAAAAAAADoKORFApgPilMBAAAAAAAAAAAAAAAAAAAAAAAAAAAwb/ZyBwAAAAAAAAAAAAAAAAAAAAAAAAAAAIDOQXEqAAAAAAAAAAAAAAAAAAAAAAAAAAAA5o3iVAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwbxakAAAAAAAAAAAAAAAAAAAAAAAAAAACYN4pTAQAAAAAAAAAAAAAAAAAAAAAAAAAAMG8UpwIAAAAAAAAAAAAAAAAAAAAAAAAAAGDeKE4FAAAAAAAAAAAAAAAAAAAAAAAAAADAvFGcCgAAAAAAAAAAAAAAAAAAAAAAAAAAgHmjOBUAAAAAAAAAAAAAAAAAAAAAAAAAAADzRnEqAAAAAAAAAAAAAAAAAAAAAAAAAAAA5o3iVAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwbxakAAAAAAAAAAAAAAAAAAAAAAAAAAACYN4pTAQAAAAAAAAAAAAAAAAAAAAAAAAAAMG8UpwIAAAAAAAAAAAAAAAAAAAAAAAAAAGDeKE4FAAAAAAAAAAAAAAAAAAAAAAAAAADAvFGcCgAAAAAAAAAAAAAAAAAAAAAAAAAAgHmjOBUAAAAAAAAAAAAAAAAAAAAAAAAAAADzRnEqAAAAAAAAAAAAAAAAAAAAAAAAAAAA5o3iVAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwbxakAAAAAAAAAAAAAAAAAAAAAAAAAAACYt/MuTt25c6c+/elP661vfas2bdqkfD4v3/c1ODioO+64Q5/85Cf1gx/8QMaYmcd87nOfk2VZC7p9/etfn3XeMx3jc5/73BljXMhYAAAAAAAAnPT000/r137t1/S6171Ovb298jxPfX19uuyyy3T77bfrn/yTf6I//uM/1kMPPdT2WOcyjwQAAAAAAADg4nTXXXedMY/s937v9+Z83Nve9rYzPu7Tn/70rHELzV97//vff9q5zjTOdV1lMhkNDAzo8ssv19ve9jZ98pOf1AMPPLCI3x0AAAAAAABg+bnn+sCRkRH983/+z/X1r3/9jAmD4+PjGh8f1yOPPKLPfOYz+sAHPqCvfOUr5xUsAAAAAAAALpx/9a/+lf7wD//wtLmfYrGoYrGoPXv26NFHH5Uk9ff3a3x8/IzHYR4JAAAAAAAAwGL5sz/7M33qU5+S4zin7Xv55Zd1//33L0NUJ8VxrDiO1Wg0NDExoV27dun+++/XZz7zGV1xxRX64z/+Y919993LGiMAAAAAAACwGM6pc+oTTzyh7du365577pl3J4uzJScCAAAAAABg5fnMZz6jP/iDPzjvLqbMIwEAAAAAAABYTIcOHdLXv/71M+77kz/5kwsbzALt3LlT73znO/W7v/u7yx0KAAAAAAAAcN4W3Dn1wIEDeve7363R0dFZ29etW6dPfOITuvPOOzUwMKBSqaTnn39e991331knA1/r93//9/XBD37wrPuHhoYWGioAAAAAAADOQZIk+r3f+71Z27Zv365//a//ta666irlcjkVi0Xt2LFDDz30kL797W+rXq+fdpylmkcCAAAAAAAAcHH7kz/5E33gAx+YtW16elp/9Vd/dc7HvO222/TFL37xrPuz2ey8jxHHsSYnJ/X000/rf//v/60f//jHM2OMMfp3/+7faWhoSL/yK79yzvECAAAAAAAAy23Bxam/+Zu/eVpC4Z133qlvfOMb6u7unrX9pptu0sc+9jEdOnRIX/va1+Y87sDAgLZs2bLQcAAAAAAAALDIduzYobGxsVnb7r33Xm3evHnWtltvvVUf/ehHlSSJHn744dOOs1TzSAAAAAAAAAAuPpZlyRgjSXrwwQf1/PPP67rrrpvZ/5d/+ZeqVCqnjZ2vdDp93vlrrz3GpZdeqltuuUW/8iu/os985jP65Cc/OWvsJz/5Sb3//e+naQMAAAAAAAA6lr2Qwbt379ZXvvKVWdv6+/v11a9+9bSEwtfauHGjfuM3fuPcIgQAAAAAAMAFNTU1ddq2crl81vG2beuNb3zjrG3MIwEAAAAAAABYTDfffLN6e3tn7v/3//7fZ75OkkR/+qd/OnP/7rvvvqCxtfMv/+W/1C//8i/P2latVvXf/tt/W6aIAAAAAAAAgPO3oOLUb33rW6dt+6f/9J9qYGBg0QICAAAAAADA8hoeHj5t25ve9CZ96lOf0n333XdaN9QzYR4JAAAAAAAAwGLKZrP6pV/6pZn7n//852cW2rvvvvu0Z8+emX2//uu/fqHDa+vf/Jt/c9q2M82jAgAAAAAAAJ1iQcWpTz/99Gnb3vKWtyxKIB//+MdlWdYZbzfccMOinAMAAAAAAADtbd26Vdddd92sbePj4/r93/99vfvd79aaNWu0ceNGffjDH9Zf/dVfqVqtnnaMpZxHAgAAAAAAAHBx+tVf/VU5jiNJqtVq+su//EtJmtWBdNu2bXrnO9+54GM/+OCDZ81fsyxLzzzzzHnFfumll2rDhg2ztj333HNKkuS8jgsAAAAAAAAslwUVp46NjZ227dQJMwAAAAAAAHS+//k//6dyudxZ9x8+fFhf+tKX9NGPflRbtmzR5z//+Vn7mUcCAAAAAAAAsNi2bNmi9773vTP3//RP/1QvvfSS7r///pltv/ZrvybLspYjvLbWr18/636SJJqYmFimaAAAAAAAAIDzs6DiVGPMUsUBAAAAAACAFeT222/Xo48+qrvvvrttItf4+Lh+4Rd+QV/96ldntjGPBAAAAAAAAGAp/Pqv//rM13v37tWHP/zhmfnIQqGgj33sY8sUWXtnmjddqYW0AAAAAAAAQDvuQgYPDQ2dtu3w4cO68sorzzuQ3//939cHP/jBM+7zff+0bba9oLraRX88AAAAAADAanfNNdfoO9/5jvbv36/vfOc7euihh/Too49q9+7dZxz/O7/zO/rABz4gaWnnkQAAAAAAAABcvN785jfr2muv1QsvvCBJM/9K0i/+4i+qq6vrnI5722236Ytf/OJZ969bt+6cjvtaR44cmXXftm319fWd93EBAAAAAACA5bCgCs0bbrjhtG0PPPDAogQyMDCgLVu2nPF2pom9M00iNhqNMx67Vqudtq27u/v8gwYAAAAAALgIbNmyRf/sn/0zff7zn9euXbt07NgxfeYzn1Emk5k17sUXX1SpVJK0tPNIAAAAAAAAAC5ur+2e+irLss64fb7S6fRZ89e2bNlyxgYLC7Fr167TilO3b99OkwUAAAAAAAB0rAXNbL3nPe85bdtf/MVfaGJiYtECmq8NGzactm3Pnj1nHLt37955PR4AAAAAAADtDQ8P61/8i3+hT3ziE6ftq1arklbWPBIAAAAAAACA1eXnf/7n1dvbO2vb29/+dl1++eXLFFF7//k//+fTtr3rXe9ahkgAAAAAAACAxbGg4tTLLrtMH/zgB2dtGx8f14c+9CGVy+WzPu7QoUP64z/+43OL8CxuuOEG5XK5WdvuuecehWE4a1sYhrrnnntmbcvn89q+ffuixgMAAAAAALBajI2N6cMf/rAef/zxOce9Woj6Ksdx1N/fL2llzSMBAAAAAAAAWF2y2ax+6Zd+ada2My2mt1J85jOf0Wc/+9lZ23K53Hl1egUAAAAAAACWm7vQB/zBH/yBfvjDH2p0dHRm2/e//31dffXV+sQnPqE777xT/f39mp6e1gsvvKBvfetb+vrXv6477rhDv/Ebv3HW446Pj2v//v1n3d/V1aW+vr6TgbuuPvrRj+rP/uzPZrbt2bNHd911l37rt35Ll1xyifbt26f/+B//42mdUz/2sY/JdRf81AEAAAAAAC4KcRzrS1/6kr70pS/pyiuv1Pve9z7dfvvtuuSSS5TL5TQ2NqZ7771X/+N//I9Zj3vDG94g3/dn7i/VPBIAAAAAAAAAfOITn5AxRpKUTqf1zne+87yO12g05sxfs21bmzZtmtcxkiTR5OSknnrqKX3uc5/TI488ctrYP/zDP9SaNWvOK2YAAAAAAABgOVnm1Rm6BXjiiSf0rne9S2NjY/N+zE//9E/rBz/4gSTpc5/7nD7+8Y8v6Jy/8Ru/of/6X//rrG3Hjx/XTTfdpCNHjsz7OBs3btQTTzyhoaGhBZ0fAAAAAADgYjEyMqK1a9cu6DGWZek73/mO3v72t8/afr7zSAAAAAAAAAAuTnfddZcefPDBmfsLnTe0LGvW/d/5nd/Rpz/96bPub6e7u1tTU1NznmM+bNvWv//3/16//du/veDHAgAAAAAAACuJfS4Puvnmm/Xss8/q/e9//7wn2AYGBs7lVHNas2aN7r//fl133XXzGr99+3bdf//9FKYCAAAAAADMwfM85fP5eY9Pp9P68z//89MKU6WVM48EAAAAAAAAAMvt6quv1ne/+10KUwEAAAAAALAquOf6wLVr1+qee+7Rjh079IUvfEEPPfSQdu7cqWKxqCAI1NPTo8suu0y333673ve+9+muu+5axLBPuvLKK/XUU0/p3nvv1de+9jU98cQTGhkZUbVaVS6X0/DwsG6++Wb93M/9nN7//vfLcZwliQMAAAAAAGC16O/v18TEhB588EH96Ec/0pNPPqk9e/bo2LFjqlarcl1XPT09uuKKK/TmN79ZH//4x7Vp06azHm+lzCMBAAAAAAAAwFKzLGtmAcD+/n5t3rxZ1113HXOfAAAAAAAAWHUsY4xZ7iAAAAAAAAAAAAAAAAAAAAAAAAAAAADQGezlDgAAAAAAAAAAAAAAAAAAAAAAAAAAAACdg+JUAAAAAAAAAAAAAAAAAAAAAAAAAAAAzBvFqQAAAAAAAAAAAAAAAAAAAAAAAAAAAJg3ilMBAAAAAAAAAAAAAAAAAAAAAAAAAAAwbxSnAgAAAAAAAAAAAAAAAAAAAAAAAAAAYN4oTgUAAAAAAAAAAAAAAAAAAAAAAAAAAMC8ufMd2Gg0FATBUsYCAAAAADgD3/eVTqfbjlvt123z/T4AOHer/X0EAAAAAADgYsLc8uJjnnrp8fMIAAAAAACwcMwFLg7m/xZuXsWpjUZD3ZleBWosdTwAAAAAgFMMDw9r3759c17wNhoNXbI5r5HR+AJGdmHN5/sA4Nwx/wMAAAAAALC6MLe8+JinXlrMUQIAAAAAAJwb5gIXB/N/Czev4tQgCBSooZ/Su+TKW+qYcBFx0paSyMhEJzZYktfrKGkYxY1Ea95cUHadr9GHKqrubbY/XsbS5n/Yp+qhQMfvL8/aZ7nS0F0FZdf7sl1L1R5bx6/wVe53JMua87h5b/6rAozXcvMeuyZfbj/oNd695vl5j31iesu8x744uXZBcbj2mX8R9R8ItOHFpvbeklZ5sPVeUfjAvgUde1lZUs/2jFIDrkxsVD8aqvxKUzJLfFpHSg15yqxx5RUcOQVbfpcjN+corMSq7G6qtKepaGplfgDoviatrivT8ntcFZ+tye91lNuUkiSVdzU0+sPKrPGZDZ6Gfiovy7U0+WRVpZfbv7YBAEvDcqX0sK/seleZ9b5Sva3Lg8Z4qPrhULWjoZrHQ5lkmQPtAAN35NR9VUZRPVF5Z12TT9bPOtbN2SpcnlLfjad/bpx+ua7ynkDN4+HMtkihHhq5T0EQzHmxGwSBRkZjHXhyi7oK9vk9oRWoVE60+ab9bb8PAM4d8z8AAAAAOtXRf3nbzNepJNT6YEpdcV35OFTF8RVbtvLTVbk5R5J0/MGyKrv5+wSA1Y255cXHPPXSY44SK4WdlvJbU8pu8JXqc+VkbVmWpeZkpKPfLSmpnfkPqF6vrY0/26vKvqZGv18545hTXfKL/YqqsQ59ZWoRn8H8bfmFPpnQ6MAXi2fcv++z1835+I2DZ37cq44Wu9rGkETOnPvX9k+3PcZIsTDrfr4UanCyof5ioK5qpDhIFDeMlBjVR0KNP1xte0zgYmD70vDbupQZ9tUYD3Xk3vavNwCYj/ylKa25q6DjPyyrsot5OACYky1t/ge9cnOO9n1+XMk5vG0yF7g4mP87N/MqTj052JNrMfGHRdSUHEmypZ5rMxp8Q16SVNnX1MRjVfVtKyhuJiqsy0gVW82xaM7D5denlEqnNHU0OP1nNZYmHmho0m0ou8FX90d6deXTiSr9lo5d6asycPYiVdebu3j1tRyl5j3WzS2sFXYmP/+XrB/78x7rNOYfsyQ5zulFklZsZHptmT5LVz2baHJ9rP03ZjruPaPybKSKTv6cufKk+f/3n5tEikak8kgkvebcqSFXXVekNXB9l9bcaqtxPFTplYbKu5tKmktcMTtP2Q2e1t3ZI0mafKqm0tOhLCuU9zZf+S0pZbol12p9OrJ9S8Nv61Juo6/qwUAjPygrriUd9zMCAJ0uNeAqu8FTdqOv9LAn27EUVmLVDgWaeK6h+pGg9Ue5E5wL8btwFZj6SaDmAaPcZl9Dt/QolUtr7Edn+YNzTSo/E6n87LSy6z1l1vnquzErSRrc7mtw+4lhRwON/7iq6tjCYskXLOULq+8/LeEHEbhgmP8BAAAA0Gmc1MkEgUhp7Su0EtP7g4rWNUoylqX6U2WF06HqR0NFVf4+AeAisMA/Ka/WueXFxDz1hcMcJZZdU6q9nKj28okuvrY0/JaC8lszuvyjGQXFWPWjgaoHA5lEym3ylb8kJTffSuytPF+d989wKuUrlZYGbkhUermuJJD8fke5LSllhj35vY7cjC3ZkozUHI80/pOK6kfnzqObj8w6V+lcSqWdzbPGa2fnTsZ1c3PnnTnNeSTztilOdXPtuynbp5ynlk3rwHBBByRt2zOtjTvL8guWLNtSfiirdC6lke8trLEEsJrkL0up/+as/J7X5KTmHW37xbQst/VasWzN5IuE07EOfa2oZGEprwAuYtGY5Pu+utZn1dhNZwQAmJORqjtiDb4+o7Vv6NPx75/DtQpzgYuC+b9zs6DiVGCpDP10Xt1XZmbuF5+tKSjGOvDlSXVdnlbhspR6r8sqmI7VHAsVTsfyely5OVvV/U01J2PZrjR4R07lPU2VXj77hJSJpOr+QMfvzKprNNbal5va9nBdjbytyU2uRi/1ZRzeUOYrVYnVfTzS2h1Nua+Z8+w7EmlkGxcT56M5GmlstKLxhyvKbfZVuCKtwTfkNXhHXpX9TU0+VVMwsbzdVIPpWNWDTaUGPfXdmJVlS43jofJbUpreUdfogyeLcta+o0upXlfH/m5alb3MUl1oTsaS3+vK73Vknyi4b4xGqh8Ll7w7MIDl5eZsZTf4ym70lF3vy8nYSkKj+tFA449UVTscKFyh3bk7ipHqR1vJjUEx1pq7CgomIk2/NMcfSo1UOxyqdjjU5BNVdV/T6uBeuCwly7GUXedr0wd9VcZS0lcu3FMBAAAAAABYLSb8vCb81uK4G5/Yt8zRAAAAoGMl0sj3ykoN1TX4hrzSA65SfVn1XJs9OSQyqh0KNP5odWH5PCca1Qy+Pq/B1+dljJF1osGCMUZJYNScjBSVE3ldjlKDrja8r1dRPdH0S3VNPl4756c1/LZuyUjjj6zuIs1dl3Yr+rcHZu5v+fk+5TbNv/EDsBqkBl11XZFSasBTqt+R7dkyiVFYjWU7rUJUJ2XJxEZx3ciEiZIwURwY2Y6lzHpPWz82oLCc6MCXJ1/bgwMAZhm8M6/cRl9uzpYxRuVd7ReZAABIU8/WNXB7Tl7P3Iv3ACsRxalYdv235dR9ZUZTL9TVc21G5V0NNUZaV67BRKzxR6oa/0lV2fWecptT8vsdZdZ6CqZjJaFR3025k4VWY6HGHj5Lh6pTWZZKa1yVhhwVxmL1HQw1vCNQtpho363ps3ZRxUl2aHTtA9Uz7jt0TUrZqVixbykJqHw7HyaRKvsCVfYFctKWCtvS6r42rc0f6lN5T1OTT1QVFJenqCgqJzp6X0lOxtKWj/QpDo2G7iqovKeh0R/Mfi2m+l0Vn65RmLrE7LSlVK8rv89pFaP2OUr1unIyrb9mmLj1hwvZkpOyFTcSHfibScV1XqfAamG5UnbdiWLUDb78XlfGGDXHIk2/VFftcKj68VBiDYklU9rRUOHylLquSs9dnPoaJpGmnq9LUmvVK1ta+9Yu5bemWishAwAAAP9/9v4zSI40z/P8vo/L0CK1ABIaKK2rulRX62o13T3TM9Ozu3Nzs8vdu6WRtkdhRruz4wuaHUnjHe3sjLx9szTucm/FzdyInu6p1tWyuqpLC5QuaJlahI7wcPXwhaMAZCGRkQASyETi/zGkJTLcw+OJCA+PiMef3/MXQgghxGWN/3cvbnQThBBCCCHELaA7F3L2e1UArLxBdoeDMhTtM138ypWfgC3fl0YpxdJbLcJWjFO2MFMGQS2kddo/P4buYoYDA4/lyO916X8wS2rQYurH9Su+7fSYhZU2qB/xiLtXfPWbmjIVWobJiFtI6e40g08kEzfpWBN1YirvtFh6o73msSPZ3Q6jXyjgFE1SgxbetKRThRCfYMGuP+3HShtEfoxfjVh6s70u1d6FEOKWEYNdkHCquPlIOFVsqPSoTd/9GWofdph/oUln0mfk6QKDXsz87y4KPV5UVeoSiiR0pfXVhauUojFk0RiyqEyH7Hmlw8CJgIXdMjtaTwq8rCLV0rSKBl7eIDYVpemQ7e8nvZaNp3LM/GJrz653I0Wepvpuh+p7HfL7k07mie+UaR7vUvvAozO1tiqYhp3MZpYatrELJnbBwM6bxIEmaESEjZigERHUI4JGTNiICFvxJdtWJuR2uQw8kUNH0J0PMN0s1XcvDeIoQ6GlMN91YaQUfQ9kyO9xsbLJB1IdafxahL8UUp3s4C+FdJcigkZEbqdD4bY02QkHJZWihdg6DCjfm04m7rAUQSOifdZn8bUW7cmAuCtn124k0zEwswaGq67usY9h+ud1Rj6fx9l+ZcfqSMdEW/DpjrQkqoUQQgghhBBCCCGEEOJ62ap9y+tJ+qmFEBcLGzG1966+Eljfwxn6HsgQdmIWX2/DGsfUxD4svNYmt9sFwClbKAv0FeQ+8gdchj+bR2tN89gtlkwFzJSidUIm1xe3DiufTIg9/1KT6tudq9pGZ8pHa4j9WIKpQogVbft6ETOlWHilSeWtqzvWCCHEra76XpvyvVkGn8wy/8LKReTWi/QFrkz6/66OhFPFhvLmA1qnuhRuS+HNhdQ/9Jj7bZPhz+QJO5rKm+3eG9EQtdfnAFAftZjfaTP2QZfaiEWQkSpVq4ktxftfzF9y+fSBmHQtYu8rHfwlSSNeFxoah7o0jnQpHEhRvi/Ntm+UCNsxzWNdGse8S2dPNKB4W4r8vhSpYQtlJMGloBbRnQ9pHu9i2AZ23sAummS22eeDjpCEHYNmElSNvGS2RqdsogxF45jH/PNNMBQ60mS22Xgzy8PkkRdjZuU1td4MVzHxh2XsvIk3F+BXoqT63jvtSwP9CrZ9s0R61KYz5TP32wb1w94VnaAQQmxO7pDF8FN5nD6T6rsdah94BDV5D95IlXfajHy+gDtgETYi8vtSLL219llHAdAw86sGfU+6162dQgghhBBCCCGEEEIIIYQQQogbL7cjKZxw4j8urjmY+rH0oIXpJmNw7LzJnn86QFCNUJZCGVB936PyZht30CK3y8FMG8TdmO5ShFIw9Nk8caA5/bcVwvqtOfA2u8Nh/BtFuosh1fc7hLVb83EQtwYzZaC1pn7o6sNi418voUyY+aUUKhFCXMrpN0mN2HizgQRThRDiGiy81Ca7M0XxzjTdxZD6h7feZELi5iThVLGhdAhTP6kz+GSOoadyKBNq73tYaYOBR7IMPJLlzPerl4TcrqepO12KMyHb3/Y4/mgalFQVvFJB2iBIKbpZQ8KI11sM9Q896h96uIMW+b0uuT0upbvTBI2IxrEu3nSA4Sj6HspgF0xap3zmX2jSPusT9OhgVhZYORM7f6G6qpU3MTMGnZmA6nsdunMh3cWP042apbfa9D2YobsYLptlsLsQkhqQt531lhqysPPmuf/b6FijDAUK2mdry9bN7XZJj9pM/rC6ciVqIcRNR1nQ/0iW0t1pugshZ/6uSndBEuebgTr3GbJ8T5rsjiRcWn2nQxxf4VRTGuaeb17RVWI08VpKqd9ktuJ9EkIIIYQQQgghhBBCiM1iq/Ytryd5fIQQ66lxtMvAgE1+r0vj0KUDjqe/f/uq168cC8h0Qtppi23TbfJGQGQo0DDwSJb+R7JcbtRbZMBLjwyy/3/Vu513RdOrLj88P7jq8tuG53reRie0V12ed3pXqG1knVWXL/xg/4U/JrtMfNghPe6QGXco3ZPh8P0ZjH9+quftCHEzckomxBB7sOe1VM/1l/zMJZfZf2dAG5x/n6P16aXr0UwhxE1s7MtFAGZ+LgF2IYS4Vqf/Zoldf9bP0FN5vLkQf/H6FKqRvsCVyWNydSQlJDaF+ReSAfdDT+Yp35vBsC50jSnzcte6PmILliZsRg77FGYi6qPyMrkqSuFnFKYr4d4bpTsf0p0PWXipRWo06bwuHEjRd1/SWdQ61WX6Z/UrqmarQwiqEUF17ddZer2NUzIZ+UKByR9U8WaTkJQ3H1K+N31ld0r05M2FVN/rENQiWmd8UgMWQ5/N400vD58qC+xickD15iW4JsRWkJlwGPp0DjNlsPByi+o7HeQ70ebROOrhlE3cwQufJY2UIg6u4kmS51UIIYQQQgghhBBCCCGEEEKILcMdtCjdc24MzVUW7Jwcy674f+KYXWealKs+jbzFzFCaVtrC9WP6ql2sUHNmLENs3boFBxbGXRbGXYhj0s2Ye19osOMjjzMb3TAhrpd1eLm3747Jv2ySf15RufbNCSG2kNSwhV0w6S6EhC2pRC6EENdKhzD5oxoT3y5TOJBi4cXWRjdJiJ4kdSc2jfkXmtQ/8ijekSJsxXhzIZ1pH30DM1Smr7njFy0sP0kA7HmlQydv0NhnUNtzg1OyW4Dpa8KrCWCIa+ZNB3jTAfMvNDFTCmUpwsaN+9I3++sG479nMva1IjM/r9M+G9CdDzFdAytv3NC23OzMtKL/kSxOn4Xbb9GZCpj5ZZ24m7y24q4+H/Av3pli6NN5Wqe6VN7tnN9G/oDL0JN5DDsJiw88mmXuuSurwieE2EAKzIyBlTGw8wbuoE16xCY9atM64zP326ocVzchHcHCy0mngOEoJv6ozLZvlTjz3QpR5/p+PoqJr/Yc9qa2Ne+VEEIIIYQQQgghhBBCbA5btW95PckjJIRYL6NPFzDTBpV32zSOXFo19ZoYBid2FDixA1AXzkt2LIPJjAwXXcYw6BQMFodt+mcC8vvc9X8+hLhGub0u6RGL2ocefiVaHmg3oHDAJb8vhdtvoSwFMUReTPNkl6U3WsQedCZ9UgM2A49nIY6uKqza3QfpDzXOacX4N4ssvd6iMyUFEoQQ4FdC4iDGHbDY9Wd9nPgPUl1ZCCGuVXchREea4u0pFl5twXX42CV9gSuTR+XqSG+D2FS6CyFzv70xgancV45fcpkyQf2n/eAaNI51CZsRTslksOGylHVo9fV+yewuL665DadqfVfU5mdm713zuqPp+trXza99XQBjLeW7tCbd1izVrk8ZcbFGmnMBmBsbEtYRTP2kxsiXCow+XeD4v188XylOmVJN90oMPZUnt8s9/3d2wqF8X4bFV5bPgmLlDAYfz1F5t83C75Jl7oBF6e40hQMpuraBGyQfloq3p4k/VeT0WJZa3qGTMkEpVKzZmVvC7misjsZua+zOhZ/YBD+rCLIG9TET/UcyZ6QQ14OZMUiPWKRGkhCqO2ChjAvHzqAZ0Z0Lmf5FneZROTF2M4h9zZnvV9nxnTL9D2WZe14mCBBCCCGEEEIIIYQQQgghhBDiVmU4irAVnx/fITbWkXszlOdqDH8+T3rMlgnfxaYy9FQO0zEo3ZVBaw06GZsHGmUplFJorYnaMUE9QlkKO2dQvjtD6a40YTPGmwkAKN+TQX8vQv9h+6raUv29mPL3DTJjDumv2ywdbFN9t03srd/9FULcfGIfjv2bRXb9eR9m+tatzC6EEOsqhtnnGgx/Ls+2b5Q4+73qRrdIiFVJOFWIi+gIjv+7xSTHdy7Lp0wY/q9G2P+7NtP7XWb3OWhDwnW9GF0wAgjqEk69VcW+Zv75Bjv+pI/xr5doT/nJ5Z7MJrFmBmS2OQAEjQg7n1Rwbp28NIyW3+eiY1h8pYVTNhn8dI7MmHN++cfB1ErBoVz3z/8ABJYiNhSuv/y5iSwIMoogrfCKCiMEt67JTwUMfhhQeSTL0hutcx2eQoi1MFIKK21gfvyTUphpI7ksY+D2W9iF5LUe1CM6MwH1Qx5BIyZqxYStiMiTquQ3o6gds/Rmm4FHs1Tf6yQzmgohhBBCCCGEEEIIIYQQQgghbinbfr+E6Ro0j3c2uiniY5bBu0/kueNHVYq3pyncliJsxHSXQoJaiDcfycTR4obJ7XFJj1pgKGIvxrAVYSui+oGHUzCxcsn4EnQyDqFxxKN+pMsnCzylRi36HsiSHrXJ7b1QGEFVTfSiAf1XMYbPgMq3Y7L/z4jUiE3/g1n67s9w/D8uEbdlTKAQt6LsDpvMDpfsdgcrbdJcYWyrEEKIq9M43CW3xyW3w6V8X5rKQfkOKTYvCaeKW4ZTNkmP2egI6h+tMlXTJ74j6wiOPJZh7KMuY4e69E0GnLovtaYqqrcydzb57c1ehxri4qYR1GPO/qDKyBcK9D+YJezERL6EqtYqt8vFsJMwfO39Dn41QpkKbzZEWVwItKUN8ntSGLZi4o/7cIrmsu20UyYZLwlB1fM2k8MZ+mpdxuY6tFMmVqhRnzj2TT7gUN218nFOxZqBQyGDYRozpW5YxWshbgZW3iC3y8XKGctDqOeCqOoTE1zEkSbqxOd+NM2TXbyZgM5MSCQd91tO7b0OxTvTDDyWY+rHtet2O5HWRHrrvd9uxfskhBBCCCGEEEIIIYQQm8VW7VteT/L4CCGumQGpYYugEUl1zk2mU7A49RdL5Pe7FO9I4fZbZHc4KJWE+vTnNI2jXeqHPQxX4RRNrJyJjjRhK8ZfCmmfCTb4XojrzuCS8aXrtukU7PyH/Zju8qqDOtLM/LpB5+yV7V/edMjUj86NSzh37Bn7ahHTMeAas2Nn/76GUzYY/UoJp2hSvM2l8qaEJYS41ZTuSTPwWDap4BxpGkc8Zn7Z2OhmCSHEljL9kzq7/3E//Y9kaRztEjbX78Oo9AWuTB6TqyPpOrFlmSlFdlcyG0tq1MZKX/jS3jjsoa/guKxNxeSdKZa22ew42OG259vM77SZvCNFZEsV1UvEmtwhTbcfwpYEa2513kzIqb9cwkgZRF583TrotqK++zN4cwGpIZuwHWOmDYY/k4cvXf46TtHEr0U4RZPuUsjiqy3GvlI8v3zHZIupoTTv7S/juSbjM20MrVHxhQ9S1e0m9e3mSpsHQBuK+dtt7L+okd/nXnY9IW4VhqPI7XEp7E+RHrWJA03QiM6HTv1K8v/w4xCqlwRRo05MLIH9W4qOYf53Tca/ViS706F10t/oJgkhhBBCCCGEEEIIIYQQQgghbpQYok6MlTMY+1qBoBnTmQxoHpMqY5tF43CXxuELz4dVMJJKRfenye93KRxIXfa6kR/jzQY4JYu4G9OeClh6o0UsT+9NrfxAhvxuB7tooqxzY0V1cv5fRxodamJfE3U1WmsMU6FMhTJJfhvJbwxQSgEavxqx9Gab1okLYwZGny5iOIrF11tU32tDDHbJoju3DsVB4iSsevz/t8ie72Zh7NoG8JkZg4k/7kMZCr8WUftAgqlC3GqsosHAp7LEvubkXy4Qr1IzSgghxLU5+8MaE39YYuDRLDO/kEkAxOYk4VSx9SgYejJH4bYUqKRyZ+2DDp2pgPxel+yEs6ZgqrIgPeqQHrUpvd1BJUUHqY5YdPKavjMBpemQk/enqA/b1/c+3UwiTfk1jbME85+X4O5KDFdRvj9DetjGzBhYmSQ47c0GtKcCOpM+3ny4pUKcOkYqAF6hzISDO2DhzQfEoaZ92mfwydz55dO/qF9UbTEm6mrSIzbFO1PkdiaB0biraZ32mR1IMbxw4dv/2FwHM9IcvKOPI7suBFftIObRj2bJLMboHi9fI9S4gxbKVtd1VkAhNjMra9D/SJbcXheloH02YOaXdZonumgpHC4uw188t3Ncx1xyjCa+njewQbbifRJCCCGEEEIIIYQQQojNYqv2La8neXyEEJ9kFw1ye1zSow5un4mZMkBBUI848/3KikGNM9+rsv33S2S2OyilKN2Rpnt/yOm/rdz4OyB6Cusx1Xc7VN/t4JQNMttcIj8mqEb41RDDMrDyBtkJh+JdaTLbHOJAY2Us3AGb0t1pOjMB879t4FdkcM1mZzgw8FgOp2yx9GaL0p1psjtcdKQJmjHdBR80mGkD01UYjoGyFVZOYRcvCq5q0LGGOPkdhxodgY5ilKVw+y1Gny4QVCOaJ7q4AxbpURu/ErH0evt8e9YlmPpJE9E1b0IpQCX3rfZ+R0JpQtwC+h7OkB69MFY+PWKDgtlf1eUYIIQQ15m/EBJ1YjLbnXXdrvQFrkwek6sj4VSx5WS3OxTvTLPwSov6hx0iLzk4pEYscrtd6odW/xRsZgz6H85Q2J9CmYqwFdGtRGhTgYbSTIQVJOs2B0z2vtzh1H2axR3re7C/6WhN+gwU3tZYbVh6VOEPSTh1GQXFO1L0P5xFGdA85dOZDYhaMRiQGbMp35dm4JEscaDpzAS0Tnapf+Shr71PSNxkBp9IgqipQZvFV1tEnmbmFw28uZDBx3OYriKoaNwBi9SwTeuUT/u0T2cqYODRmPJ9GcJmlIRGL/qMNDmcoZp3uPNolVw7pJm90GEQ2Abzt9vseLFLfjqivm2FjwmxJjcTMfRhgDNoMf2TugRTxS2pfH+GvgcyxIFm8ZUWjSMeUUe+kIjerFwyKUXQkDd3IYQQQgghhBBCCCGEEEIIIW5GpbvTDDyaTaohAlonlRO7SyFoSA3ZDD2ZX7GqTdiIOfEfloCkeMLol4tktzukt9l0zgY39H6IK+NXYvzK8gqRcTcmbMV4MyGLr7aXLUuNWgw+niM9YjPxnb7kQs25qpv6osqbEEcaHWjicz+Rp+kuBLTP+gRVGZhzPQ1/Lk9mwgYUZkqhlEJrzdhXiyilaE/5TD5TW98bNWH0SwWyEw59D2TRWhPUY6Z+vM63c52ErZi5F5oMPpZj8PEcA5/KMvvbBo1DUiZYiK1o4o/LuP1WEroHUBA2Y2Z/XaczJRUchBDiRog8jVM0NroZQlyWhFPFlmO4SadfUAuJI7BLJvndLuX7M3jzwbKZpT4pu9Nh7CvFJGjyWovmSZ+gGlH/yZ5kBa0ZPdRl7JDP4jabkw+k2P6Ox86DHt2sQXPgFntJaY1dgfSZJJhqN6AzCoufVoSllYOpRkrhFEziQONXo+taNWyzGXwyR/GOFPWPvCRs+IkQU/XtDiiSmdDGbDLjDoNP5Oh7IMP8iy2ax6Tz5lbhDlk4RROAs89U6UxdOPlQ/8gjPWYz9On8suvYeZP2aR+AxTfa+NWI5vFkn3nvQJmTrQDPNfFSFrtOJyc/0p3l4VQ7iBg76ONnFF5h+QdY09f0HwkonYywPU2npJh8pkZ3QToXxK1n+PN5CvtTBPWI039bIfZvoTczcc30x+cNZQ4PIYQQQgghhBBCCCGEEEIIIW46p/76bnb/ZoYYmBxLMz+QolKywUjGWeQaPo++trSmbekQFl9rkd3ukBq0loVTLWP1QOJg+dLg6yf54epj2fJW77FIw9n51duRaq66fNbLr7ocQKnVz7kfXhzsuY1ej1c36D2ur/bjvT3X6WWpnln294dAqhOy+1QTJ4hxoggjBjPSGJHGjDRKgxUnvy9+KBQpIBleF5mKStnm8IE8Q3/20TW3UyTGvlYgO+ESOxpMiDKa7gMBUUGT+5FD2BcR/rlm23+d67mtk82+VZe75vIxVnMAYYzTAL8AmAb/+X9zeNVteLG96nKAFxur78c58/LjZz+WNVc/Nhi/KwNQjSPcQ5A5aDL8uTzZ/0uGYAcsPiGVoIXYKqycgdNn0jrTZepH9Y1ujhBC3JKyuxycsilj9sWmdosl6cStoHGkS253l9Gni+cvi/2YxhGP+d81V61AaWWSTsLqex0qB5fPcqYizc63OpQnQ6b3Oczsd0Epzt6VYuhkgLOVq6XFmvQUmB2N4YPVSUKpdhWMECIHvHGoPKLwB8HogDOnsRqQeSSLXTCwiyZ2wcR0LwTewnZM5WCb2vudLV8ZNDPhULozzdzzDWrvr1K9V0N3PqQ7H1J9u4NdNOl/JMvolwrM2g3qH61e+VdcuexOh4FPZam+11n9ubmB3P7k7bnydntZMBUg9jXTP63jlE2UpYh9zY4/KZOdcBj+XB5vPqT+UWfZvhJaBtWie/7v0+NZig2fBz5You2atDMWaBioJh2Lpx918C8Kp+YnQ8be9FEx1CYsKjstvLKB89/Kh1xxa7GyBjv+UR/Gudlv7YK5wS0SN6OPZxFUxvVLp8Zooi04A0i8Be+TEEIIIYQQQgghhBBCbBZbtW95PUk/tRACYNuZFmYMx3dkOb7n0uClbxtorcnvTZHd5dI62WXm55cPkqaGkjEiQUOqY25VXtrig9tKADhO70Fycawwwpjykk+pGpBvBGRaEQMLPgMLi/jfKVN9t03zeJe4C2bGID1mkxq2cPssrLyJYaukqms7RhkKw1YoE5rHu5dUeL1VZXc7ZLY7dGZ8gv/y0vf45p/4178RloFfvv43c90Y0L0dgu0RxWdMcr81aT+0xQeCCnGLyWy3UUpR+2BzjK0VQohbUd8DyQQ4kz+orut2pS9wZdL/d3UknCq2pOmf1UmN2FhZgzjQdCb9NYUfzWwSxnL7LTITDoYFylLkPvAoTwU4nub4w2mqYxdmoHJbScdg1HtSqpuWswSDz1/oAA2zEKXAH4DYSf5vtaD8usZsgnHRYx3scwnqEd2FkOaxLkEtwq9HmK5Bfp/LwKNZyvemWXqzTf1D70I1sS3EcBXDn8nROu1fcfgxqEXM/LxO1Mkx9FSOyItpnbwBHV+3iKHP5Cjenk7+/+k89UMeehPkLa1zx6KgdvkDl1+5sOz031YY+XyBwoEUhQMQVEPaZ4PLXjcyDQ7e0cfQokep7pPxQmKlmBlIkzO6dC8KpppdzfjrPu0Bg6kHXcKUlPoTt6bMdofxrxeXXdY80ZWqqeKKRe3kw46VM+iuPsmwEEIIIYQQQgghhBBCCCGEEGITGflintyRBqGhOLkju+I6fsri9F8vUbwzTWbCJb8nRW6nSxxplKHQkSZoRMnk9Ysh/Q9n0bGmebR3FVNx64gtg8WhFItDqfOXZRsB+w43KMea4c8UGP7MpdfTWhMHGh1orKxxftLtj8fk9T2QpXR3Gh2DDjXdpZD26YD6kQ7xLZY7Gnw8BzGc/UGN4f+ysNHNuSnEIYS/y1I+ZBIVICprtA3te2NqX40o/NQk+7rFjj8pc+qvpHqqEFvBx4VWuoubYGCtEELcopyyhVIKK2vg+1swbCO2BAmnii3Lm7l8MOtyKm+1cctJMDU74Zy/PDgVUBu2mN3r4BVMjFCTXwgpzoaUzwb4KUV9cOu+nIISNPYp0lMaq8X5HwCtIMpCmIPuEIS7FWE++TvMQefzS5fZakRnKqDyVpv+R7IMfTpP8c40p/9663VKpEdtrKyJjpMqnVbOxHQUOtb4lYjWaZ9eEyzMv9DETClGvlhg8kc1vOkr37/FctkJh+LtaWafaxC2Yka/VGDHP+ijMxXQmQ5WDYb2ojV0F0J0cO6JNYAr+CwY1JPb7lZWboMyILvLxSmbpIYs0uPO+UqO1fc6qwZTL2xEMTeQZm4gvezibYPLX4N2R2OGsLDflmCquDUp6H84S98DGbpLIYajiLua5okulbdkNlFx5aKOJuzEuH0WrRPXZ8KJGL0lZ2/aivdJCCGEEEIIIYQQQgghNout2re8nuTxEeLWVrgzRX5vimbW5PX7+4kt47Lr+pWY+RdaQIvyfWny+1MoU6GDCCNl4JYt3P5kgLHWmsVXWzfujoibVitvc/DBPrZ/5z0KB1zcfgvDNoiDGG8upDMVEDZXH6A0+FSOzJgNhsJ0FJltDtntLgOPZ9FhMmapMxuglEbZBt5MQOuMT1hbvl27ZGCmjGR81E2YV8ofcLGyBo3DXZBCn6uKPYjezhCddNA1E1AowKqDWU/+co8purs1wXaNNZ0EKLI7HFqnpAiHEDczd8iieEeayI8J6xKGEkKIjaIM8GsRfmV9j8XSF7gyeUyuztZN0wlxFXQI08/WwQAzbaADTRxq6j/aA4DlxWx/x2PglI8RQzejWNjpMLfbQZtbN7SlLUXlIUVFa+wquEuaKJOET6MsYFz9fQ/qMVE3OYBfbgZAK29QujONlTOIw2R2t7AR0zrtE1Q3f++QNxfiV0LMjMHYV4roSBN5McpSmK7B4ustll7vHXCa/VWDsa8ZjH2lwNm/r+Ivbf77vllZWYPBT+donfGpf5hM+3fm+xUK+1OkR23ye13UNezXADrSdGYCYl+T2e5ArPFrEUtvtC+pfmtmDNw+k7Ad41cjGoe7NA6vXE5PGTD2e0UyYw5hK8KvRCy+3Eo6guvRulcf9gqK0IHimYj2oLm+GxdikzOzBqNfLJAatlh4uUnlYGejmyS2iO5CSG63S+Xt9k15ok4IIYQQQgghhBBCCCGEEEKI68UpG2R3p7BzBoZj4M0FVN8+d67WgMJtLq2TAVH7xoYkUgPJUMtXH1w9mPpJlYOdFc81GylIjzh0F8KegUIhlomh/mEXuPJqu/O/bS6/wIDsDofcLpfUsI1TMs9XyQMo7E0qt2qt0WFS/RcDlFIXLg807amAysE23szmPAFuOJCZcAnqEdkJh777M+hQM/tcY6ObtqmFp22CZwsQKzA0ajjEus1jdls6KdYAWDOQ+41J6tjy4+Lgkzlapy5X2EQIsdm5gxbbf78EwNRPahvbGCGEuNUp8Cub83O2EB+TcKoQK4khal3o9LMamqFTPkMnumhTMbUvxdKYjZc14FxHy8dVETPW2md7iq8wVF/vpta87u7cwprX3Zaprr0RWVgazKAA+9zPav7BoVM9N3n42Z1UTljc96/nMJzkQdEadKDwzqZZ+EUfytQ4/QFxoNCBiVd1GIyhXraY3JOiMmhfeC5WMPjNQ2u/j+ssasec+qsKVt4gO+HQPNYl8pL7uf3bJZzS8sCfmTHI7XJQpiJsx0TtmLAVE7Zjpn9WZ/xbRca/XuTM96rSOX0VzIzB+DeLAMw912DhB/vPL5s699sINbYfY3c16WZE4BqEtmL4v5ti6NP58+sHzQhvNsSbDQibEXGQhKd1DKlBi+yEg5kyWHq9heEo+h7IMvaVIif/cgkra1A4kCI9ZmPnL+wDUTfm+L9dvGz7R7+aBFMBjJwJgw4z3xqgVraJrZVfA/cPnFnz4+NFl76qG3coym+HBHtiuoMXbuPKu7iFuHlkttsMf76AjjRnn6lu2hMo4ua08FKT7X9QZtef9tM+61N5p0N3fv32sUhrIr31Zm/aivdJCCGEEEIIIYQQQgghNout2re8nuTxEeL6G3gsQ+mezPngG0B+j4uZUrTP+Ix/vYQyFd07Q07/TeWGts3ps9BaE689l7qq2OOSyc2FuOFiaJ3waZ24sC9mdzuMPV2kM+1TOdgmPe7gDlhYGYPY1wSNmKAWEvsap88iM24nAdedLnGg8eYCIi/GzpsoSxG2ImoferSOb8z+nj/gMvzZ/LLjShxqZn7ZOD/mU1wqDiH4aQEU2J+vY+296PnrpM//NxyB6j+IoA04YJ+G3PMmdt5k7382QPNkl+5iRGrAonGsS3uyS+zd+PsjhLgyw59Lxsme/m4Ff1EK6QghxIbSkBq2MTIG8TpO0iR9gSuTx+TqSDhVbHnKAmKSaoIK7LyBU7ZwyiZ20cSwLx9oVJbCKZk4v2oQWjCzx2Vmj0tkr1MvowBg+yPTzL3fT/tojqBi0/woR+yZoJPnJrWtw+BXZzDcCwf6vzryIKX5gPHjHW5/vUkrbzK5O8XiyOatYhs2YmrvL+9ZiToxmW0Oo08XzldTLexPQshxoC/ZP+Nz1XyttMH414uc+puKdJJdATNjsO2bRZShOPvMZcK9WpNpRGw/0qH0yaDQRcFUgLAZkx6xyO9xV9hMMjNgHGhK92aw0gY6ToKr479XxM6b+NWQ5rEu3myA4RgMfy5P5a3Vq+jGXkysYHp7Ci9jMjDb5e436oSm4qXP912X/b9xQJGe1Aw+F1O7Q+GNKMJ87+sJcVNS0P9whr4HsrROd5n5VYPYky8aYn35SxFnvl8ht8slvy/FxB+m6C6EdCshYSumOxvQOu2jpW9XCCGEEEIIIYQQQgghhBBC3CKyOxxK92QIWzEzP6/jLYYYBuz68wHK92Uo35sBQMcaM3Pjx25FrRilFPuONjiyv3jDb1+IG8XtS4YVL77WojMV0joV9LyOkYK+B7Lkdrmkx85NjH9uzKZTNsludwmaEdM/q6/rxM2rsfIGQ0/myEw4xIGm8nYyJsubCehM9r5PtzwfQGHu8ZYHUy8nOUQT7Iajf7ZA4XY32Sd2u+T3JOPZcrtdtNZ0F0Imf1Allny+EJuW4SjQEDZk8JIQQmy06jttyvdl2fkn5VULYAmxkSScKra0zHab0S8VQCmCRoRdMDHOVRaM/Ri/GhH7lw+c6EjTOu1z+vMFqsOXr0ooro2TCTCdiMpLfcQdg8L9NaxigOHG2OUAu9+/pChqbCqWRhyWhm0KlZDxYx77324Rvdui0WdR67ep9ds0i+aqFVU32tyLTfofyGBmTNy8dT6EUjnYZuHlFoatMDMGVtZIfp/7MTMGygBlnAtei56UCWNfKeCULM4+UyXuXvrat/yYgSmfXe93zl/29pN5rEBTqIRsP7w8XLz0Zpv2aR8za2Clk+dJazBsheGo5Let0Dq5/dJdaQxH0ZkKmPmwvqwSo5kxiINkRkFlctlA0swvG0z/i23n/57ckeLeV2oUq+HHee71ZyjmnzLoe0NTfE9Tfjt57MI/68OvRNQPezSPdmVfFDc9ZSvGvlIgPWqz8HKTysFO7ysJcZX8xYilxTZLb7TJ7nDI7nCwiybpEZu++zL4tZAzf7fy+5UQQgghhBBCCCGEEEIIIYQQKzFS0P9IjvSIjZU1kknRNYTtmLN/f5lJvDeJwSdzEMPpv146H1iKgeP/doHRLxdxSibzLzUZeCS7IeHUoJUM5HACOX8ntpbyAxky22zMVPK6ckomOtJ0ZtYeIo09WHixxcKLrUsXmjD4eI7i7Sm2f7tEZzrAmwmIIyBKCjXoSKOjpKIpEcTRucvCJNzq9pu0Tvl0plZvk5UzSI3YpMdsirelUIZCR5qTf7Eo1TqvkJEB7JjojHNV169/2KX+YZfcHpf8Hpf5V5qkR2wKB1KkR212/if98rwIsYnN/67J6NMFtv9BmVN/dWOr1QshhFhu4eU2uT0prA34HizEWkk4VWxZVt5g9Oki3YUQbz5AGYraBx5BNcSvRISttXe2Vv7PY9expbe2xkyGY7/agdYKHSgyu9uUn1ha+waUot5nU++zSTciyvM+xcWQbUc77DjUIbQUtX6L6K40nUkfv3J9Z/Ex04rUkI2ZNjDTivy+FIalsAsmlXfaLLzYQlmQ3eFS2O+S2eagTEXUiakf9lh4aXkHXRxo4lpEUJPZh66FmVLs/scD5//e9s0SAJEXUzrYYnHEZuy4R+ET+8fRezIErkG+4lOau3TGPLtgMvy5PN5cQHbCIbvD5eRfLBLUlx9flAU7vtOXzO75TB1/8dLnM2rHzP22wfBn8+R2OrTOBLROdWke76I/7ldVJJ1zh1sEjsHcqIvTjZmaSFOsNnjq2UVmxl0O373+ZU21o1h8TKEe1thVsJoa9T96pEZsRj5foL3fZ+onNanyJ25aylaMf62I02dy9gc1vGmZJVPcIBpaJ31aJy9MCer0mWz7Rontf1Bi6Y02zfkYrqCfN2ZrFlbfivdJCCGEEEIIIYQQQgghNout2re8nuTxuXEm/qRM/c2A5tHuRjflpjL4ZJbinWkgmRA76sT4SyHdXTmKps/wPxnmuT07Lrne3v/9yze6qSuysgZRJyb+xItNhzD1oxrNn+6GPytR+nULqxEnf39C7ivHr1v7lJnMGD482aH8bgO/EtFdDKkf7RK3lzfa//mlj/PFXLN36K9yfPWxH91y78mWt5er19yOonVtkzofrQ/0XCeKVx9knXV7l1c01eqh4dwatmGbqw96OTnT37sd1urb2NnXe1xczl792Pfh92/vuY1mM7XqcsPQ2H7I42/Ok/JjNPDx09CxTd7fX6Lx1yOrbmO42Fh1+RODF78ea8TNBq2flskom8zYlQceS/dmqew2mb/DInYgvajxs4pjtUEA9p2ssXOywcdz+3ctg7f3lwlHNOHXB1fddn88s+ryOwvTPdvXiexVl+ft3inMmeDaqzL32ysEhC9yqDnccxtpMxkzY++MsY5YLE1n4aLd/0BudtXrv/v88vG2TSBNHwB1IDgKhZcVO77Tx6n/ZUkqqAqxCbVO+DQOdykcSJHb49I8Jp/LhRBiI12PAlLSF7gyeUyujoRTxZaVHrExbEV61CY9atOZDvArIX7tyoKp4vpYOFzmox/tASBd9ph4dIqTz28nd1f9qrfZyZt08mmmdoOKNblaSHEhpLgYUH4si2HmCNsxnUmf9mRA46h3IfR3DeySSeFAiuwOB7fv8ofV8j0ZrLRBZoeD6Rh0ZgKq73XI70tmspBQ3/XhlE12/EnSuRUHmplf1NGRxnAUTp9FoWQyOLlyD9fYMY8977TRCmoDFs0TXXK7XLpLIUE1YujJZJ8qHEgR+clxZeSLBaZ+Wic6d+JBmTD0VB4zbXD2r5cIG5c//jSOdPHmQnK7XbI7HUY+XyB6IubkXy5BDKNfLpAZd/DPeFihZs9HSWei71womaqu8+FNWwp/APwBRfeNNgDpMZuxrxUZ+WKB6WfrIJOEipuMshV7/+mFE2JunynhVLGh/KWIM9+rMPLFAiNfKOD7Kfg3G90qIYQQQgghhBBCCCGEEEKIG8NKG4x8Ic/x010JrKxR/yMZSndl8OsRM7+o0527MCDm6P/rdh47eYaCt7kfzObxLvm9KbZ/q8SZ71Yvu15kq+s+NmIl879tEjZjirelcAcs3EGLgkox8FiWuRea1N+X8n/i5pFpBzz61jxWpDkxnuPwrjwYy0PCNuswsO4iRi4m/0eLxAHEDRNCxWInh4qAiHO/FZz7m0hR6WQI0go/r5h4wafveET5eDLITpEMUare0aGVttkz2aBrG3y0s0gja9PMJgHYrCOvzaulU8kgMKNtEPev34G3sxeC/3eL/k9l2fWfDtA44jH3QjN53oUQGyq31yW7w8GwFXbeTC7b5Ug4VQghNtDY7xVxiibevIxrFpuXhFPFlhV1ln8Z/jik2jzeTcJTYkNVThYAGL13ju2fmuLgX9yBO9ohtf3aZtv7mDYUjbJNo2xzdl+aoW8fIjVskxl3yIzbDO1x6X84w+JrbeqHvKsK06WGLPofzZIZc4i8mObxLktvtvFmgiQArSG/1yU1YhO2IlJDNnbZpHHIo3R3BitrULwrTdSKOftMlc6UfGBYb5ltNuO/Vzr/9/F/t7A8kHzc5/h/NcYdrzTJNpLerW5K0SpYGLGmkzOZ2mtSGbIJHYPh/34mCRW/24E4qcga+RplJLOOuv0WY18tsPMf9hE2k+2ZGQPDUsz+urFqMPVjQS2i8labxmGPXX/Wjw41OtKM/14Jp2Qy+cMqx/7lHqxAMzTdJdWJiA2FlzGZH3aI7NVnk1yTSGP4YPhgnvttdDVRSuGNgNGFzBlN9sEMcagJqhHTz9YZ+3KB8a8XWXipRXcplJCquCkMfjpH6dzswWE7JurEDD6ZozMTrFjlWIgbJajHnPm7KoajMMpXdkCN0ERb8CC8Fe+TEEIIIYQQQgghhBBCbBZbtW95Pcnjc+NU320z/IiLO2DRmVrfcNRW5Q4mFfsqb7WWBVM/Fpgm6pJLN5eZXzTI7nAw3dXHPUQbOOKx8mabypvJRN5YkB13GPtqkcK+lIRTxU0h0w7Yf6rOyGIyRu/9fUUmR3M3tA2GDUbfufEY3fj8u+tK77KLjQvVSA9/K016PqJ0MsIINN2CwcChkAc+WsJzkuPG63cM0MhdeVXWW1IbcEiOZS8YOCcUKPDuiOHhZJVoIsJ618L5pUN4b0h4//q9J1cOdgiaMYNPZCnenqZ4exqtNXFX480FdGZDKgfbElgV4gba8SdlnLKF1ueOyBo6swFzL6xeKVsIIcT145QNMuPJZ+L1zkBJX+DK5DG5OhJOFVuPgpEv5snvSSoZejMhQT1Kqhia0D6zuWcBvFWM3T/H7PuDeHWHQz/ZTRwphr88h7pOPeE6hM5kQGcyYBGw8gYDj2QZ/mye0t1pFl5urXnfsIsm/Y9kye9x6S6ETP+8TutEd8Vy6Y2jXRpHP54xKOnUUyaU7s5g502aJ7rM/LK+LhVcxXK53Q6jTxeXXWa4BlGYPFGpUZvSXSl2/aaOFWq0Ai9jcOjBHJ1zMz59UtTRVN++EKCOvOTDx8fPfXch5PTfVOh7MIPWQJxUa20c7RLUrqynLD2WfJA8+0yN4h1p0sM2Z/6ugjcXglKEjmJqR/qKtnlZGpyzkD6iGJiNMC7bVE2QB7MDRgg8nD2/5Oi/nmfyhzXGvlZk4o/LQBIGjjryAU1sTmZasfvPB5ZdpswkZN6e8tcUJhfiRoh9jT8jE1gIIYQQQgghhBBCCCGEEOLWUbwrg441nRkZTLEW+QMubn8yziFsrXyeU90kp+61BtYwJ7cC9vyuzdm7XbqFlcd4rJXhQN+DGTITLmbKwLAVaE3Y1tQ+6CwbJ3IxJ28w9FQS6qt/uD6T8QtxvQwtdLj9RJV099zk/Y7Bm3f208jfXEHOzqBJZ/DCa97PKcZeD8h5EfNFV4Kpa9WB8ndNFAqNRqGIchoVQPp9E30ohc5olJcM5lQozGPmuoZTAZpHuzSPdhl9ukBut4sONDrWZCdcshMu5XvTnP6biozhEeIG6P9UBqdsUT/sMfvbButcPFsIIcRVKt+XRSnF7G/r8plIbGoSThVbjttvkd+TYu6FBrX3r64iZk9ao3RSnVNcnThKepIrJ0qYTsjt3zhGI2f3uNb6CRsxM79sUHmnw8BjWca/XqR91mf+peZlK+WlR23yB1wK+1KE7ZiZX9VpHOle8T6mI5j5ZZ2RLxSYfa4hwdTrIDViMfz5ApEXY6YMKu+06S6GSUgdKNyeYvgzebqLIdO7XaqDNs2iyXqkoyNPM/+71jVvpzMdEIeawSdyhK1knxx6Kk/lnTYzsV6f448GZxqyBxX2kiIY0NTuUsRpiBxF7LDsx12E4V+u/MF27z8bZO63DSIvxrBN6oe98+FdITablcLr3aWQ5tEurbP+ijMJC3EziXTys9VsxfskhBBCCCGEEEIIIYQQm8VW7VteT/L43DjKgOmf1UDGXa7KHbTY9q0ShqXQsWbx9Rbt0ytPepoKQuLrNWP8OvJmAjLbHaycQdhceQc4c0+KVLNNfj7i9l+1ee/pLGGmd6K1cGeK/oeyRK2Y6rttzJxJYZ+LXTRRShGHmrgbE1RjlAVWzmTwsRy5nQ5n/752yfa2/2EfyoTK2y3qh7or3KIQG++OoxUmZlookkPqXF+KQzsKdPI3bpze9VTfaXFY92NFMc2sBFPXyvCTwGnsaKIihMMRnXuTDzrptxWp4waqpcCBeCgpChPeef3G0kw/W09Gs5+7ieJdKdKjNrndLtu/XebEv1u8brcthEjk96aIg5jZX0mVVCGE2Czy+13y+13iUFP/YP2/c0pf4MrkMbk6Ek4VW07USTomo3Z87cFUBaarUJFGG1CeCRg92iVXjYgMeONrxXUJs92KvKoLwPBd82x/ZJpU0acR9N3wdnTnQyafqZHd4TDwaJaJPyoT1GOCWkTYjDBcAytrYBdMrIxBUI9YeLVF7b0O+soKYS7TmU5OBqSHbVqnpJrverJLJtt/P6ncGXZjIi9m6bU2cZAcENxBi8KBFN5CwJm/rbLwnw5uZHMvK2zGTP2kxthXinjzMPnDKqV7M4x8vsDIs4scuT3L9DVUTjUbkH9J4cwlodTKF2OCEfCiy5+wUZ/4tBV1Y0z3wvrZnQ6GrTj5l0tXXClWiOtNmZDb7VK4LUVm/MIJicaxLp0pn/qH3ooVsIUQQgghhBBCCCGEEEIIIYQQN1bU1bROrRyyFInMhM3YV5IJeRdeblJ5p3P5MG8ckwkCWs7mD6MtvdUmO5Gc1116vb3iOmHG4MMv5sguhOx7ocOu1zoc+Uy257aHHs8lY8FSJsOfKwCgI01nOmDpzTads5fucxPfKZMavvRxy+93MSzF/EvNy1ZWFWKjDS10mJhp0bUNpgYzHJ0oEFnJOB/julT82BheSoZBX6n43JCzYFzTenL5m0fnfg0PeTe+URdlX2vvedTe8xj5YhKYMzPG+aIUQojrw3AUUWfrvDcIIcRWULwjhVKK6V9eOlmSEJuNfCsTW07YiunMBgx+Ok93sbpiQMpMKdLjSYgqbMfnKv0prIyBU7Zw+02cfgs7ZwKw+8c1WgWTbD0iPPeqafRbEky9BoO3LTF429JGN+O81imf1mmf/B4Xd8DCLpq4gxZxVxPUItqTPu0zPt7M+swAFjZjgmZEepuEU9dTbo/L4JO5838rS3HmuxXiQOOUTQYez5Hd7hAHmrnnN/8MT53JgKmf1Nj2zRKVt9rE/oUv//s+bDEy2eXM7jQLI+4VbddoQelnCm1D9XMx/hiwhsNZdxDmP23gDcH27y4PpgJkJ1wqB9sSTBWbhuEqhj6dI783dcmyI/9qfgNaJIQQQgghhBBCCCGEEEIIIYToxUob7Przfs7+fYWgKmGUZSwYeDhD6Z4MOoIz36vgL65+jn6k0cIAJov5G9PGa+D2JwOzgkbvcQetAYtmv0FuMWbnqx1O33f5sROGAxjJZPKTP66R3+MSNiI6U6uPAwqqEU7ZXFbR7+P2aa0p7E9RfXeVYLAQGyTTDrjv0CJawfMPjhBavasLi1uDOQf535poNP72zX3wCurJe0Fm3KZxRCpUC3HdGGDYSsZ9CiHEJuNXItIj0JmWrInY/CScKrakj8NcE39UpvJ2m+o7HWJfoywo35uhfF8Gw1ZorVGfCJgGzQh/MaRxuEtQixj+XNIxG7qKyX0uwye6NMomRx/qPeOeuMloaBzt0jh6Yzoymke7FG5LsfBi69qr/N7KVFINse+BDG6/RfNEl7nnGox8sYDTZxG2YrI7HEaeLhA2I6Z+WksCwTfJY96ZSWbmzO1yMdwLx6t21iRfDxmY6bIw7KwYls9XA3YcaWPeAWEJ3DNgLyisJcCAypc1+tLM3mVpS9HZBsSazhikpy5dJ5RZ6sQGswsG7qBN6a406dHlM9jGocawkteKkVLE3k1yIBDiCsVszfPfW/E+CSGEEEIIIYQQQgghxGaxVfuW15M8PjfO4utNRh4rs+M7fZz5XpXu/PpMJH6zKt2bpnhnGjtrgAFKKcJOxJnvVgmbvffM8XoDDZwqF69/Y6+FCQOfyqEjveYQ0tHH0tz+mzalqZDSVIj+p/3oj08DX/TbcJLzxI1DHoTQOLS27dePeuR2u4x9ucjUjy5Uq/GmQ5rHuuT2uOz5x/1M/bTWM+gqxI1y21t1Bmd9NPD6Hf0STL3FeUfT+CdcorpFVLUp+MnxsHubJtixwY3rYfH1NuV7Mww+maM9GUj1VCHWmwlWymDg8RzKUFTfl2rwQgixWRhOko/QkSa+TtlU6QtcmTwmV0fCqWJLij3N2e9XKd+fBFH7HswQVCOMlIHhKKrvdqi+3Sbqasy0gZlSxL4m8jQ6SHomrbxBatCi9n4H/bk8ZqgZO9KlNmRx9IEssSVVU8W1sfJGUglTslFXTBmQ3uaQ2+WQ2+lipg1aZ3zmnq+cr26rDLAyBqkhm+HP5TFMxem/rqBvtsmdYqgf8SjekV52cStr0MqZDM34lBaXaOdMZrelmB9xKS/4jJ726FtMgq3NGhSfX97R7I9oMK+yTYZi/jMm3c/MYGUNdv1Z//lFH4dphbieDEdhuAozZeCcq3SdGrZJj9iXrDv9bA27YDLwaO58MBWSGXc7k7K/CiGEEEIIIYQQQgghhBBCCLHZVN/28KeqTHy7xLZvljj2bxdu2dGB2/+oRGrAJg413aUQvxLRPNmldXzto1PTQUisFLGxuQNq418voiyY/VVj7c+3ZfDhF3PkZ0MGj/ukD50LiCoFyT9QSaXTpbfaV/S4AbSO+3SmfbLbHXb/k35mflmnfTo5zzzziwaFSZ+hJ/OMf6PE6b/tXcVWiBsh00z2wzdv62ehL91jbbGVhF2DqG0Qtw3ab+XxT6UgMgCdHBNTMf5uaD0Qw82wa8Sw8GqLgUez7PrTPqZ+WqN9Rsb6CAGACX0PZJLxsylF1NUsvtKkdSogu9MhqIX4lct/oOp/JEP5/sz5Ak/dpXDNk3cIIYS4fqy8wfg3Stj55Pv7/O+at2x/iLi5SDhVbFmxr1l8pUX13Q6Z7TapQZvY19Q/6hDULxyho1ZM1Fp+3YHHs5TvyQBJFUAv1oRpxdn7XSo7LBx1+Y7EWK+9IzdtX9mMeQ3PvaL119wO48o6XsM4t+Z1U8baOwPyhrfmdfuz7TWvC+A+N7LmdevdtZeSLLhrbzPATDN//v8jLzSo5kwqP9q34rrlrx+5om1vdff81iA64xBN2USnHQgMVDHE2uVh7umSHQgZOrfuofowwbsx6fdg27dK57ex9z8bBGDhMwpvLPlSbbfW/olt/pkDV9TmK9lPPzO42vPtEbUMFv6XEXQ3SZQOzgXEgaY9FxB1NY6rOFAJOfBu85JrH3L7eZAKAF3HwHcN8jMhtTfznNmZWbbutj98f81tBghbMUf+1fwVXUeIyzFSisyYjV00MV0DM2VgpNS5/yuMlIHpKpTxiarn9QhlXzpphNaa0acvzP5bfT+ZnEJHyb4rxFYVo4jYehOpxFvwPgkhhBBCCCGEEEIIIcRmsVX7lteT9FPfWP5CmEw6n1IYDsRXNjxjSxj6bJ7UgM1iKs1ro6OwQrh07J6ZntvRv+5gVDXFnYsrbmMzsPIG6TGHVp/B9L8cX3Gd+/snL7+BfuAOOPv50iq34pJVvc8Tl51PVg2L8N/1sd+0GftakclnquerpNY/7BJ5mrEvFxn4VJapH9cB2J6rrHobC17vsVf5gdaqy0vpa39RjLnVnusc7wysuvxUs++a29EJLp2I+mKu1XuMXc5ZPVAzmqn33MaR6uCqywv53hXldpUXV11uqN5VDO7KT626fHt69f0rftqk+70yA7UO80Mrj4PL53rfF8tc/fVS7zGW8Z3ayq/li322//Cqy79Q+qDnNqpjmVWX/6bSe7yXa66+j7lrGAP59YF3Vl1+2Os9fvG91rZVly/42Usus6Yg96qB2QB10WcVDUQpaN6mqN+h4FwF3YLt0eudYDRVW3W5uYZjaS/l361+7Kh4yfNaBbqzMWMvBIx9vcT8fSa1feeGvn/h7DW3Q4ibUd9DGfruz6BMhY40UTfGKZmMfiUZJ/dx4DQONX4lRJkKZSoWXmnSOu4z9rUC2QmXoBnRPN4lbMVU35aqqUIIsRkMfCqLUzDpTPssvt6+rkV4pC9wZdL/d3UknCq2vKgd0zjUvaIZXdwBi6gTc/Kvlog9Tednu65jC8Wtyk8bpJoyY+Ja9D2YofMXWVAaoz/Evq+DtauLKkWoy7z/1+82aBzQZE5C9rjGuahfNroZZn77BDMbM/RPpiCGFx5IYeUN8ntccrtdMuMOADrWhK2Y5okuzeNdtv9+GYB7DlYBqBVt3rmvSGgr7n+9Sv9i95JwqhA3kjIhPWqTHnfIbLNxByyUUkSdmKgbE3mauBsT1CO8uZioq4m95HfkxUReTNiMibvJyRt30KJwWwplJpNPhO2YsHXupx0TSSBVCCGEEEIIIYQQQgghhBBCiJvC6FcLWGmDhVebt2QwFaC7EKBJ0ed1GGq1mMvne19pBfNjDoVqh/uer3PsriyN/tWDgBth6KkkrHn6vrVPKH8jRXdHRHsjUn+VYvDxHDO/rJPfnyK308UumehYJxVthNgEjMGIyIDtM21AYYcxjZxFNedQKW/O15i4OvYkFH5lgIJwAMJSTGAYaEPR2g1hcXNOSHClOsMGJ79qs+PZgMGDEZ1+A79va9w3Ia7Utj8okR62ibyYuV83aB5NxsYrC4Y/m8fKm7ROdDHTiuwOF7fPQuukqPzolwroEAxb0Z7ymXxm9SC6EEKIG2vg8Sz5vSm01kz9pEZ8ZfXnhNhQEk4VYgVBNUoqrXq9ZyoT4mo1+iwm3u+gIo02ZYaFFSnofyRL3/0Z7Adb2Pe2UVdwjkQ7itZ+aO1XEGtUmFx2s1IGfDx1XdiIqRzsUDnYwcwaOCUTp2iSHrMp3p4mPWxz7N/Ok9vp4ny7n0ItoFgL+PRzC8QKDA1TY9LhLG4wlUwAkdlmkxl3SI3YGJYibEW0zwZU3+3QngyuOkTanQ+Zn5cTfkLEOvnZarbifRJCCCGEEEIIIYQQQojNYqv2La8neXxuHHfEIjvh0JkNqLx561Zxqr3ncegf3MHjk2e5b26W36TT+NaVD/eb3ZmmUAkZmA64+5UGsQG1ssWRe3OEqY0N96S32Qw9mcMumnQKBt2CuaHtWVUasMEdsNnxJ/0A6EjTmQ6Yf75BUJPJksXm8dbtfTz4/hI7ps9V4J1PfsUKfMtg8kCK2QkZN3RTmDfghRTUTfoUYIA2k99GM/ld+VZMfK4gczvcxMfRaxBlDM583mbHzwK2/yZg6nGLW/cTgriVuWWTyI85/j8tr9StQ5j5RWPZZQsvtc//X1kw+uUCTtmi+q7H4qtthBBCbC72ue/D7dP+DQmmSl/gyuQxuToSThXiE7I7HQq3p1h8pbXRTRFbnBlpUCCVv1eWHrMZeiqHU7KYf7HJzn9+jd1JhkI769O2zSZqxXRaMZ3JgNoHHu5gh23fKjH4RJ7ZXzU4+1AZFWuyzZB0J8LxY7quyVL/Fn1AxKZiF00y4zaZbQ7pcRvTNYj9mPZUwOIrLdpnffyKVJEWQgghhBBCCCGEEEIIIYQQQiQGn0gSNlM/rm5sQzaBluvy1vAID85M89DUFC9OTFzVdo7cn+fUbTEjpzwGpn1KiyEP/brK0Xuy69zitTMyBuNfL4KG9hmfw9/o27C2rJX/OZ/WfxsC0Dzp050LN7hFQqxsoT9NpeDQV/fRwHv7SuTbAaWaT74VsOe9NiOnupw8kCa0FW43pp0z8XIypHhTmTbgJ1nQQD5GawMiUCEQQ1SC+uMXgqlbXVAwmH7UYvSVkPHnQ7p/WGL62TphQyYHELeGwadyKFOhDDBciLtrv64OYepH9evXOCGEENds+tk6u/6sj8yEQ26ve746thA3A/kmKZZxByyGP5+nebKL6Rq4/RbTz9aJ2rfGlzczYzDyhQLN410qB2VeJXH9DJ7sMn7IY2nMRhuSTkVBZtwmNWJTeatN6Z40/Q9n6cwETP98CX9RgmtXojsfMvvrBqNfKhB5MdNhTGQZNAs2zcIVlJ4V4gqYaYVTsnDKJnbZxClZuH0mVtZERxpvLqT6Tof2pI83F8Kt8dFCCCGEEEIIIYQQQgghhBBCCHGFnKJJ+2xwRQPut7KFbJa2bZMJg2vajp82OH1bhtO3ZSjO+9z2RpN9b7eY3efSOHJjH2yrYDD+tSIAZ75fTUKe/8XADW3D1YjHYqk0Jm4ar943uPKCOOahIwv0zwbc+Xpz2aKFUZvD9+dvQOtETz7w7LkJBL7VgoGYir9xEwpsFq3tJseHFSMvh2S0xc5/1MfkD2t0Jq/tPVLcnAwXcntT2FkDZSmckomdNzEcRRyCN5sUTwhbaxioZkF6yCIOIWzG133cfOnuNKV70oStGG8+oPZeZ9Uq7OX70pTuSAMQdWNi2eWFEGLrieHUXy2x+88HKN2dlnCquKlIOFUsYxcM3D4Lt+/CrpEesWgevwF1oTeBwoEUyoS555q9VxbiKmRqIYOnfYZP+sxvdzh5T3qjm3TDGSmFnTex8wZW3sQumGR3ONi5pBR9/0MXOtHaZwMJpl6l5rEu89kmg4/neOrXC7x7bxENZNoR9aJFrbyOVVMVWDlj2Sx0yoDMNgen38Rfimif8dESRrz5KbDzBva5EKpTMnHKFk7JxEwZAOhYE9Qi/GpE/VCXzkxAZzpAB3qDGy/ErSNCEW3B0uxb8T4JIYQQQgghhBBCCCHEZrFV+5bXkzw+N45Sitp7EgC8mAYMvX7nXGuDDm98tsQDz1UZ/nyeONK0bsD4MHfQYuipHO5AMjateawr1UeFuNEMg8MP5knXQ0qLAUakCR2D3e+1Kc9J2mnTeC4NIfCZDgzIoKuLxY7B1FMOznemmfjDMmNfLTL/YoP6BxLguFVkdzkMPpbDyhsodeEzutYaHUIcxlgZRX6fS36fS3chZP53TbyZC585DAeKd6XJ73ZxyhYYrLAtTfO4T/O4hzNgU9jnYjgKbz5k+md13AELZbBsu5BMwuH2W0mVUxOUCYZpoEzAVFhZg+LtKYjByhqkR2xKd6WJfc3875o0Di/flw03aavWmqP/3wUpCiGEEFtY+Z5M0ifywfUvtCd9gSuTx+TqSDhVLNM87jP14xr9j2ZZer1FdyEkqN86n2J1qFGGwh2w6ExJR4tYH0ZXkzmlyR3TTFSb+K5icp/L1P7UTVM1VdkKM6XQEUSdODnrcRmGo7ALJlbeOBdCvfj/BoZjnF838mPCekzrlE/jsMf2Pygv21Z2u0PlTTnhdLWi7oXj991v15Yte+ORMvXi1VdRVQZkd7kUbkuR3Z4EXavvtpn/XQun32T0iwWcskUcaAxb0Z7ymfxhTTpGbhLKArt4IXia/FjYJRPDSo5bcaDxKyF+NaJ12k/+X4kI6pE8z0IIIYQQQgghhBBCCCGEEEKIazLwWI7CgQhvIaQz5V8y6P9WMtqokw0CKqnUum43TBkc/HSRB35eYfRLBaZ/Vqd18voFVEefLpDdlYwv6MwEzD3XIKjKyWUhNkqnYNEpJEOI97zdRAELI+s42b24ejFw2oJCDHtv3fe/XvzFiOmf1xn5QoHhpwr0PxSx+HqLzlSQBBT9mDhExjFtMX0PZeh7MAMa2md8ah96+JUQfa7i6cWcfpOhT+dIDdts+1aJqB3TXQpx+y3MdBJs1bHGr0V050O6iyFKgZkxsDIG6XGb/H6XwoHkM5iONJGvyU447P1nA6hz43+jbszsbxq0TviUH8zQ/1BmWdB1JZEfc/J/XiTuglM2KN2TIb8vxfDn8vQ9mCWohdh5EzNjYDjJtqrvdWR/FkKILS6700VHmsYhmXRD3FwknCou0Trt0zp9a1RK/aTqex2yOxxGvlTg7Pcqy4K5TjMmU4mwOxrL0wRpRWvApFM2N7DFYtOKNalZyB7XZM5q0NAZh5P7s1QHLdjsoVQF2QmH4h0p0uPO+TAaJFURo05M2Ep+ok6MmTbOh1BN90L4NA40QSMibER0pgPqh5L/B42YoBERd1dOuepY05kKmPtt47rf1a0s7mgiL2ZpIk2taBPaits+SB7TAx/UOXIgT7XvCjqVVTKLaW530uFipQ06UxfeL9whG+XA2FeL6EBz6m+W8Bcj0uM2418vUr4nTeXg9Z/JRaydmVY456qg2ucCqE45CZV/LGwlVVA7swG1jzyCahJCDVvS0yXEZrVVZ7TaivdJCCGEEEIIIYQQQgghNout2re8nuTxuXG8hYDcUAa7aJLb7QJZIi/mxH9cRN9KGR0LHpyaYqDTJlaK10fH1v0m/IzJqb+qsOMf9DH65QJxV9M67TP/YoPYS8ISxTvSVN7pEDau/hxx/yMZcrtdvPmAyZ/UidtyvlmIzSC/4LPv3TZuJ6adNTh2b26jmyTgXPhMwUi00S3Z9FonfI796wUGHs9SujPN8FOFS9aJA830z2u0T0vBmq0gO+GglOLM31d6Tl7iL0ac/X4Nw4XBJ/PkdrlktjnJ551TPvUPO7ROrb5fuIMW7pBFUAnpTCW3V7o3TWFfiva0DxpKd6YZfbpwfixt1I5ZfLVFHCWBVh0lVVh1BHGY/D+oXfgs5Fdi5p5rMvd8k9EvFsjucLALDjqEyIvx5gKW3mjf0pO1CCHErcDKGzhlE2/uxhzvpS9wZfKYXB0JpwpxMQ0zv6iz7Vslxr9RYvKHNXK7HCaebeG2khBdaEPkKtymRit491tZ6DHDjbi1uDOa/ldjrBb4Bajeq2jtVMQpRbV59ZUqbxRlwfjXiqTHHLy5gMXXWoTNmMiLMUyFmTWwzv+YuIMWUUfTmQ0Ij14Inob1iMhbpcTqCrf7sRP/YZGos/bripW1Tvsc/58WOfvdOwFIt0J8W+G7Blop7ni3zquP9xHa5wLFWmOkFHY2CRpbWQMrb2LnDKxcUj3TTBlEXkz9sEftA4+gGlG4PUX/QxnSwzY7/2E/cTfGLpjkdrhUKm06kwHVdzv0PZilcax7TSesxNVTFqSGbTJjNulRG6ffOh8m17EmqCUh1MbRLn41JKgkf8e+vBaFEEIIIYQQQgghhBBCCCGEEDfO5N/XsFQbgNSIxbZvljBTBpkJh9bxrT/h/sgX82QmHAxbQadNLe3w+u4hAifmk+WyHh441XN7k15p1eXVZ0Y53YwZOBiRWtDk96fI708RuWB2QQHFe9JExWT9OKVpPxAT91/YxuITlVVvI7fLRRsw8791Mf/FMCuVArg3O7XqNtJm7+d+OF1fdXnFz/TcRjdefUil+tV4z23EurXq8pTZOyDVaq5eKXdv30LPbfSy153tuU7ZWv2+9HpM637vir9uZvXB16OZ1Z9XgKK9+mTpZavdcxvZHvvYjnTvx7wduasuj9cw0LnXY/5I5ljPbWTuXP2+HD45QuFFhVVL/vZ2aZqfitlrXbiP7XD1Ce9nm/lVl/tR76IfxzuDqy5/PHOk5zaK7upVpT5o9w72N8LV99MzXl/Pbbwfrn5sqAW9XwvN4Nz+E8fsUhHxCYdTd6Xh3NiuPrf3fnwgv/rr+kSrf9XlAK8vTfRcZzVa997Pi+7qr9leywFqv9x2/v8LwEIcUzgZY7U0Rgzqu00MxyC3x2Xsq0XmftOgLlXIbmoDj2VIDSVjcIv/9yLugZXXc4xLg90xUOfC+83bs9suWediKfvy701L534vTCYfjoww5oGT8wypZL99+b5xak+m2P/PX1v1NlZq5PSzvd/zhBBCbE3Dn08+X8/+Wt4LxM1HwqlCfELkac7+oMa2bxXZ+Q/70LGmMmAyfZdFc9AktpMvziPvdxk6HJBdiGgNyktJALGm+L6m8J7GG4aFJwz8Pm6q8LIyYPTpIu6gzdlnqnSmbtxsYeqiarLKVIAE4tZbJ2vxu88mnbqOF/Gpl5bY91GDD+8qcNv7DUanPfjHA+fXjyNN2IwJmxFBLaJ92qc96Sczslz09NQ/9Kh/6GEXTUr3pCnelkLH0PdQhvx+l9nnmiy+1iK322Xsy0Umf1i9ouCyuDrKgvSITXrMIT1mkxq0UKYi7MR0pgJaB9v45wKoQT365DlMIYQQQgghhBBCCCGEEEIIIYTYcGEnRhkKHetbIphaujtNfm+KsB3hLUW899gYc6Xsdb/dMGcw82QSfnIXYgbeCbEb0C1DfafJwAchZh1QYFYVxZ+YND4bEa6e6zhPfzxEwDCuS/uFEGsT1g1avyjTN5uM0/LHNLXHgd65SXEjGQaL92j6347Z+fcR8w9B69ryorcGw6C++6L3mf9jEvRefK3FxHfKDH02T+RrWie2/ueJrcYpG/Q9kCW31yVsRTS+qQhGN7pVF8SWwet7hxmuNHng5AJPHJnhzZ2rh++FEEKIi5XuTZMZTQqLBVUZ0C1uPpKoE2IFUTvm7DM1CgdStE/7VP/n7Zess7DHJrMYsecFj/qIyZkHUkTuzRNCFNdA6wuBU60x2+DOa/JHNM4C1O5W1O9QYNwc+4MyIbPdYewrRcJOjGErpn5cu6HBVGBZdcb8/hSVN3vP9Caunp8yOXRbnjvfqxM4TVw/+SBbP+JRfadD2IyuuHptUIuYf75J5c025fszFG5PYRdMtn2jyMm/XGLqxzXGv1lixz/sY/HVFvVDHnr1yS/FFVC2Ij1iJWHU0YvCqO2YzrTP/BGPzlSAX7l0ZjghxNYSa0W8hplIbzZb8T4JIYQQQgghhBBCCCHEZrFV+5bXkzw+GyOsJeeyw1bMxB+VCZoRi6808Stbc7BmepuN1poT/z6pyTX31X03vA3dAYPJzy+vmGjddaHSnLEIxR+b5F40qX5n9fPPA49nye1ysXIGwfXP2AohVuFP2TR+MAAxBINQf0IT5za6VeJy6reZxA4Mvh4z/EqEfhXCIZPWFyIZ+X2FwmbMyf+4yO4/H2DwsRytE0u9ryQ2BSNjsPM7ZcxUEjr2qyFn/q5C/p/3rgC8EWbLOV5wbZ44PMMDJ+dZuCdN9Z3eVYCFEEKI3K7kO/j8S80bdpvSF7gyeUyujnxFEeIyolZ8PhyX/vKJFdeZBnJ7XAafzLHz1TZTP67jv7D2Lz2GurLgV9Zd+4xNH9ZG1rzulR5AvzH6zprXfa+zxikSgVcrO9e8rnGFVTVzVrf3SucMuiu/qauKwnnBQS0p4pEYItCnFFY6+eLbmQ6YfK1F519dPtRZZuaK2n29WHmD7IRDdodDdsK9cHnaoDMdLAum5p8fWGkTKxpJNda87u+VD15y2cKpaV7+m3sYeCTLn//VG8uKzh7prn2f/m17z5rXbXWd3iudo6/wtTLXWHsP7rPh7WteN/frte/PAH/a//rKC/ZBq5yDF8qYuYgIi8K+FJU/L9IZNXtu1zFWPskUAvPAUkez4yc+RgTu/3WU2dtc6t2Y0Q98hlyDgc/mqY1YVMYt6sMW2rzw+Oa+cvyK7uOtyLAVqVGb9JhNZtTGHbRQhiJsRXSmA+YPe7SnAoKqhFGFEEIIIYQQQgghhBBCCCGEEDcnwwGtNXbeROc0Tr9JdkcfCy+2qL679Qb723kTvZlP8caQfc1EoegcWKWhJuz+835MxyAOYjozAQt/IKUZhdhIzZ/1QazIf2OBY8W+jW6OWIPmbpPmhKJ0SJM7HePMGuR/qGj8vlQDuFKxD+2zPpkJBytnEDa35iQXNzu7ZJDb6WK4CmUpCvtSGK6i+n6HxhEPb2bz7/uNjMuv7hjnMx9NMfBYls50QHd+87dbCCHEBtNJ34e/KO8Z4uYk4VQhrlHzWDepVDe+9oCbuPkYswbOLxx0ThPeG2KeNNEFTe39Dt25EG8+uOIqkxslPW4z/vUi6qLKrmErYuHVFiOfK+AvbdyHmoEdVZ7+37xIs5JZFkwV10/27ib2kE/rnTyBqel4DvE6fTpw6xrz3Lkor5CEuEPX4Mz9KWb3O5QmA8qTIbtf9YgsqA9ZtPpMWv29g7G3IsNRpEeSMGp6zMYduCiMOhVQ+yipjBrUNvOZSiHEjRChiNh6b6Rb8T4JIYQQQgghhBBCCCHEZrFV+5bXkzw+GyP24fTfVsjudKm918ZMGWz/gzIDj2dJj9tM/7S+0U1cN1bRwCmbm3oC4sIPTKy6wh+N8e69/DiZzJiN6Ri0J30mf1ADwP4/ZG5UM4UQnxDMWujAADTWkA9XNi++2EiWQfVOaO5QbP9RiLH15mW4YZbebJPd4TL0mRyLr7Xpzkn443pSFox8sUBqyCJqx8y90Fw1XDr+zSLpURt10cBRHWsWXm5Rffvm2vF9x+L528b4/HtnGHoqx5nvVje6SUIIITY5d9AmqEXEa69ld82kL3Bl8phcHQmnCrEO3EEbv7J5O4bFtTHOGDi/cYgHY/zP++BAeF/yJXnpv25vcOuuXGrYPh9M9eYDqu926Hswy8jnCnQXQxZea21o+5xMSF9m65w8uhk4wz7OlxYB+PnsbeuzUa0pfxgQ2aBiLgmc+lmDuf0ujWGLHa97pBsx5amQ8lTy2gr+tI/GYY/Kux1i7+YIfq8LBVbOwClZOGUTp2hin/ttZZPHMGieC6N+4NGZljCqEEIIIYQQQgghhBBCCCGEEGJr8xcj/MVkfEbcjTn+7xfZ9q0SuZ0uO/+TPk7/7RKxt8GNvEpO2SCzzSU1ZJHd5QIw/YvNOWYidVBh1RXe7pj2E6tXnGufCYiDGHdQhicKsRnUfzgAkcLZ18ZwWB5O/fjlbGxAw8Sa9b+RPFGtT0ug8mp5syFBIyK73SW73aV+yGP2142NbtaWNfFHZeyiSdzVOP0W275RYupnNdqng0vWLd6VIjPm0JkNWHi5SdiKIeamrnDrORbebEBq2MbKG4SNm/e+CCGEuP6UATq8hcbLiy1Hen+EuAwra5DZ5mCXTRTg1yK8meCSEKqVM0gNWcz9trkxDRXXlfmRif2yTbwjxv+0vyWOmq1TXQYeyeLNB5z9fpXxb5QAzZnvV/BmQ5DPNeIaqVBTOhqRmU/+nnrcIrQVmaWI4kyI24qZvNMlyBjsfM0j1YyZ32VjhprCTIgVgJk2KN6dpnBHmvnfNWke3VpTNipb4ZTM8z92yUp+F00MKwmPx4EmqEX41ZDaVEBQjfDmAoK6dFQJIVYXYRBtwTOHEsUXQgghhBBCCCGEEEKI62er9i2vJ+mn3kRiOPu9KgOPZSjfm2XkC0WmflS77jc78HiW0l1pUBB3NUEjorsQ0pkOaJ3srrnCieHAtm+VcfrM89XBtNboQDP9qwb+4ubc29LvJscIZ1qhX1d07tHgrLzu4FM5lKVQMgZFiE0h82iN9m9L+EfTdAYDUhG4J8FeUKgIUFD5siYc2OiWistxqxrtQLhto1tyczv5V0vs+2eDABQOpMhssznxH5Y2uFVbj+GCU7Jonuwy/dM62R02o18pMv61ElpriJOqqPG5rLWZUsSh5uz3qhva7vU291yDie/0MfFHZaafrdOZvDSYK4QQQgB0F0LcQQsrZ9ywyRmkL3Blm7NHZvPbAjErIdaXkVJs+70S7oCF1vpcCEhTypsoQ9GZCah/2KF1JkDHmv6Hs8ShpnH0Jp2CUazKmDVQKPwnb85gql00k3050nSmki+2I18o0J7q0jzmM/bVIqlhi7PfrybBVCGuUe5sxOhLF/alxTtNzC7c/ZMmVgCRBWYIka04e5eLESVnoqbudIkthQo129/x6DsVMPd8k+x2h9EvFmju7TL//LlZ0W4yyoL0qE1m3MEdTEKoH1dBBQhbEX4lojMTUPvQI6iG+NXopp75TQghhBBCCCGEEEIIIYQQQgghrreFl9pktrtkttmYGYOovf7nWJ2yQeneLKlBC6fPJGrH+LUIp2ji9lm4AxbF29NorfHmQqZ+VO0ZUh3/Zgmnz6QzE+BNB3SmA9pTwaYfAendFWPNGFgVSH9okvpQE5Wh8dnlDXf6TUp3JI/Jyf9FAj9CbAbpOzuY5ZDGDwdov1ikAGg0cRaCnMaZVRReUCz9viTKNyttkgSJxbUJYfGNFqU705gpAytrsuvP+jBTBpGvCeoRygQdgY40OtSErRhvIaR92pfql6uwsgYjX8qTGrTR5w4l3cVkHGHrVMDx/2mBvgezOEUTI2VgOgrDSSbp8OYi5n679arY+pWYud82GPp0nm3fKBEHms6Mz9xvm7IvCSGEWGb213UmvtPH8GfzTP7w+k++JcR6uwmjVkJcXzrUGI4i8mJO/23lfDhImZDd4VC4Pc3QZ/PnZy4EmP1NAy25vi0pvC/EPG1iv2gTfDpgPSeHUCaYKSP5SavkC3dKJR0d7Zj6IQ99FR1KVt6g/8Es2V0OpnuhwTrW1A95uH0WYJEZc/HmAqZ/Vpdgqlg3YVot+zszE5Ne1CxOWCzsdMhUI7a/0yV0FHte6mB1NbN7beJzWU1tKU7fnyL1uzb9D2Xx5gK6iyGpQYuJPymz8FKL+oebfDIAA1JDFplxh/S4TXrYRpmKsBXRmQmpfeQRVCP8cz86kI59IYQQQgghhBBCCCGEEEIIIYS4GrO/brD92yUGH88y84v1CzVU/uVt3HW0SrqbDNzQCuoZm5efGCQ2DDLZLgBWN6Z/ocvoWY+CUkz850O881CRbCNk1s3SztgXNhrHPHFwDrcdUs/avPDNnT3boezVB458WB/puY3H+4+vunyg3Ptxy5sefOnC30vHCky+OkJzJsvgTzQLF63rL0b4lRC7ZGIXTMJ6Mvbqi4MfrnobJqufO7dV77Etr9V3rbq8aPcebzDorP547MnO99yG3SNB9vz83p7b2Du6+u2UnU7PbdyWm151+VRQ7rmN95tjqy43epTHzdndnrcxlGquunybW+m5jYy5+u2M2b23cVf62vfBduyuunwtj/lcUFh1uUnvQNOEs3jphTsh/GdzVI8UqZppnG0eRgrCpkHlP4yQLne5M3/heoE2L93GRY7bq5dZXepmerbTNVavIviL5p09t1E0V38tLHRzPbcR6tUHBabN3tUObWP1133Zaffcxvb05ffTrlNEeQZPlQ+vuo0Je4Xn/iKpYu/78kp7z6rLX1raveryhU62520U3dWfN0v13s/r/uqvN/fZnStePn3uJzsXsuOlLkbBJLLAMhVW2iA2SCp/X3RIKJ77MzQVU8MZPtpdACPZb3b/o4M927pVHP7/PAyAEcfsnKtjRjFt1yawDe46vUQ6jGhmTJQGL2Xy7v9ukNC5cCw5AYThZY4tf5z8snt89gEwZlffP1JO7/283Vx9/ykO9v7MYOVXv52Z79/ODHDcj5k42qZ/zidju+z8U5fZMZcjd2UZ+fahnrcjhBBi6/MrMX4lIj1m915ZiE1IwqlCfIIOYeonNbb/QYnBJ3JM/6yeXB5B87hP87iPmTVIDVkYlqI9GVyXmRfF5qCLGv/TPs5zDqqlCO8IiQdjSAN+EgQNWzE9+/xUUjkxt8shs93BypoYtrpktTjSxF6MmTZIj9rM/PLKTpwMPpmjeEeKyNNU3+0QVCPaZ33cQYvxr5fI708RtiKmn63jzYe92y3EFfL6DY78ocPwKyGFszF2UzP1qMXsSBq05sBvk47WgZMBlq85+niaxtAnPo4oxcJLTbZ9o4SdN3H7LRZfb2FlDIY/kye/z2XuuSZBbfNMB+j0m2TGHTLjNulRG8MxiLoxnamA+ZeatM8GBNXN014hxNamtSLWl37OuNnpLXifhBBCCCGEEEIIIYQQYrPYqn3L60n6qTcnHcYopcjtcemrRSy91jv8A2A4ULw7g+kqwlZM0IiI2jHpcYfC/hR730/CPTP9aQ7vKCwPmV4kdA1mx9PMjqcZO9lm76EWD75cBeAATWIDuraJVhArRb4TEpiKY9vz63L/N0rfnjp9e+qceXGEs6+MMfp0geln6+eXn/lehd1/PsD414vEXU3jeBeoblh7hRAJKxUzcHcFz7/wntZ6vgRA9mGp0LSp+QplyAT466k1ZHH8D889pnHMwFsR9d0mfvlCWPnYzCBWGFOudhlZ6DCw5LFjqsXgoscr9w3gu1tnGL5VMHD7Ldpn/EuK9biDFu6gyUCtze75On3NLqZeeX88tK9ApX/14OetJnQMjt+R4/gdkG6E3PFWnZGpLv1zPgt7XJrHek/kIIQQYuurf+Qx+HiOwadyzP929Ql81oP0Ba5M+v+uztb5VCzEOvIrEdO/aDD21QL9j2RZfLW1bHnUimmd8DeodeJGi3fG+K6P/YaN+5vlX5p3/WmasBNz9vvV5UE5BdkJh9SIjVM0SY/amGmDoBnROukT1DwiLz73o5Pfnfj8l/rC7SmGP5MnaMR48wHd+fB8Fd/LKd6ZonRXmoWXm1Tf6zD21SL9D2U5+0yV4l1ptNaEzYjTf1ORSr/i+jIUs4/ZtE9HDL8aMvx6SLa/TXXEpFUyMCKoj1gUZkJ2v9whNkGbisiETsnkzL0p/KWI4/8uOdk3+nSB9JjN5DM1Gke7DH0mz8Qfl1l6vUXl7Q49Jk+9Lqy8QWbbuTDquJPMmhdqvJmApbfatCeT1+1GtE0IIYQQQgghhBBCCCGEEEIIIW4V236/jNYaHWj6H8ySGbc5+4MarDR3sAnF21MU9qdwBy2UWnnAoY41M/1p3ttXJrRWr6Z3samdGVp5i4HZLs2iRXY+pq/WxfWT8R5mrPEtxfMPDOM7FmyBHML2x2eonCiidYbcReGK2IfTf1dh8Ikcbp9F6Y401XcKlO6p99iiEOJGCuYs/JMpzHKIPSwDyjareNaElkF6e6v3yuLqGAYLD678nh9aBvMDaeYH0gDcfqTK9ukWn3l1lpfvG7yRrbw+LNj2jRKpoeSzkdaa2Nd4swGLr7UJWjHb/6CEMhTDx+fQwMefoDTw5o4BnCim3OqSUgG1olR8W00nb/HGU31sO9Zmx9E2o18qoL+oQUPkxSy92ab2Xu+qrUIIIbae+uEOA49lsQuXqTIuxCYm4VQhLqN92mfhpRaDj+fwqyGNw1ugR1hctXg0pvv1LqqlUEsK1VVoR7Pwf/IY/mye0l1p5n+XzFDh9lsMfSZHasgmaET41Yjahx7NE90krLYG9Y88UkMWxTtS9KUyQDKrpDd7+ev3PZQlbEV0F0PMtEFm3Dl3eYbMWPL/7lwowVRxwzQmTLolRXYyxp2BHW/7nHogxdJE0gGVnw1plU3qIxZGpBn9yCfVCpm+fXmiM+rE2Oc6rTpTAaf/Zon+h7L0P5Ilt8dl9jcN/MXrW5XUTCvS5yqjZsYd7IKJjjXd+ZD6hx7tSR9vJkBLcVQhxCYQoYjYerM3bcX7JIQQQgghhBBCCCGEEJvFVu1bXk/y+Gw+g09mMV2DhZebVA52GPtqgcyEw95/OkBQjwibMVqD6SqsnIGZNs6HLrqLIYuvtvAXI6yCgZ03sbIG3mxAZyrk6H+8/6raVOt3qPUnYzTapVujatgdf3yIV//H+xl4NLus8pe/GDH5TA2rYLDzH/bhTadBwqlCbCq1nwwAUPjawga3RKwm+iAFKLZ/cXKjmyKAD/eVmB1I8dC7i9x5uMLcRjfoGo19pUhqyKI9GdA80SW7zSE1ZJHZ7pDZ7pxfr3HMY/FTgxweKfDF9yYxgMlylpm+HACnB8EtS6hyrc7uyTC1I8WB/9tp3AELM2OQGrQYfCKHnTNYeLm90U0UQghxg1lZM+mziG5MZSTpC1yZPCZXR8KpQqyi+k4Hp2wy9Jk8QS1aNRgobgEKdE6jcxfe8NunfTrTAYU7UpgpheEoMtsd/ErEme9X8Gaucp/RMPdck7nnmjj9Jjv+uA8ru3xmLjNjULozRdiKqX3gMfebBv2PZBn/emnZeh8HUytvt6m+17m69ghxlfyCgV8waO512P1Sm/H3urTKJt2cQulkFrX5PTbaUDitmP4zIUNHfNwv5EmP2XSXIlIDFs2TF05g6RAWXm7RON5l+DN5Jr5dpnKwzdKb7fUNhxqQ2+VSujtNeiQJx3aXQlqnurQnAzpTAbEvpVGFEEIIIYQQQgghhBBCCCGEEOJGyu506Hsog9tv4dcjKgeTsRBTP6mT3eXQ/3AWO29gF89VG4khDjSdyYDaRx7No8snqA9bMd60jAm6WpYDfi26bHWX7d8qAVC6v3IDWyWE6KV9MItum6TubmIV4o1ujliFsdMnPppi+nfD7PiqBFQ3g6VyinbKJNcOb+pwauHOFJlxm7ARM/XDGgD195OAqZkx6H84+bxVO+RRf9/j8B/dxl2nFug4Flk/ZLzS4t2JfmJj7ZXmxQWxZZz/HPuxnX/aR+neDJ3pkNYpf4NaJoQQYiMoMwlFflygTIibiYRThehh7vkmdtFk9CtFzny3QtiUjhix3OIrTXSQxSoYoGH+hSa1jzxYp13FsJIPGlbexB1MDtv5vS7FO9MoA5ShMNMGnamA+ReaKEeBTqpN9j+cBa3J7nBpnvQJG7L/io3T6jMpzkbc8csWnbyBn1Hk5yIm3vQ49WCK/jPJyb7sUoRRtrCyJlY2OXlV+/DSWdW6cyGnv1uh774MfQ9myO12WXitReukf02vPyOlKN6epnhnCjtn0j7rM/PLOu3JgKgtryEhxOYXaYNIb72O/xs0IZgQQgghhBBCCCGEEELckrZq3/J6kn7qGy+9zaZ4IIWRMkiPWMlATcX56qftsz5TP1teibN1wqd1Qgby30hxCE7JREeavoczNA57BLXk3Pr2b5ewsiZLb7bY91/I8yLEZhJMuYAm+3hto5sielA7ArBiGifzG90UcZFa3iHrddj1Z32E7ZjOdEDzePfqC5rcYO6gxdCTOWJfc/aZ6iXLo3bM3HPNZZcZYczEUhMNBIZirpiWYOo6O/3dJXb9JwOMfrlA9b0OCy+2NrpJQgghbpD+R7IAzL/YuCG3J32BK5P+v6sj4VQheolh+tk6E98uM/6NEjPP1ukuXv7LY9Zae0fqnuLCFTXFMdb+pTVtBmte92Sz/4raMecX1rzubHft605k1j5DYiey17wuwMOFE2ted8Ree4fb797cB2jgwpfw5NFcuZz38zN71rztrJPsS61Q4/2my+BjufPLIhsW91ks7bMYfD+gn+yy62Y+V8U50AW6eG9k8d5yuOv7XZSrOd0pr7kNAMdqa38OFzq53iudM9dd+7oAYbz2Dz/dYO1vb4Za+yeISF9ZmXbTWHuQMb6Cbc82r+yx+3H3zjWveyWfp1xz7cek3FeO0zLgzKCFmTLI7nIo3pbGr4X0aeCZOXggQ2c24Oy/qhL/ZDtjr/rkpmMU4Pw3Q7T2rvy8Ln3xNM0TXYaeyjP2dJE41DSPdWkc8fDmwjVVN1UWZCccsrtccrtcABpHPKrvdvCX1rMcqxBCCCGEEEIIIYQQQgghhBBCiF4m/riM22+hdXK+VylFHCTBj850QPXdDvrmyH5sebUzeZShUIai/8EsfQ9kzj03GmUpGsc8Fl9tb3QzhRCfEPvJWKy4YWAUZbL2G84D430bndZgg/m6Q7eTBRNwNKTOPSehgpYBsSK9rbnqJsWN9dGeAvlWQLoT4/ZbpAZtyvdk0FoTdWK6ixGNox6NQ93eG7vB3EGLbd8sgobTV1C0Z7TeQgEfjZY4PlK6rm28VcUenH2mythXi5TvyWAXTaZ/Uu99RSGEEDe92IvRWtM8uvk+OwjRi4RThViD2NOc/UGV0acLbPt2icVXWlTf66xbZUwhVqMtxYkvuNhtjRGAisHPK2I7CTPO3uew89FT6FBBrPBez9L+dYlwuo17fwvvYBbntjbKlWkcxAaLwZtNzg6G7ZjshEt3PqR9JqB4V4qj/2YBHST7aWwrzj7hgtaYPkTO6pv2KxE6Tq7bOOaRGXcoHEglnX2eRgea2NfEwYUfHWrMtIGdN7AKJoap6C6ELL3Rpv5hh8iT14wQQgghhBBCCCGEEEIIIYQQQtxopfvTuP0WzeNdZn9Tx3ANyvekWXytRSzFNzed/HiL2ocd/GqENxtQuC1NetjCcBXVgx0qb0gwVYjNRmtI39mkMd1H5S9HsAZ9zEKIWQ5J39HGyMjAyOvN+rsMyrtQrEErjRoO0V0FHQPqZrJAaShEmPu77PrUqQ1qrVhJ4Fi8+NAwu//RQQCcskFub4rMmI1Ttshss8ludxh8LGbqpzW8uZDMNhulLi5ioenMBsTe9W2rlTMImzHKgtGnC2S2O6Bh5pcNwvraX+8D9aShxY58ILueunMhJ/7dIrv+rI/0yJUV8hFCCHHzqn3QIbfHZfizBaaflYkJxM1FwqlCrFHYiDn7vSr9j2YZfDxH6Z40tfc6NI51ccoWA49kURYYv1JEwzHRWIwu6csV0BTiyihFkL38zmTkLnQQZJ+u0f3Ip/NCHv+jDACph2TWNLE5uAMWfQ9myO1y8eYD5l9sMfRUju5CeD6YuoxSRO7q27RyBjv/tA+lFJ3ZgLlfJ/u7XTJJDVtYWRPDUhiOwrAV6uP/ZwyUDWbKoHU8mWVGA5WD7SsrISuEEJtMjCJm7RXHbxaxHJyFEEIIIYQQQgghhBDiutmqfcvrSfqpb5zsdgcd6/ODMWM/Zv53rQ1ulbgcy4mZe+7CuBRvprGBrRFia9EadFdhpDRaQ1S1WJorAVC6vYphXvk2I9+g9swAwdS5ATkawjmXcC75u/1aAWdXh9Tn6hg9JpMXV2neAE+hnZjw8S5G2yDeH5BLr14ly5CPapuaX4lZeq3N0kWX9T+SoXxfhm3fLIEGZV46BlRrjY4hbMX4SyGdyYBuJaTv/gypIfuSMchxN6b6gbemyR+MjMHEH5Sw82ZS+OHctroLIdM/rRO2riyI/v62fortLmPVNsaxWd7YNSg75nXUrURkxm3S4zadyWCjmyOEEOI660yFBNWI7C6H1IiFNxNe19uTvsCVSf/f1ZFwqtiSDFeR3+uS3eniFE2UrYi7Me0zAYuvt4i7V3fA0DEsvNii/qFH6d40/Q9nGXg0B0D7rE93KaRwu4vzpoV6TaFtDQZog+RLnQIMfdH/QTsQF2J0QRNuPxdoFeIaubd1sEZ9giMpVDbGSMl+JTZWajgJpWYnXPxqyPzLyYmpsa8USA3ZzL1w9SenwnZMHGhMRxHUovOXB9WIoBpd9nq5XQ7DXyhgWIr8vtT5yxdfbRE2ZAZIIYQQQgghhBBCCCGEEEIIIYTYEIrLTihc/8menlcvpzqrLn+y/1jPbTwcv77q8mmv2HMbi93sqsuPLfX33MZIYfVz6Q+Uz/TcxpC9esWVktk7+LvTXlh1+f9w8mzPbWTU5c/fA/Q6S9+Ie1cOezh9YtXl0RqqDJwJVn9eZsLez30lXP25n8hVem6jFqRWXd6KeqcGj7aHVl1e8TM9t7E9vXpbv9F/cNXl3hqetzF79dtoxz1mNQd8vXpKs2T2DnH1em6DNbSj5zZ6tBOWP2beswWiEy7Wfo+4YhLP21TPBcyO/9UgS6+36S6Fl4xzefzty1c1bB/M4Z9xmPlVHcOCzIRLdsLBsBXeXICRUujjafyTaezhLpm7mrh7O5fkz/L26qUeq366532tBqvvgwcr23puo5ey2/u5r/Vo64Db+zhpXO6NKwZOWcy+10ep7uN6FyIA8/kUB9U4ZIFJeHzH6sewgrH6+xvAiLn6Mb+ue+/Hhlr9iJyxVq+a2V3DcfLo0kDPdXpptle/L32F3s99yV39MR0o9x7T5v98x2WXTQPHPkzz8AeLAJwYzdLMXHiNGxqKTZ9Su0vKicgWTHI7k/ulAS9tEFkKpZL9S2lw24qBh7P0PZIlshSn7kxRHbbZ/f+Yxi6aLL3Zxl+McActtn2rhDKhebyL/aBLlFLU9ym8MRv1L9J88ghd9Xq8bpciXnx4kEfeXmCk3uFTJ2d4497B84tHy72rvFXbq99GGPcOydjm6p8pPL/3e4+OV/9M0A17Rywse/V2ZNzeFWbnnzlw2WW1dsgDz9UZ/0aJtyYGme7LQRzzxJFp8l7ATDHDwZ1D7P9fv9rzdoQQQtwcJn9UY+c/6mP890oc+7cLsPpbjRCbhoRTxZZTujdN34MZDFPRngxoHOsSBxorrcjvT5Hb7TD/YovmsdVnmVqNX4mY+02ThZdbpIZsTFfRONoFDc7/YEAIxpyBuaQgUBAlXwq56MeYNzAXDaLBGGPJwDimcN5QRP0x4f6IcG8EVzGzmRAfM4sR5kMyc6jYYFoz8P9n78+D7LjuA9/zm+vdt9p37ADBVdxX7aKoXZbVdpvuaWtk+XnmzUzEizchyvMm5KXb74085kyM2eEX6rAszXN77Ja7W5YpWjsl0ZIIiuAOAiAIEEAVal/vvuR65o8LFlhE4d4qsAAUCr9PREVV3TyZ92TeLfPc3+/8XgrIfiaHXwvwayFWxqD7niShr6iOuSw9X6R6ZvWBmMR0QN/LHqEJlX6DwAbdB91VGB4YrsL8ZBa/EmJ06KT3RtFtjdKxBtXRCw/u2B0G/Q81B0Ldgo9fCYkP2bjFgEiXiZVWhI4idEMCRxG6SqqpCiGuGgHamr5Yv9psxX0SQgghhBBCCCGEEEKIzWKrji1vJDk+l4+76EM/mEkdvyITCwshrk3K0QhON5PU/ONRsEIiDxU58hsudtak9wMpBj7ajH0JPYVb8HHzAYRQe9EhdmsFbZWPLn/JJPQVZkKn8Gqd0usOmgHpfVE6704QNBSLB6v0PBjBm4lQnInCTxTRXTWyH146f4PifCHwqgWvRaDarGTSR4NA16gkTZZyNpN9cWrJ9gl04uq30BHj4A2d+KZOMbV6Qm0ieTbZOwzpWPCIVgOWemwaiWaYf9R6S+W0MKT/DYeuSY9ILWT3y3UUdbTbEiilSO6I4JUCrIwBCqZ/WKI66mL93/s3Zod0nYO39nDf87N0FtsnX4qL58ZNfr53kHcfn+JdZ+aJej6DhSrpukugawwWqpyutp4oQAghxNXFr4QsvlCj684EiRGb6ulL91krY4Grk2NycSQ5VWwpfR9KkdwVoXi4ztILNYLGykyipZfr9Lw7Sf+DaZzbfJZerFEddVAXOaNA2FDUziZUaQbEh2zMwwZ6SUMvaWglHb124TcnpSmM+ZWz/BiLOsYzOtYhE+8Wv5mkKtWyhRBXqeiiIvtG88tCM25QPFanMe3jlQMa8z7KW/k+relgZQySJ30y4wHxhZBKr44yIDMWYLiK0ILA0ghsjcAGrxQQOCHVMQcjbmBnDAY+kmHx+SpLz68+A55bCJh9qoyZ0LEyBum9zRlHdVtj4KHVZ+8LPYVfDaiOuRSP1PFKzf0yYhpBXTJXhRBCCCGEEEIIIYQQQgghhBBiI5SOO3TdpJG5Icris+2rngkhxFbjj9o4P0mf/U8R+WgJvdNHT4QoH5wFnzP/JY+Z1LFzBnbOXP6tWxrVZ6PUDycxMj6Ju0tYfS5KQVA0cU7GMCI63fclqY46eKUQFUDxaIPquEv/g2k670iQuKlAbH+F2uEktSMpGm8kKEZDMu8pXMlDs/nVgP+aAl9rlsXs92HY5ylrO74tgaDXqsVc+0rCAOg6Sz1tqtvqOtN7Y0zvjaG7IUOvN7DrIY3/bQGvEjL4sQxmQseZ95l+soRfujQTfSxlI6RqPtGGTyMq6QiXSjVm88zuPu57Y5rrp/MoYDEZxdc1ekt16pYceyGE2GrqUy6QwEpLpTtx9ZAzErFlZG6IktodZfpHRSqnVp8hIKiGTP+gRLTXpOOOBP0Ppgk9RW3CpT7l4RYDvIKPVw4vWCHPSOjYGQMrY2DGdEJfoQJF9sYYds5EvawI0wqVVgQ9ASqlUObZjb25TQUqDmFHiDGrozXODkQoDeuQgV7W0QKIHLCwXjXwbg7whwOIb/xxE0KIS8nJajhpiJSa/6d2R7FzPl4+IL0P0EDTQLM07JyBlTLQdA31ske1R2fibovykMGqUzmeZf7x7Hm35W6N03V388R87qky6u1jbCG4Sz52LoJfDQkaIbVJj5knS+i2hm5rGBG9+XdEw7A19EgzkTW1N0pqT5Qz/y1PYptN73tTLT97hBDicguUTqC23pdagZKJAIQQQgghhBBCCCGEEOJS2apjyxtJxqkvH2fOJ/QUuZvjVE65OPN++5WEEGILcX+VQO/yiLy/jCoZeMeiWDeFkFgZAONXQvxKSG3cW3H77d/R8Gci1F5KUv6XLNG9NWovplCujmaHzD1doXzKIai+bXvlkPF/KtB1dwLNyOFORsk8uEj8XRUW/r6P+uEkZqdH4obqJT8GV60Xo83E1A4fPl1bLkzin5LzLLHxQlvnzE3NwOLcv5sG4PTfXp4Kx/MdEUamqtxxaIFD13VQStuX5X6vRcVElB/etI2eYo1y1KYas3ng9UlCDVxbUkGEEGKrcfPNMRAzeWnPH2UscHUy/ndx5IxEbAlGXKfr7gSFI/U1JQc1Zn2mvlvEyhokt9sktkfovDuBbjaTn1Sg8MoBfqU5+KLpoNvNpCTdOtsmVAQNhW42lzVmPcb+yxJd342znkrOwcjbBnhGAqL/YqHP6Tj3eBhTOpGnLSJYqExIcKuL2imD7kKIq4MyNSY+aJH4Py+S2hsh0m0R7TbRdFA+KKWaCfu+ojrq4hYC3HxA7Rt9hPY63kzfJv9SDa8U0Pv+FFbGIP9SDWfBJ9Zn0XF7HN3WMBMGgROCBvVJj/lflkFB6ChCR+GXV581zisFdN+bpO9DKeIDzUG10JUTUSGEEEIIIYQQQgghhBBCCCGE2CiT3y0w9Kksw7+exV0KcBZ9SsfqlK50x4QQ4jIwen384xHq/7lz+TZzl7OmdTUTai+m8Gea1ReDJYvqrzJEb6xgjzSwuj2O/4cWocMhLDxTZcf/VKX4404K3+8i94l5un5zhvn/NEj5X3KYOQ863tEubl03uDBqwpIBByNQ0qGik9nhUsxI8p7YOhY7Ykx3x+ifr3PPy/MsZiPMflAqvF0qoa4zk0su/69YV6i6EEKIq0jYaMbXWwn5XBVXD0lOFVtC9qYYSsHis+ubkcsrBORfrpN/uQ40ZxewMkazMmrWwEzoEIIKIfQDSscbeIWgWWG1HMBqeUvv9Gw/Ao0PeESftLBfMGk85OLe7aHP6kReMdFPmQSSnCqEuIooS6P8hkP5DQfd1hj6tSxWymDxYBU3H1Cf8c6rVv1OElPfVDnp4FcCuh9IMvCRzHnLJ54oUJ86/75b0W2N7nubgzxvJqYCzX0QQgghhBBCCCGEEEIIIYQQQgixIRozPqN/v0Tfh9JEu03sDoPUngjpX1Y5eVeM0JbqHkKIrct+TxktGeC9mGj+f38Zc0f7oh0AmqktJ6YCWP0OibtLWP1rW/9N0e0NtI8ukP9OD/VjCeLXV+n87CwL3+wj/0QPfLYKyfbbuRwyp3y6j3qgaYy+38aPX8HPiFwIv1WBf0jCkTcfB8Wd+UVevjHLQnfsyvVNiA326v4OXt/hc/crC3QWHPLFKG5GztEuG6mnIYQQW5dqFvAT4mohyaliBTtnYCYNdBMCV+Eu+QT1zX32qpmQ2R+ldKzxjivX+ZUQvxJSn7zCSUYmND7oEf2hTfTHNvWPuAQ7Q8I5H/2MCQEgEyEIIa5CoauY+KcC3e9O0vOeFADOkk/+xRrlk86GD5g0Zn3Gv1XATOlEukwSQzZm2mD+lxW8YnBR/Z95skTfh9IA1Kc9/FqIkjkDhBCbSIhGuAXnR9yK+ySEEEIIIYQQQgghhBCbxVYdW95IcnwuP78SMvFPBQD0KPR/OENK03jX9yuEBhR7TE7fEQVdAjaFEFcvFUBQNVEBqFAjcE1UXSeYsdDiAbF/lUeLrT2gJmwouv/7SYKygRYJ0e2LD8bxFy0Ays9kie2pYeZ8sh+bp/DdbsxvJ/DvbcDOAK7g23AkH9L/oofSQFeKrqM+M3dc4QqlJvBwBU5YYCgINLRfxrj1cIF/udfCjUrottg6EnWfqBOgNPAl9/ryCEOSDQ/PlHNgIYTYshRol/htXsYCVyfH5OLIFc4WZmUNYn0WVkrHTBmggfIVoadQPoS+IqiHlI41MCIaO36nE01f/YW08GyF/Ev1y7wHa5PeG0W3NQqHN2f/LpoFjQddoj+wif7QpvExl3C/h37MQnvDRO2TTCghxNUpdBWzPymz8EwVK63TcWucvg+l6bjdZ+nFGuU3nA2/T78c4pddqqfXNwvkappVYOdBg+2/3UFjTqqmCiGEEEIIIYQQQgghhBBCCCHEpRQ2YPI7RdTfjNB92iW5FNIx7VM647G4PdJ+A0IIsYkEdZ3Kq2lqb8TxCxaoVeI2YyHRD5TWlZj6VkZq/ZO2v53Z1YyJUY7O0uPdZD68SHSbQ+o9eUo/z2H9PEZ43Cf4WOMd39fFsIsh259qxhmdfCjC7h84aOEV6cr5QuA1C/IGhOce31TFZ1GSU8UWcf3reYZmaygNDt7cRcquXekuXROun1rCVIrXe7JXuitCCCE2igm970kRH7bQdA3N0DCTMgmBuHrIFc7VSmv+TP7D9cs3qTcTS5ViZKzG9hPV5WWFrIV9pIoZ17FzKx/2xpyH8llOTFVKUR11ifZamGdLQefeFd+cyakaZG+KUTntkvlBZl2rJsy1Jygdzfeuue3J4toHgwy9/UiIcZ9ix88bmN+PMvG1BbruNYhVLcb/uwpB48L39e5Dax/wualnYs1tAQat/JrbWum1J9GedNd+nI/WBtbcFmDWW/vzY8lPrrntgbkd6+pHEK79JCFirP3YOeHa386na+t7rXjB2sv0rmf/GoG1rn6krbU/p9fT555UZc1tHf/SfWzmq2ufNiwVW1/yZqG29m3HI2t/b2z4a38My0/sveCyCSBZ8Bk60aAvZ5L9hI5zwMVJ6Cxtt3DbnFyP/u2ta+7H7n/70prbXki0z8SM64SuwkoZxIdsoNp2PSGEuFxCdIIrOTXtJRJudHltIYQQQgghhBBCCCGEEMu26tjyRpJx6s1B+9wZFgD9vUky+2PE/sM86ddWfof+epvvkGte+4p6+Tbfs68lPuLewdGWy2/cMdV2GzfGWsf0jLldbbex4KVaLjdoH79kW63bdOjtk+A6jNZJxBGtdQzChN8+vsNp8zIth+3jHAbN1nFRw9Zi220Ybd4vxmMdbbcx0ybWSdfavye1e2zPuJ1tt9FjlVouz+qtE5GiRvsJvwthvOXyuN4+TibVZl+za9jGiaCvbZt2RhutX5Mn3heSuyVOel8UgPIbDRpzDn45IPQVKgQVKEJX4ZdD+P9cXD8O3PLOK4dak4qZx3uW//fmIiz8/wbY/fk3yFxfpfRSFsoaqnf113/Jiba9j3ibGM658oXj+LpmHHa+0nx+vrKzg8nFOLuZwJrVODXWuVxVe3hgqX0/rNb9eK3QPq6xO3buPUovQO5nGkZVw08rnIGQid0xwqhOjAZDrB4HF2vzevnnxVva9uO5SOt4xtIaSlsWvdaPnd3mPT8dbR/nZ7bJIs432vczGm19vLQ1vE++Ot46DtWOtI/hzCRax1YPdhfabiNpt36PWqgl2m7Deqq/5fJ7Ok6334bW+rH92uIDy3+nyi5DszUatsHzN3ZSTdhUC+3jK22r9TFNrCF+MRVpfbxqXvvP+0ibfqzl+dOuTb7c+vNtTfTz76O/UMPXNUb7MiDXKEIIcdWLD1v0P5RBMyBoKAJH4Vd98i9d2kkfZCxwdTL+d3EkOXWTM5M6ve9LEe210HTQjJUzZO35yfzy30sdFq/dmKZ71mHXiZVJMpFGgJU1MGLNNw+34FN+w8ErBbhLASh446/niQ/Z1CY9lHd1vKByt8SwMgYzPy2TpPVA6tUqiGqMvjvCjqccBj+ZZebJErGP2vR9KM3kd4tyXSGE2BIqWZNjdyZJFHx6xl0SdZ+OMZ/O0x75YRNNgZvQKQyaeInWJ8LbJ8vsmijjGxrjfQlODabQQ1hH7vQF6RGNoU9mV3wee6V3PtOkEEIIIYQQQgghhBBCCCGEEEKItUvtihA4IaXX1je5sxBCXAlq3iA8FGX7wxaBo8i/XKNwpE7YojjFFWXC+OMj59+c8Jj6cT+NuSi4GsFej/D29gnIG033Q65/pUSow4H9vZSSzeT3yc44g4s1HnphkqMjWcZ7r0xMaeIwGFUNt0dR+HDzMQ4bEvgvtpbupQYacOi6HNXEO0+IF2tnKEWoaRCGy4n4Qgghrl4DH8mgGRrOgs/k94oEtfYTSAmx2Uhy6iah6WBlDPSIhl8Nm7Ne0axYaneaLD5fJXN9FDtz4YesY8mjc95loTtCtuDhmRoT2+IkSz7Jik/yF2X8akh9ysUrnf+GpXyojq69Yl4rZkInNtCcecYrBTRm114Bcq3snEHHnQnyh+o48z5rr3V59fFjOqPvibDjv/n0vj/F4rMVet6bYuhTWRaerdKYufwDPEIIcSlUsyansyYJ20P3FAOvOiTnA5ShkRv36T/iUs/ouHGN0NQIDUi5BQJdQ1OQqnn05BtM9MQJNY19YyV8TeOG0SKuqVO4IUr5uEN4kZMwdNweRwWKqR8U8Sshbl4SU4UQQgghhBBCCCGEEEIIIYQQ4nJzlgKivSapPRHKJyRBVQix8VQA8692snCog+zuEgP3za5vfQVqwkQdiqKmLEgFzP+yQul4A7Xx4ZQby4fESIXqmSRoiuT2CtUzCfyqiV810QxFeKdLeNOViVvsnXLQgBPXJyklzlVlfmV3F4Vkif1nCtw8mmf/eIE3PhhrOxH+RqveCNFRBRJWJLawVK35+o81AvJni313zTXYMVrBN3ReuSVLaEri5KUw0ZFgx3yZ20/N88Lu9pWdhRBCbG6LL9bI3RzD7jTY8W87aMz6TP2gQNi+GL0Qm4Ykp26waJ9JtNvCSOiY8eYPOhA2BxtQChUCCoyojl8LqU+79DywcoYmrxQw8XgBFSh0SyPSYaKbGvUZj8IrNbxqM7l04f+xA02BpkBpUMxaKF3jyM2Z5W3VEiZzwNALY+vaF81s9tGI6Shf4RYDWEMSfuaGKN0PJNG0lVVex/7LUrNK60bQoff9KbxiwNJz1fbttwAvoTP5RJHBj2fovj9J+aRDJGcy/GtZAiekOuZSOelQm3BRMqghhNgCQktj4rbo8v+6r0hP+yTnAkxHYdVC9AAiTgMjaCabVuImr+3IcKY3Sf9CjZHZKplqcyDM9kO670uSvSnGmf+aX/d7pZUxyN4QY/H5GrVxmRRACLF5BUonUFtvgD9Qm3TWYCGEEEIIIYQQQgghhNgCturY8kaScerNZeI7BXb/d12k9kpyqhBiYygFfs3ESvi4ZYtT39lGfTEKSmPuRZt4T53aXIzZ53rY8YlRsrvKq28nrxOeslEnbSga0OWjf7CCtt2j+Ojmykq1cwaBozBiGmbCwEzozZ+4DvrZwBqlkd5bZviTkyuK9B2qDF2xfnfMuyhgvjcClZXLxvrSjPUkuWGswPa5Ct0nXKbeFV11O5dKmIUgBVb+st6tEJfV6aEkPUt1bjqeJ9rwGZyrkWgEvHnGfNdzizx/ewe+bVzRfm5FR4c7yVYdekt1hudLV7o7Qggh3qH8CzXyL9SIdJt0358g2mux7Tc6OP23S5f0fmUscHUy/ndxJDl1A5hJnZ73poh2mxhRndBTBPWQ0FOoUKHbGmZMR7dXf+E6i+cPOFhpA83UyL9Sx0zqWBkDNx+Qf7lGbeJcQkwxZ6+5n29NNjViOkZUW/7bjOoYsbP/n22jWyuTS1WgcAsB7pKPsxTgzHsr+gKgRzV63t1MtPWrAWbi3EWFpq/c3juRuzlGpMtk/NuFayoR0ysGnPmvebruT5C5LkZ1zKH0egM9opHcGSG9N0rghORfqQMyVYIQYmsJTY3CsEVh2Fpx++Rcdvlvywu4brTI+5+fxvJDZjqinOlLMDRfA2DqhyX6H0rT+4E0Sy9WcRfX/iGS3hchdBWFQ7UN2R8hhBBCCCGEEEIIIYQQQgghhBAXKQTlK6yUJDwIITbG6A+GKRzPMvieKRZe6cQp2+z7128Qybkc/uvrOP3dbcttI1l3xbqNvE3heBb/9TTkDbBDtG0e2gM1tH4fbeNCJzdMYrvNwEcyK25TShHUQvxqiKb5ZG/KYyV9EiPNDFB9E8Su90zW6VxwaUT1C1dl1HWmOuJsn6uQmgmI5n0aucsbLu32KeIndMxZhS+FDcUWVEpFeOaWHu57eY69Z8ooYKYnymv701z3eom+mQbv+cU8gaExNpJgdGfySnd5Szmwt4+PvHKG66YKrK90lRBCiM3KmfeZ+KciudvjdN2ZoP/DaaZ/dG4SAj2uk70hSugqgkZIUAtxFgOC2hoqEApxiUlyaht6RGsma0abv0Nf4S76BI1z2dCddyZIDJ9LEg09hZnQ0YzzRxQCJ8Qvh9RnPOrTHo0ZD78aUni5hh7R0KM6kQ4DpSDaY6ICxexPyy0TMA0/JNoIidaD5k8jxHJDbK/523JDbDfE+L3uVfsTNEKCejOh1ln0m383QoL62Z+GQjM1Ip0GdodJJGeQ2tOcSWrsH5Zw8+c6FzqK/Ms1AldhZwxq41XKb2zw7IQaZG+KUXqtgTO/uWYSuxxCTzH3VIXqqEvXvUm6t0Uov9Fg4p8KmAmd7E0xuu5K4JeKmOlrKHNXCCGAkZkqQ3PN5FHH1MiWXW59vTlzTCluUZ90mfuXMl33Jtm2qwO/GlB4tU7+UL1tdfBon4Wz6F9TkyIIIa5OITohm+BbwQ0WIjNSCSGEEEIIIYQQQgghxKWyVceWN5KMU28+XinE7jDo+2CKhV9V8asSkCmEWB/f1xk90UepEKdwPAvA5M8HlpeXxlIsfj9H6DUT4RP9VQbfPU2s08EpWuSPZymcyFCfj6FbAdo2H+3OOtqQh7YJc+dT+yJkb4hROtagOn4uwXbpxRrFI3X8ergcP3Pr/7y4vo0XwfynRHN9W7E7UWXilgiNTOswZa0ByoZ2pyGZRZf9r5aIOIpAh0N3ZFq2z6dsFlM2HWWXvU81CAyodRgs7DQp9xnnZdrq9ZAd/+yDAi8Js3eaON0Xf25UuQViJxTZpzQKH1CQuuhNCbFpVZI2T94zQGfBoZS0CNOQKHuc2pFkciDGyJkaPQsOu05XWOy0KWfWXpBJtNZXqKMp0KW6mxBCbDn5F2rkbo4R7W2eR+s29L4/TWK7jbbKrDcqbOaCVRbq8L2134+MBa5Oxv8uzjWfnKqZEB+wSWy3iXSaWBkDI7q2F9ibiZmz/1KmcLiOnTWwswYqpJnc2VBnkztDAqeZsBrrtYj2mtgdBrF+q5n8Gjm/SulbuXmfwqvNC38zoWOlDKyUgZnU2fbUPLZ37skfatCIGni2jmtrVFImrq3jWTqpr04R1EP8swmnYT1ErWNMtjFzrkpqak+Evg+mCepv24CChV9V177Ri2AmdMyEQWXUbd94C6uOulTHlkjtjdB9X5KBj2WY+KcCiwerZK6P4c/bmOn6le6mEEJcVqeGUhSTNrmSQ7bk0FVyqUYNXriuk7mOKLuDKcrHHSpvOET7LZI7I3TelSC1N0r5DQe/GhBUQ9xCgF9Z+RlXOenQ8+4U8WGb2vi1/RkkhBBCCCGEEEIIIYQQQgghhBBX2syTRQY/kSW5O0JydwRnwWf6yVL7FYUQ1zzf13nh6b0ceWk7TuPCyVLTz/Qt/739o2fQdMXSsRxjPx7CyUfRzZD0jhJ9d82R3l7miDt4Obp/0bI3xIj2WES6TLppxqbaOZPGvPeOE/z1ExZaoKEsBToklkL2/axOsd9g8sYoXqIZl6v7Id1veOTGPSI10JSGQhHEwRkEZwDcLsAG0w3JLTqMnKqTqDRnk58ajHLiugRcqGrqcod0fnV9H7vSC3SdcEnP+CTnA1LzAYEBr304TviWWOHMGyGaAicDdhGGfuajDHDTkB9WhAa4SY1azxrDrqNQuUORfF4j90ONZLzB5N02jU5JABBbS2jqzHfFAOifK3Pzq0U0QAHqbGi8Z2jUY5swY/8qtW9yid2zJUINDo10kmLuSndJCCHEBlO+Qrc17E6TkV/Pgg5eIWD+QIXQUxgxHSOuE+kwiXabWGmDWJ91pbstrmHXdHJqYpvNwEdbz570JqUUXjFAhWAlddxi0JwlCiBsllB+exVPM6GT3h8l1m8R7bHQLY3QVzjzPl45aFZgdRShowic8G2/FaETYqUNet6XovuBJJreXN+vBHjlEGfBZ/G+LPWoQSNm0IjquBEdVsmGBxg6sXEVTCPdZjOBp3HlssIvsJvXFgXl1x2CmmLw4xmi/RaNaY/QVwRVuZATQlx7lKaxkIuykItiuj4PPjfDQibCXGdsZbsQ6pMe9UmP0msNOu+Kk70phhk7NwDs10Iacx6NOZ/yiQbFIw0S2yL0vi/J2H/NE17Bz0AhhGglUBqB2nony1txn4QQQgghhBBCCCGEEGKz2KpjyxtJjs/m4+ZDTv/tEnaXSfd9CWL9Ftt/qwPrxBKv7um40t0TQmxSC7NpnvzO7ZQKca6/9TTb98zQP5Tne8/djlOwWTjUgQqb8SNG1CdoNMNsR78/AkAk45AcrtB/7yzp7WUM6y3xI5t8rnM3H2AmdCYeLxAfsolvs7GyBv0Ppsm/XKMx66NZGroNiy/kCDwd5elEextk9pZbbjvc5WMcioAH/mdqnFjoYeezdTLTAZnpKrz5Maqaf4Ya+DlwcwqrBOYSJE5oJE682UzRx+Kbq1DMmhy5JYO/xuIzy/uc1Jm6NcoUoLshvcdcuk767Pl5nYUdJsrUyM14xGcUgQXjD5roDeh9LsCqKiJ56M+fK+zixj3O3BPBybXvR/06cEYUHd/RsGuK3ldcxj4QXVf/hbia7D3RfJ8YH4xhuyFRJ6QWNzi6P31etWJx8RyzGR+ugB1zJapDFvUJr/VKQgghriql1xvkbo2z7TdyKKWY+n6R2pnW7/W+Wt9ngYwFrk6OycW5ppNTnSWf+pSLsxTQmPWWE0Lf/B06al2VRZdpkL0pRuedCVSgqE97LD5fpTHj4cz769qmmw+Y+HYBdDBs7bxk0In/YdtFdPCdq0965G6Ok705RuHQ5a3O6VdCvFJA5sYY1TObfDTnMqmNuzhLPt33JZj8bhGvEODNXnhGNyGEuBZ0F5qTMtSjrU93nAWfqe81Z8/VdDASOpGcSaTXJNpjkbslRucdcQqH6sz9S5mRf5Vj5NdzOIs+oauoTbqUj2/cBBBCCCGEEEIIIYQQQgghhBBCCCHWzl3wmfxOESujM/CxLINajaW0zWRv8kp3TQixydQqEf75H+4lnmzwyYcP8LPv3sqrz++mo7tE/yenUArmX+4CINFfpb7YTCTM7CyS2VkmNVzBTl+9CUBLL1RJ7+sksT1C4VCd4tEGkW6TwU9m6LgtsaLt3NPpFf/P/DQgd3OernsWVuaYjRmYz0SgdjaIO6kgDm7a4NiDSWJLPl2jHpFKszKpG9UpDJkU+w36UpUV92HmFdYsWHnQfFgKozTiBlPDUcJ2lVLXILR1pm+OEqnUSc0GDB5uPpYKCKIw8T4TdJ0wDtPvPVvptRaiL+noIaQnfTLjIbt+2qDUrzNxl31eBVdzHmJvgDWroXmgqea+uHGN8QckplNsbYav8CyN49etrXCUuDijvRmMUDGyWCZbc8l+PEPh1ToLB6pXumtCCCE2yOLBGgAdtyXQNI2+D6ZxFn3mD1RxF/w2a4vL7fTp0zz55JMcPHiQgwcPcuTIEYIg4E//9E/58pe/3HLdZ555hj/7sz/jwIEDVCoVduzYwcMPP8wjjzxCNHr1TGxzTSen+uWQie8UN26DOqT3RcneFMPOGhSP1Fk8WCP0NqCyWsgVrVL6dtUxl/zLNbruSeDM+9SnL++Ay/zTFQY+miGxzaY6JgmqALM/LTPw8QzDv5alPu0ROR0jdDV0e/M8b4QQ4nIqJywUsH2qwumB5JpmX1Nh8/zAL7vLEyBoJmRvjNF5VwIzoTP53SKZ/VHMpE56X5TENluSU4UQQgghhBBCCCGEEEIIIYQQ4grziiFj/7DErs93cdPxPDu+P8PSyzXcxWBFu+Nfv6PttrJdlZbL3z38Rttt7E9MtVweqvbfYZ9yelouP1btbbuNHfHFlsujevu4r1G/s+XyhmofgxfVWn+vHmitY5xmg/ZJXYtBouXyQhhvu41aGGm5vNsstd1GVGt9TONtjgVA1qi1vo81PG47rYWWy6+LtH6OAswH6ZbL2x3TUtA+mHavPdtyea/RvnjGfJvH7f+6/V4Ahj6VITZgc+SrZY78wy30vb+ZxL40n2b+f01gxIzldWZ+aeAs1KlNNIuSQOTsTyubO1BcM5oJpN3/xqb3G+f6GoYlmDKhrIEFWIoT9W4CE0JTp/O0S9cYLD7fxdzLXThJnbplojTonHNRGhQ7LaaHoyz2WDCjE5ytPluIwvR1q3SmATd0ve2x7zv7c9ZDydfa7tOzpZ0tlx9e6D/vttfutND9kNSij+kq8v3WueTXVV56Rfvs83gXRPt9bj2cJz3tc913GlTjJq6tE3MtYrUAXTWTXUMdfEsDDUrdFtX3+kTMAAjOv4M1Olls/V4McLDQuuBNKtn+9XRD10zL5UmzdczuqN++enkq1jqJzo+0/4y0jNbHsu5a7bdht37NbutcaruNqNF6G5Pl9omacav1MdXbfEYCxNs8Lidr3W230WW3Pv/5yN6jLZfPHOmhb6nBbc8u8atbVj+HiUVa99ML2j/2Fbf1OUFnrPVnKEBvvHU16NP59q+3RLT1vmzLtH/+vL7Q+lzPjaz+PD+1PcWp7SlML+B9Px0ne1MMFSgWn22/70IIIa4OiwdrOPmArrsTaBrE+i1GPptl7udlSq9J3Ppm8thjj/HYY4+te72/+7u/43Of+xxBEDA4OMjw8DCHDx/mj/7oj3jiiSd46qmniMfbj2NsBls3OVUDK6Wj2zqaqeEVfYL6pUvSi3SZ9L4/hZ0zqI65zP6sfHZAYutaeLZKpNtk4OMZ5n9RofR646K2o9samtEc+AjqIWoN197VMZf6rEfm+qgkp57lLPiM/2OewY9nyOyPgQ9Lj/eQ/eAiZsfWfi4KIcRqKgmbk4Mpdk+WuW6sxLEd2YvajvIh/3IdrxTQ92AarxIy94sKfQ82v4Cpz1y9M2IKIbamAJ2Adz5r7GYTIJOuCCGEEEIIIYQQQgghxKWyVceWN5KMU18lQpj8boH+D6dJ7o6Q2hMlaISMfnOR8OJCm4QQW0hswMYtNGNJ6xMetSkXI6oT6TBXJKZWx11mftw6celq5JUD/HqI+bbIYV0HhlbGGFYXzjWavinK9E1R+o806BjziBZDYspFAxxb48UHcvj21XUeEZo6xd71VzJtxE2euaubvpk6+06WSNR8UlVQGtQSBktdNtNDURqJlQd5m5nfqK4LsWkd2tNB6pVZchWXneMlTg23nuBAvHO+ZTD2zSW2P9xB7l1xon0W098vEkpovRBCbAmVEw6VE81EVDOps+23Oui6N7khyakyFri6ixn/6+rq4hOf+AR33XUXd955J3/913/Nt771rZbrjI6O8oUvfIEgCPjzP/9zvvjFL6JpGmNjYzz00EM899xzfOlLX+Iv//IvL3ZXLqutkZyqQ7TXItJpEuk0iHSa2B0muqmtaHb67xbxy+GG3rWZ0sneFCN7Ywx3KeDMt/Lnzba3ZSmY+l6R7vuT9L4/RbTfZP6XFdQa8iCNqEbnPQmS2yMY0XNvaKGvqI46zP2iQui0flEXj9Tp+0CaaL9F4zJXbt2s/HLI+LcLDHw0Q6zPwp+3WfgvfcRvqhDfX5EkVSHENefE9gzDs1W2TVc4/g4HuyqnXBYOVOm+P4mZ0EntijDzsxLl12X2GSGEEEIIIYQQQgghhBBCCCHE+U6fPs2TTz7JwYMHOXjwIEeOHCEIAv70T/+UL3/5yy3XfeaZZ/izP/szDhw4QKVSYceOHTz88MM88sgjRKPtKxFeyxozPqf/0xJmSmfo01mspIGdNWnMSNyMENe0s+GkoduMS/SrIdM/LLHr810AzD9ToTrqkthuU9+i8YjNCdprdMcTqNt0tNT64mmnb4gyfUPzM6hcszB9rrqk1I0y0xdjpi+2/H8kIp8x4hr3ZIwHx6bQaFYPXsy0qzQtNkwIo99cYvDjGWL9Fjs/18XcgQqlIzIzixBCbCV+JUT5Cskn3XzePsb3zW9+s+06jz76KI7j8OEPf5hHHnlk+fZt27bxjW98g/vvv5+/+qu/4g//8A/p7e3d8D5vtKs+OdWIagx/NoeVMggDhbvkozyFm/fRLQ07e24XMzfEWPxVdcPut+c9KRI7bEJXsfR8jaWXa7DKtXrml50bcp+riQULa27b+OngmtsmrbUn2tycO03ltSSa2UX2Zpvk/grpW4qY6dUvtn8wdT3DP3Ew64qlXSZOWkMZGkqHSCmkM64xdGuMsfdF0D4+fsH7LR93yFzv0feBFBPfKfBr3S+uuc8A/zR/25rb1py1z5CViV26k/l3vbSWVgrlF/B/lsQ9FYNQo/ZKitorKcxel8h1NezddXT7XPLvLntuXf24xa6sua2lrf3TL6pNrLntocrwmtsCvFAYWVf7tXL99b2Nxqy1D1x2RGprbrsnNrvmtq+V+tbcFsDxLs1HxWSwvkTBsSC35ramvvaBUy8w2jc6K2GtbzqpuUpy7duOrn3bnx1Z05vBsqcXd6+57RuLXWtuu573xt70+maTjBhrH7A17daTQhzbl+bmIwVuGs3zTs8CCq/WMZM6uVviAFRPyxRjQojNJ1Q6odp6IxChkhnphRBCCCGEEEIIIYQQ4lLZqmPLG+lixqkfe+wxHnvssXWv93d/93d87nOfIwgCBgcHGR4e5vDhw/zRH/0RTzzxBE899RTxeHzd273WaDqYcZ3ACSUxVQjBmwVw3KVzcSZDn8oCUJtwKbxSB1j+vVUVj9Tpfn8c9YsYPFRFW3vo1Eq6jr/+wqNCiK1qshln+sZgismeOLW4dYU7dI0JYPI7RRLbbHo/mKL33SlSOyNMPlG80j0TQgixgUrHG+RujpO5MUrx8DvLW5KxwNVdjjhVpRTf/va3AfjCF75w3vL77ruP6667jmPHjvH444/z+7//+5e8T+/UVf9MUiFYKQNnyef03ywy8XiB2IBNtNvCzpoUj9aZ+UmJ8ccLLD23MYmpAP0fyRDts5j7lwqn/3aRpRdXT0y9ViT3Vxj47QlSN5Ypv5Jh4cnuC7edCYkWFeMPRFi4waI8bFIZMKj2GSzttRh9fwTDVYz83CHS2TopbubHJVQIg5/IEHhX/dN5w2gmJD+cJ3ZXCcxzT0x/1qb6L1nyX++n9L0O6i8l8KZsSotxGlWbMNBabFUIIa5Ocz0xfEMjV9iYCqcLz1SZ/VmZmZ+WlmfTFEIIIYQQQgghhBBCCCGEEEKIt+vq6uITn/gE//7f/3u+//3v89nPfrbtOqOjo3zhC18gCAL+/M//nPHxcV588UVOnDjBvn37eO655/jSl750GXp/dTMzOiOfzYEGk/8sQflCXOt0W2Pbv25OjF853YwfsTLGcnzi1A+unfcJ5QOBBlMWzF9sZuolFIB+yML4UZTZX3VTm40SuBIbKsSmN9ws3LJrssyNJwvsGS0yNF3B9K/h4PoroDrmcuobi9QmXOKDNsP/KnuluySEEGIDLRyoEnohXXcnrnRXxDtw5swZpqenAbj//vtXbfPm7c8+++xl69c7cdVXTg1dxcxPS/S+N8WOz51fodQrBZRPbEwyyltpOoRuiAoUmqE1yyNf48y0T/rWAqUXszhTMQrP5ohtqxHpW3n8Y4shXgwaHasPGHgpnTPviTB0wGXkN3J4pYDKmIO7EOBVAvxKiF8JUAH41ZCp7xUZ+Y0cYwcG2fneC1davdZoGsRvrxC9sYo3GSEsmIQ1ncZrcfB1vLEo3lgUgB9xrlKiYfnYUZ9owqV/5wLD+2dIdWzt2eCEEFufBiht4xLwS69fuirZQgjxTgXoBFf/PETnCZBrLiGEEEIIIYQQQgghhLhUturY8ka6mHHqL3/5yyv+/+Y3v9l2nUcffRTHcfjwhz/MI488snz7tm3b+MY3vsH999/PX/3VX/GHf/iH9Pb2rrtP14LYoMXgxzKgw+xTZZx5qZoqxLVOszTsnIlbDKiOuQCoUOHmfWZ+Wm4mbF5Luv1mcmpDR00DnQHaZqiCGoLxsyjauIHqD1h8qYP5g81CKdGuBtnrimT2FrGS19oDJsRV4AMNnn5uiJtO5ukoOXSWmrHjN54qcHwkzanh9BXu4LVl8p+L9H0wRXJ3hF2/20n5pMPSSzX8kiQLCyHE1W7+V1V6Hkgy+InMO5qMS8YCV3c54lRPnDgBQCQSYWBgYNU2O3fuXNF2s9sUyam6rTHyGzmslEF9xqM24VKf8mjMeqig/frl4w71aY/k9ghKKWoTHnbGYOCjzeqmsPGJdbM/K9P97iR9H0yjQkXh1ToLz2xcZdarlR4Nyb1ngfrpOOUjKYovZOn51DSxoXNJPPGFkEau9ZuYk9E59eEIqd+bIbE9QnJbBPNGHe0tiUV+PcQvB9QmPepTLhMv9NO5O09msHLJ9u9qpEcUkZ1vOf73l/CnbBpHErgnY8u3a3qIHfWxIh521EcBxw5u4+iBnQzumeOuTxzGMCUhQAhxddJDhW9KdWghhBBCCCGEEEIIIYQQQgghxOallOLb3/42AF/4whfOW37fffdx3XXXcezYMR5//HF+//d//3J38arQ854U6DDxeIHGjCQwCXGtOnFoiNNHBxjePUvP/UlCTzH1vXPB2345ZOwf8lewh1eOdn8d9UMd9eTZiku6gv99Ee0Kx6brL9to4wbBBxuokYAbI+M0liI4SxHKp1PMPtPNzC97SAxXyV5XJL2zjPWSCZrCuyVozl4vhLhiyimbA+/qxXZ9LD8kXfG44VSBPeMlSU69AmZ+UiY759NxR5z0dVHS10UJHUVtwmXhmSp+NQQdoj2mnDMLIcRVpHSkQWpXhPiQzc7Pd1Kf8Vh6voY/513prm0ppVJpxf+RSIRIJLIh287nm9eh2Wx2RY7cW+VyuRVtN7tNkZyqAoURbV7VxvosYn0WAKGvOPnXC2vahl8OKbx6LgnVKwSc+I/zG9/Zs9x8wOR3ihhxneyNMTpui1M82sArriGbdgvTNEjfXCJ9cwkVwPjXtuPORJeTU53pCPHFkIl7zk6zpdS5Fd9GGRq1cY/auMc8zWq1RkLHShmYSR0zaWBnDNL7opjx5vNn/OAAmc8cvxy7etXSNLAGXaxBl7BaxHkjRm+lQrUYpVqIUS3EqKiVo0yTJ3o4+dIQe++UyrRCiKtXqMsItBBCCCGEEEIIIYQQQgghhBBi8zpz5gzT09MA3H///au2uf/++zl27BjPPvusJKdeQNAIsVK6BNkLcQ1TCl7++V7q1SgzY10kd4JXCq75+M43aZkQ/lUZ9Y1s84ZbnCuemEpRQz9kEd7soUaaj5NuKeK9DeK9DXL7iwSOTvGNNMVjGSZ/PMi0FWJ7zY7bL1vUPu2gclKAYyuySiGhCUH8Sj9RxVq4tolrQzVuk6m47Jiuct/Ls7y+LY2fudK9u7YUXq1TeLWOndPJ3ZogPmyT3BUhuTNC5aRDYkcE3dQI3JDxf8zjFaSyqhBCXA0mv1Ok69446X0xEiM2iRGbRjkGf3ele7Z1DA8Pr/j/j//4j/mTP/mTDdl2o9HMr7Nt+4Jt3kyErdc3vljnpbBJklPh5DcWiA/bxPosoj0m0R6TqR+U2q98mSVGbKJ9JqEPfrl5AZzYZhN6itCVEzJoDuy4sxGKz2dRvkZk8NyLwZmJApCeCOg44RMpNY/Z7C0WxW3Gqkmqy9sNm0nIfvnccbbSejNRNd58USZ7pHrteuiJkNgtVW5PHlu+LQw1aqUI1WIzUbVajKEbISPXz1zBngohxDujANOXwWchxLUhBAK19RLy5WpLCCGEEEIIIYQQQgghLp2tOra8kS7HOPWJEyeAZgDawMDAqm127ty5oq04X+n1OrHeNJ13xVk8WDtv+bbh9sUSrs+1jpN5f+a1ttuI6m7L5TNetu02Jtxcy+Vu2D78L2k0Wi5/prS77TZ2xloXiZgz2ldDmwlaxwJGtdZVXlxltL2PchhrvTyItt1GMYi3XB6o9olR7bYR152222goq+XyPrPYcjnAq85g2zbttPtsaHfMwzUcr5mgdaZSu+UAM94qbVIhRuDTcXOe+YPdWGkDzWjGq17rXr+j+Xrb9nCAnTGofEtj+v+w8jU48nTrCj2FSOvHvuK2ryq06CSW/06/DHoU5q+zwGk+/799V/cF1qxhJhp03pUgve8tr+uvakx9Z+V7TfYn2bb9mCq0fg+z7fZPms7E+Z83b3Vi9kL7cs5x1bqNYbzz2CfHa/3eAvD85EjL5b7/zhNElyqt3ycN4+yZVxhyw0tlOhean6kH3tuJf7YYkq61Ph4dbR4TgO3ZpZbLG0H74xU1W39+3dbTviiM0WZfTqquttvI2a33d76RbLuNLrvScrnX5j19z+DcebcFvSH1pyC95HHX0UW84xr5nMXEcJxCx/nvE72Zctt+BmHrftzTcbrtNrw25xVztVTbbdTc1s+P6Wr78yPHaX0up8L212gn/ua21g3etolM2eHO1+ZJ7YkSaDDRFWdwtsrIv+pg7B+WVsTpCyGE2LwWnqmx8EwNPa7TfW8Cs3t954oyFri6Nz8Fx8fHSafPfZZvVNVUgGi0eQ3juhceN3Kc5rhBLNb6umuzeEfJqZoB0T6LSJeJnTEwYjq6paHb2tt+N08CK6MOM0+WUKtNSqegdsaldqb1oNyVFO2z6P9omqAWoukaRqy5X145YOp7RYL6tZn0Uh+PUXsjQVA3UJ6GV7AIyhZmxqPrI3NE+88NpkWH65SGDAxH4SU0Kn0mdkUx8LxHfCFk+o4LZ36/XWK7Td8H0+jW2TdETdG9r/WFomhP1xXJbINktgHbro4S0EII0U4tbpKs+uhRCFt/7yaEEGKLOX36NE8++SQHDx7k4MGDHDlyhCAI+NM//VO+/OUvt1z3mWee4c/+7M84cOAAlUqFHTt28PDDD/PII48sDxAIIYQQQgghhBBCCCGEuLaUSiuTXiKRyIYFqOXzzTiNbDaLdoEJ3nO53Iq24ny6oaOUItrTPqFECLF1DT04xYm/3c38wXMJf7qtXbNxnqsxE80Y2OLRK1uNR/MhOgbV/aw5qtmvhsz+rEz+UI3ESISuuxMYUR0rY0iF3C1C90PedbBAqhzg2BoRV3H7s3kWemxO7klgKoVvSyXVTc/UmfyQje6EdB4KiI1D97xLz7xLoMNSh83pnQkq6bXHj4t3ppiK8ORdQ0QbPg1bB11H/0/T9H8kzbbf7GDiOwWc+dWSPYQQQmxGYS1k9idlfNV6wgyxPul0ekVy6kZ6c2yvUCiglFp1DPDNcb832252F5WcGh+2yd4cI9ZvoZsaoRviFgOCekjoKYyojpk0ziUNnpXcHsFMXL0Xfpn9UbxSyNh/biZAapaGldLxSsHqCbfXAGsB5n7Yj5HysHIeeiQkvrNGbFuN6FAd7W3XfXaXy+Q9519AhJZLZixg+o613a+dMxj4yLnZzuozHvf+j8dJdF0dJYuFEEJcXie3J7nlSIHtv93Jmf+al9m9hBBbWohOyNb7AuZi9+mxxx7jscceW/d6f/d3f8fnPvc5giBgcHCQ4eFhDh8+zB/90R/xxBNP8NRTTxGPt57NVQghhBBCCCGEEEIIIa4WW3VseSO9eXyGh4dX3P7Hf/zH/Mmf/MmG3Eej0Zxp17YvHJz/ZiJsvS4xMm+ysjqJbRHq0x6Z/VEy+2MEbsjCs9Ur3TUhxBUUybls/7UxGgsRzny3GztjoJkaoNBMSO6IUBt3CRrXbrLqzI9LDHw0g25f2YpJZgF0X8MZWv9j0f9gGjvbDIWOdJhs+9c5Zp8qUz7evkKxuITCs7FZ+sWdX8ZLPu96roDpK+Z6bV57V4Z3/2ieaCNk6EyDoTMNFDA7GGFsdww39o5qNYnLIIzozN+pc2ZXDtMN2TZapXemQdeCS/eCS6iBb2ooGwILgoiGF9NY2mnh5OQ65VJoRM+9bqpjLtM/KtH/YJrhX8/izPssvVzDy/uEHvgVibcUQoitRsYCV3c5jsmePXuAZnXUqakpBgcHz2tz6tSpFW03u3Wfjfc/lCa5I0J9xiP/co2gHqIZGpFOs1lBNWeg6RoqVDiLPs7C2Z9Fn6AeXrWJqdE+k/S+KHO/rCzfpjyFu3R17s9G8XJgpj2sDpeeT8xe9HZ0D9zU2gc4ut+dBMCvhUz/qEhjxif95zKgLIQQYnXzPTGOBIobXisw8tkcp/63xSvdJSGEEJdJV1cXn/jEJ7jrrru48847+eu//mu+9a1vtVxndHSUL3zhCwRBwJ//+Z/zxS9+EU3TGBsb46GHHuK5557jS1/6En/5l395mfZCCCGEEEIIIYQQQgghxGYxPj6+onLCRlVNBYhGowC4rnvBNo7TTLaJxWIbdr9Xo2ifSde9SaJdJprRjDl6s9qEW/AZ+6ZUlhVCQHKkSnKkytH/kKbjtnizsmbKYOhTWQCmf1SkcurC77lbXeg1k0FD98om6JrF5m//IgoTNWZ97KxJ5ZRDcmcEZ8Gn7wNpdLtC8fC1MZGD7ofsOVEmVfaw3RDTbz6eSgP1lipMZhDimxqvX59mqWfjzl/eKl71uf54gVzRo5kK3hToGvWoQSFjMd8ZodBjXTBxdeeJMtvGagBMbItx6rpmvPD4thi90w5Kg1gjRAP6Jh2yix7Pva/jkuyPuDR8W+fk3hQn96aI1H1GxmpkCy4RJ8R0FFYNNNV89uRGA8bvsSkPSgLypVY97TL690v0fiBFrN9i4MPnikgppQjqIc6iT+2MR+lEnbBxBTsrhBBCXMVGRkbo6+tjZmaGp59+mt/8zd88r83TTz8NwN133325u3dR1n2mFu2zANBNjc47EgCEvsJd9GnMeBQO13EWfNwlH3WZ8zb1qIYZ0zHiOrqlEdRD/GpIUAtR73DCjp73pKjPehSPXBsXq2tmQPbeJRZ+2Et9LEZs2/qPj+4qkjMB5UFjjStAfKA5Q+TMT0o0Zq7RsrVCCCHWZbo/zsDfT9FxW4LcbTHyL8pnuhBiawqUTqC23oxWF7tPX/7yl1f8/81vfrPtOo8++iiO4/DhD3+YRx55ZPn2bdu28Y1vfIP777+fv/qrv+IP//AP6e3tvah+CSGEEEIIIYQQQgghxGayVceWN9KbxyedTq9ITt1IuVwOgEKhsJxo+Xb5fH5F22tRen+EnvekAPCKAdUxh/qUT+c9CTQNxv9RElOFECsVX6uTvSnGyGdXvneG13joYXpfc1IEv3ZlK+IZJQgS6iIimsHKGAROyOxTZZRSJEYiFF6r0/NAEiuts+AqwitcGfZS6lhocNOrRYxQoTQIDA3fbJ6zaEqhvSXvuB41SdR8rn+1xC8/2L3hfdk+VmHP6TIApaRJJWFhhAo9UCRrPom6T6rmMzxdR9GskllNGBSyNnM9ESqZZlzw8HiNwNR44Z4sjcS5J8XoviSj+5qJql0zDXYer+JEdbJ5n1ufzvPau1Ir2p8nDOk4GVAaMvBjct57OdmLIQO/9NE9SHUVOHJzdnmZEzM5cd25c+veTHn5b6sSsudHDXoOe5Kcepn4lZDJ7xTRbUjtjWJEdXQLIj0WkZxJfMgmMRyh674EylNUxlzmf1EmvHbneRBCiKuWjAWu7nIcE03T+MxnPsNXv/pVvv71r5+XnHrgwAGOHTuGZVl86lOfuuT92QjrPlOrnXFJ74uimTDz0xLOvI9bCM5Nb7PBdEvDiDcTTs24jhHTzv7Wl38bcR0zpi/Pgrcavx4SVEP8Wohb8KmNe9TG13YmZGUNIh0mk98tXrL9vJrFd1eJHq2x8KMe4rurOLMRQkfHynpkbi8QHWo9NUrvIQ8tgIX91pruz0qfS2J1C9d25VohhBDrs3iwRub6GJ13JgjqIaXXnCvdJSGEEJuMUopvf/vbAHzhC184b/l9993Hddddx7Fjx3j88cf5/d///cvdRSGEEEIIIYQQQgghhBBb1J49e4BmddSpqSkGBwfPa3Pq1KkVba8VZkYnuT2CldLJ3BAj9BSjf7+4omJTdUyi4oUQq/PLIeP/lCf3rjh21mD6hyV63pui5z1JRv9u6ZqNC/WKzfhLK2PgLl25WExrEfyzBfr0BsSOg9EAtStC5WTr2B7d1KhPeYSuYv7pKomRCFZCZ/7pCp13JUh932HxepPCLgP0LZakGobcfKiABrx2XYrpwQSB3zqY/v1PT2P5int+vsCpPQnm+jemErvd8Nlzuoxnahy8tYvaBZJEIw2fvrkGXQWHZMUnU/TJFn22j9VQNKu96goWOq2WiaYLfVGW+iMQhtzwQpncoscdvyhQTRlMD0eZGTq/Mmz/yx4dpwP6DnnUOjQW91mw4x3stB9ilUFLgYoCkttxQVZdYZ59KffOOUSeW+LwTWncqInuh/TMOuw5UaaSNKns0dA9heGD4arm+/MWe+leDUIXiodXif/XITFik9wRIT5skdodIbUrwuLzVSkWIoQQQqzDI488wte//nV+9KMf8eijj/LFL34RTdMYGxvjd3/3dwH4vd/7Pfr6+q5wT9dm3cmp8wcqOAs+xWMNlLcxV+SaCXbOJNJhYHeYRDpNrLSBEWtWQH2r0G+WhfdrzYqozoK//LdfC5eXKU81E1gTOkZCx4wbmInm/8kdEXI3x6nPeEz/qETQZtYnK9W8YnCXzk2TNfCr1Jr3bzA6t+a2k43smtsCmNraZ6wqutG1b1df+3an3BzqfS7qGYPKmQRavw8xn8aUTeOfBtD2Oei3NtBSzW2aHzqzvG5qT4TsB9PM/ksZ/nL+vCfkasdZy2vwePPvvscTqOZESLxWP39AvpWCu/aLastc+8CLsY5jF6r1XTG9uDS85rb98eLa21r96+pHXB9dV/u1KoTxNbfti6x9/wDmnOSa2+adtffD8ddY8fesbGztF1/z9bX3+T9X71xXP9ajL1Vu3+is9Tz/F2qJdfXD9df+eolH1v6F03peh1XPXnPb9W57JL32mVufWdq5rn5MljNrbuu3GaB8q0Rs7Ymdura+c4b1PD/MdbxHA4x+c5Htv91Jz7tTkpwqhBDiPGfOnGF6ehqA+++/f9U2999/P8eOHePZZ5+V5FQhhBBCCCGEEEIIIYQQG2ZkZIS+vj5mZmZ4+umnz6ucAPD0008DcPfdd1/u7l02/R9JUzseUD3d/O5fj+ts/62O5UqygRMy/u38isRUIYRox10MmP3JuTio/Es1hj6VxcoYeNdokYzySYfOuxLEh+zl99zLzShBZFajcJ9Cr0LnD0HzIYxB/4Np5hMVCodWj7mzMgZmUqc+6wHQ80AS3dJIjETQTA2vHFDfbdPzsk/uRMDCTSblIR1WqUx+NRqarGMoeH1vMzF1LV6/IcX2k1Xi1YD9r5YJNY2FvrXHFl/I7a82Y99euil3wcRUACdqMjaSZHLnuRjNZNGlZ84hW3DRFJTSFqf2rzGGU9c5cmeGWMVn36EKyZLPnqNVdh+t0khrOGkNq67QfYgWFV4U/KhGfEmReMYlfB4q10PlBiCE1CuQPAa17VC89wL3GYb0/jIkPq3O5kwaKF3hDCsq911EBeB5HSZ06AtgoHX8ZddLHomZZpvqgM7CDQaYmzQr1g+JLoIfh2q/hhcDsw5LnTYdiy73/3IROJd3qoBcwSP33MrNKA3m11j8SFwGIVRHXaqjzc+M2KBF34fSdN6ZINJpMfPj0hXuoBBCCHH5Pf3003z6059e/r9SqQDwla98hb/4i79Yvv2ll15ieLiZE7Zjxw6+9rWv8fnPf54vfelLPPbYY/T09HD48GE8z+P222/n0Ucfvaz78U6sOzk1dBSFV9skV+mg6aACVs4opTUvBpeTUDtM7E4DK22gaRpKKbxSiLvkUz7pnEs4rYXNyqe1kNBde3JL0Ahw86sPGsQGLPofTNNxW5z5X1Zab+ganRVrPbSownh/bcVtSjVQRyKEL0cJRi2MT5bRcucunNL7o/S8O0npWIPSa+sYLX7LdZRe1AmSa0+GE0IIIcIGlF6rk7slgZ3TcfPyOSKE2FpCNMItOG3k5dqnEydOABCJRBgYGFi1zc6dO1e0FUIIIYQQQgghhBBCiKvdVh1b3kiX4/homsZnPvMZvvrVr/L1r3/9vOTUAwcOcOzYMSzL4lOf+tQl78+VEhuwyO5IEnoKZ9En9BWaphH6ivFvLcl3vEKIDaGZzfd13bh2P/+8YkDoK1K7I2RveFuxj7+Fxt6Q2t2X4D1XKXqOe0QzED8OQVTRGIHcvwAaLHyymZyafcwj0nF+mLOVMTBiGn0fSmNEdZaerwIw/3QFvxZiRDV0WyfSYTI/bJDfZ9L9qs/ArzzqOY38HpPKkI66yh97LWwGN1fjaw8FX+iNstAbxWoE3PPLRfYfLvGLHhv0i0tw1P2Q/SdKJKs+c50RipnzK5a2U8nYVDIri0asp0gGQD1p8vJ9WQhD+iYc+scbJMoBsZJqVmTVIbBh9D1R3JSO7oZ0HfPpPO2TfgVShwB1LlEycRriY+DHPMY/cS4x0sqHDDwVoLvgpZsJotHAx57QiIxp2JMapQ+F+N1r6HQIxg+jaNMG2tl7VskQ9VANsucHrncc9si9ERIazb7mjodkT4QUd+jM37K+IiuXmlUIGX7S582H8c3ip0qDV27JkCl49E83sLwQz9JpxAym+6PEqwFdVo3QhMCC0NRxUmzeBFxBfdLj9N8uMvxrWVK7IviVOAvP1NqvKIQQ4oqTscDVXcwx8TyPxcXF826v1WrUauc+F4NgZX7j7/zO77B7926+8pWvcODAAY4ePcrOnTt5+OGH+YM/+AOi0Xc+iczlsq7k1KFfzxKJ2Gi6djYBVUPTWfG3pp97IEJPUX6jQfFIg1i/RfbmGFaqeQLs15pJqNVRF3cpwFnycfM+yr/AnW+w+pRH8WidzE0xFn5VWdv9yutuXTQNtBsdtN0uwT+nCB5Pow159H0oJNJlYmdNikfqzP2iTXLw273lGkMraLC+gqlCCCEEldMuuVsSJHZGcV+QwRAhhLialEorZ1mMRCJEIuv/gutC8vnmjK7ZbHZ5Bva3y+VyK9oKIYQQQgghhBBCCCGEEBvlkUce4etf/zo/+tGPePTRR/niF7+IpmmMjY3xu7/7uwD83u/9Hn19fVe4p5fOqb9ZpPeODKk9UaK9zfA2vx6wcKAqialCiA2h2xqDH8sAYCZ1nPPjiK8ZS89X6bonueoya/LSBM3qPvQddQGN0FYsfRB0ByLTGoV7FeHZPFnd0vHr3op1kzts+h/KLP/vFnxCr5nI51fD5WI1yV0REiM2bkrDS+pMPmATmwvoOuozcNAjeAnKwwZL+zZXUt96OJFm3yPu+j8bvajB6d0Jdh+vsvv1Km/sT61rfdvxufvFRaJOM3y/GjN45Ybsuvux4XSdmZEYMyMxOmIVrBp4yfMTG0NbZ+5mG+92n+RhiE5AaIPb16ycqrughWBVYds/emgBoNH8DSzdqFO8oXn807ZHFUXkdUg+p5P5oU7pvSHecIt+umA+Hkcr64Q9AerOBhyz0U6aaN9KoK7z4G5nRZR/YqaZaHvy15vxEcmxgO5DPtlTIZlTIWiJZny1DsQUwQ0uav9lCsp/G7us0MNmMmpxt4buNhOEK8MG6DrFjgjFjvPjPJyYiZ25MlWcxcUz4zr1GY9It0m01wYkHlMIIcS15X3vex9KXVxVzPvuu48nnnhig3t0+a0rObU+6eLroEJQoUKFwNnfKlQQrlxmpQ2yN8XI7I+hQkX5hMPs8TLuok/QuPLlSIuvNcjdGie1J7q+yp1iXbSowvhkmfBQBDVrYkR16lMes09VaMx47TfwNso899zRC5IxLIQQYv0aMz5KKeIDFvkXrnRvhBBiYwVKJ1Bbb9bIN/dpeHjlNzh//Md/zJ/8yZ9s2P00Gs1rQ9u2L9jmzWTYer2+YfcrhBBCCCGEEEIIIYQQV9JWHVveSBdzfJ5++mk+/elPL/9fqTQTZr7yla/wF3/xF8u3v/TSS8vj3zt27OBrX/san//85/nSl77EY489Rk9PD4cPH8bzPG6//XYeffTRd7Yzm1z9v21jInE2YSEM0f1mEgm/ncEygtYrA72xcsvl2+On2m7j/tTxlssfiLafwNJRrZOF/tHtbLuNghdruTxhtE/gqAStK20kTKftNk7VW5eAG4gU2m7DU60TwCyt9WPrhFbL5QAdZusiCd1m6+cGQEO1vp92ywFGG60f2z671HI5gKNah3auZV/m/dbJZrWg/QSw77SSTrvHFaDU5jk67eXabqMWXvi7PYB7XlkZp9g4Eqf68+bfu76sE7/L41e3tH9st6LCoTrp/THMhM74t/K4haBZlfHpjrMtVn8OeGHr1/RAsnjhhQE4QzqRCY3Rv1ok+A8KzYSu3+nE/HuPypMlVAAdD3csr6JbGl33JcjsjxE4IePfLqAChfVEF9H/vve8u0g9H+JPQfDpyeV6KA4wCVhpndS+KJlClPQJncIdHvlVEuXeZBjtkz/ny4mWy32vfRKsZbdOJAz8leciDaP5PmHWw+Vlu/vmW24j3zj3uVLcb+COaQyO19FjAdP7m6/F2dlsy20kMnVuOFIk5oQsdlnM9UWYG4wRIQRCzDVUPe1KVlsuX6zG226jnUzUhTbFpiYqWdhB8+dN2yCe97nhbKKza+gEEQ09gFrC4MR1SZy4CWdPBYLg7OOSgsSdLnc+v0T6KYPXrksxPZggm1yZqGeXA/b/vAo+zG23GL8ljaEpuAkiIwG7flXHPmajjtn4EVC6xk7PwfDBSWjU/eZ7VX3QYn4Q0pMeuTM+lheie6D7CqusYT4TxXlV48z7LcKojqGF4Id0vRJgVcGPQ3xGgYLpB0zcnM7oZBdBihVFhN5quppueTxnps+9X9+Wm6MvX4dJi1/c2N+8sQHZROvP6snFTMvlAJ2Z1s+fX8zvbrsNv825fU+8/efskt76dV9qtP+cTSVa5y/40fZx9p7f+v3F99tfxxS/1/qY5curvyZ7Z+rc9FqhWRk3UCw+1/qxEUIIsXnIWODq5JhcnHUlpy4+W8PU1pdMWDhUI9Jl4hUDgvqVT0h9K78SUj3jkrm+dXLqcgKz5EFeNC2iMO5sHuPJP36HM/HEIEwo9KqGXpQXvhBCiIsT1EKiPes6FRJCCLEJjI+Pk06f+8JjI6umAkSjzW+nXPfCwRyO0wzSiMVaB4QIIYQQQgghhBBCCCGEuLZ5nsfi4vnl+Gq1GrXauUSFIFiZvPU7v/M77N69m6985SscOHCAo0ePsnPnTh5++GH+4A/+YHks+5qg67TJORNCiHVTwblg0PoLKSL7rt0qbyqEpeeq9H0oTWKbjZu/tBP0WtOQebKZSDX7VHm50I3yYeYnZfoeTDP4ySzTPyjiFYPl2J7sLc1COeU3GpSPO3iF5menpa0e2Ot2aiRPKLruTTQTbgE379OY8fFKIUvP1ci/WGPwU1m2j1ZbJqduVr0LzceqnLz4xOoj709w48+qDBx3yc74vH7/2pJCbSdEAYdvz170fW9mtZzJc5/MUnPWdxJSTdk8c08Xdz+7yP5jZTryHtO3mSQKAV1jHtFKSKzUTN49c3OEhR0rn3dOxuDoQ0k6Rl06Rz3sWojuKwJLo9hvMHXz+f0pDVqUBi0i5ltis8OQvud80mdCdn3XZeYOk9p2na5DAdmTzQqsGs1qpoTQ/0sfPwaxJQiiMPtrXDBBda1e3NPDPUdn6Kg46H5IaEq891a040wFDRj/dp7G7JWp1CuEEEKIK++SZ2Qov1mdbLMqHm0w+LEMkR4TZ271fvrlAKUUiRGb4hGpsLoZBNsC9KMmWlUyhoUQQlyc8okGuXcliA9b1MbXX8lbCCHElZFOp1ckp260XK45k2ehUEAphbbKl5n5fH5FWyHE2mhnJ2xVAWgmGDGdoBai2k+aLoQQQgghhBBCCCHEVel973sfSl3cZP733XcfTzzxxAb3SAghBEB0f40gb+KeiqIaBoW/72XP/xEmnihQn7z2YkiMWDNprPPuBEZMZ+HZS1f5LvWL5n0V3x9Q+o8r43GrYy4T3ykw8JEMw7+eo/R6g847E0Q6TUqvN8jeGMPOmTj59v2rbQOzCKlqBCOmo+kafjXg9N8uLbdRAZSONejptUiVPMrpq6d6ru6HDE3XcE2NpY6Ln7QijOgc+nCCHc83yE373PLDCmpnhJmuC1eE7J6ukyr5VFLtq8Fei5yYyYH7urnj+UX6Zhv0fv9sIiigNGgkNU7dEaORuXAI/9J2m6Xt5xJRdW2d55O6zszdNuVBn4FnfQYO+oQvnE1GBeZvNagMaoRR6H4xIHNKYdUhtMFoQO4XkH/v+vf97WZzcTorDl3lBnO5d14NV2wu8YpHourjGZokpgohhBDXuGu+XFht3MUrBfQ/mGbxYJXKSQcVrmzjlULKxx06bk8Q+ora2IUr6IjLw73Nx3zdINguEaxCCCEuztKLNbK3xMndFqc2XrzS3RFCiA0ToBO80yksN6HLtU979uwBmtVRp6amGBwcPK/NqVOnVrQVQqxkxDTMpIFuaeimhh7RyOyPEhtofoH61sTv0FPM/bxM+YRzJbsshBBCCCGEEEJsSZEeE+UrEttsIh0mpRMOQS3EiGpolkbtjCuTRollW3VseSPJ8RFCiK1DsxTJ9xbhvUX8RZPif+kBYOiTWconG8z8uHyFe3h5FV6tU3q9Qeb6KJ13Joj1WVRdUO+gcrXmQPxlDW9A4Q6fu113mt8RBR2rr+fM+Yz/Y57BT2RIbLdxiwEdd8SZ/mGJiccLDHw0w7Z/3UHptTq1SQ8jrwjizaQ6Kw8dv1IEUVh4v0bpXTqz/8M8ALlb43TcFj+vkE3pWIP4x3Ncd6zIc3d2wgUqsW42171RRFNwdE/2nW9M1zl9V5ylaY+dz9e59Y1F5haqvLS7a9Vql/sOVwh1ePmODbjvLcq3dX51Xzddcw2Glio4CZ35HTZ+9PKeT1aHTE706XQfDkhPBBj1ZpJsEIEw3uzL/B06ge1jVRTlexRdP4HoJEQmwBl6Z/c/3RFn/3ie/qWqJKduQbtPl9GAl27pIMfcle6OEEKIdZKxwNXJMbk413xyKgpmflKi444EfR9M497mM/3jEu7Sym9gFg9WsdIGve9LNVf7B0AHdAVGczYbjLO3aYChmjPM6FA1M6CDZqjmckNhdPqYvR56zr9armU3FxNq/8ZpHmshhBDiIoQueIWAWO/VM+uhEEKIS29kZIS+vj5mZmZ4+umn+c3f/M3z2jz99NMA3H333Ze7e0JsapEuk4474iRGbDR95QW7s+Qz+1QZFSg0U0MFzdl9e96dovOuhCSnCiGEEEIIIYQQGyy1J0LfB9PL/weNkNSelRWVJr9XxCsGeKUANLBSBokRm9qEi5u/OrNWI90msT6LymkHvxK2X0EIIYQQ17ywsrL6Y2pXlPqUR+m1xnmFTray0FXkX24mfA5+PEP6SY3Sh8KLTlDVKxA7rhM7Dgu/HTTja4GlTwfkvqNjTV44+NOvhMz9osLQJ7OUXm+Q3hcluStC5aTD2H9ZouPWOKl9UbI3xeEHze+cQgP0s6ewVhE0H9RbQoLKxxskd9gM/1qWwqt1Fp+ronxAwev70tzxwhKDk3Umh66OBLpkzUdpMNcT27BtFvstXnnIYMfPHXoLDT78/AT5lM1Yb4qZjhjoOv0LVYwQxnbGCG0J3G9noSeKv/MKv5GYOvPv0lm69cKVbpdubqYTxE2XhfdD/z9Bxy+hfD0EKaj3AxdRoLcRMQl0jY6yfBe8VQxNVNh+pooZKExf4ZsaxYxN7kp3TAghhBBXlCSnAo1Zn6nvFol0mfR+IMW23+zAqwQ4cz6VUYfqqItfDZl4vIAR04iP2HT8jzEINQhBC4E3fwINTQHBudu8sSgEq19Ia7GAxMfzmF1Szn7d5LpWCCHEO1Q4UqfngRTp6yOUjsogmBBiawiVRqi23iwul2ufNE3jM5/5DF/96lf5+te/fl5y6oEDBzh27BiWZfGpT33qsvRJiKtBak+Eng+mqes2J+wsZSOCr+l4tk6g6QSdGuw9+zpW0OeUuL4yC8DSi/Ur2HMhhBBCCCGEEOLyOfXn99BZr9FbqTJcLgFQOe0QH7KZP1Ch9Fpj3ds0kzp2zkC3NPyaovf9SZQHbnFlDEIYMSn6caa9LMOxBdI06PtYFgN13jb9esjpv1m8uJ28TEb/l3uX/+6qV+mpV0g+N0ds0MLOmHTfn6RwuM78Lytr3qZmQKzfQjM0GrMeQeP8Y7OVbdWx5Y0kx0cIIbYmI9s8b3LzPhPfKdB5V4LuB5Ikd0WY/VkZI6rjFQJC79o4N3DmfSafKDL0b7Kkn9QpfTBERda/He0tp6O5x3XynwlBgzANKgpGrfX69UmP+rSHnTMon2zQ8+4kfi3EmfdYfK7G4nM1jLhO8m+7MOpgVMGoK1LHmuurt0VH+9WQ8W8XyN4co/POBPEhm/Fv5VEhFLM2kwMxdp0sM9cTwbMvnMS3WRTTNtmyR+dincXOjUtQDW2dAzf107tQZd9EkY6yS2d5sVltU9cwQoUCRndcHUm84iJEYfE90PlzSB9u3pTVYPaTrL+gUBiihwrfkIDvrSBRdrnuRBmlgWPrlFIWh6/LXOluCSGEuEgyFrg6OSYXR5JT38JZ8Bn/Vp7ENptIl0Ws36LvA2nCQOGXAvSITvlEg0i3if2yRf0jDmFf6wEHY0zHnNYxelysnQ00HcKqgTcWISyYqLpB5b91kfzUIuaAd5n2VAghhBAAxcMNuu9Lkt4bk+RUIYQQyx555BG+/vWv86Mf/YhHH32UL37xi2iaxtjYGL/7u78LwO/93u/R19d3hXsqxJWnmdB5d4LcTXGmrTQnoj0o7dwgXXCB7xnV2W8uX032E33p0OXoqhBCCCGEEEIIcUXptsb7RkeJhCsrkiZ3NCP9kzsj605O7X4gSfbGCwSi6xAGCt1oXoNbWkiHWQEUZ7QO+lWRKhEy1MjQwCsHWKlmEL52dn3C5u9IZzO0xJnffJNuZ5w6ty5MUzUtjG6T0FHMPlWm932p5rFRitBT1Kd9apMuKDBiOrF+i9wtMcyETm3CozHn0XFHAjPWHMxQgWL+6QrFo+tPGBZCCCHE1cXIBOS+MM3Bu00IYe5fKpRebzDw0Qw7/k3ncrvZp8qUjl0b5wbOok/xwZDMkzrZ7+qU3x3id69vG34XOCOKyBkNo6qReEEjSAA66HUNP9e+muTSC1UGP5GldNzBShsMfzqLUorKGw4zPykT1ELcrrcGj2v4SUXueUV0Chq9K+N77Q6DoB4y+9MS/R/OkLkxRuFQcxLVk7tS9Mw12P1Ghdeu3/zJVqdGEmybrNI/t7HJqW+a7Uow25VA90O2zVXoKtaJNwJ8Q2NqZwRMSTbcytwBmP5NsBbBnofMy5B5ESZvX992eoqN5qWlBiOzJc70pi9Fd8VlkqwGaICmQGkaL76rs+06QgghhLg2SHLq26gAKqdcKqdcAMyETnJXBCttoEc0kjsjy1/ItJ0NyoHIUxZaNCT56SW0t0ymFLu3TLBk4hyN4R5OEBRNSU4VQgghrgDlK4yozHIihNg6QnQCtt4XQeFF7tPTTz/Npz/96eX/K5VmpYSvfOUr/MVf/MXy7S+99BLDw8MA7Nixg6997Wt8/vOf50tf+hKPPfYYPT09HD58GM/zuP3223n00UcvfmeE2Ap0sNIGPe9JEu22mD9Q4fhDu0G7wESjIaMAAQAASURBVHmVUkRDn0TgkPRdkn5zYpC038C9jN0WQgghhBBCCCHWyojrdN2TAJqJispXaKZG4dU67lLQZu3z6ZaGoVYPwK9NuUx/v7iu7VlpfTkxtTbhUptwSe+LYudM8i/X8EoBgaMI6iGVB68nYTgM24soNIpagqLW3Ddf6WRUYzkOYuFgleKROtFuk47b4sQGbHSreb0/9YMi1dHLeCWvQWpvhEhHM+nUr4cEZ39ivoerG8uFe+ZiCbQnZ/GKAZoB8SGL+JBNbMDGiGp03GYQBgpNA01vrlUdd/ErPul9UVJ7I5Reb1A80mDkszk0QyM+bF9TyalbdWx5I13sOLUQQojNT7dVc2KOsxozzUIn23+7mXhTn/bofiBJ6fUGqxSe35KCDih8PCT1c53Mj5oJqu7I2tfXHdDectoce01H6Qot1HBGFO5w+23UJjxqEy49DyRZeqHK/IEqiWGbjtvi5A/VV508pTEAXhK6fq4IIpC/NUbxcAM0GP5MDt08912W9paPds/WGduWYMfpCsf3pgg2efLlLUfzKGD+EiSmvlVo6pweSHN64FxSYSJTv6T3KTYJHbxuIGy+7UVm17+JUtxGAdmaR3Ysj+WHLHZK6sLVarYnwutuit2nysQbAXc/N08paVFNmOhRCK+dy2chhNgSZCxwdTL+d3HkDK8Nvxouz4z0pt73p4gPWUx+tNR2/ZHfMLFug4UgCW//fioJ3KXgrgoeBrhJUub6zszK3tpnaArCtb9IvMBo3+gsP1x7W4D3Hiqvue2x6tpnyUkZ6zt2n+p9Zc1tT9R719z22fnta26bja7vIt1fx2M4Wlr7jDRLTmJd/fi5tXfNbUPWnvDVYdfW3Pb25Oia2wIc1frX3Lbi2mtuq9ZZtrtQX/tgUMNb+1t0Jnbprurmy8k1tw0uVBZpFZa1vpmVE5G1f9Htr+M9rOavva27jscEwF7HPtb8tT/vxgvZdfVjPQyj/ayEF2M9718ANWftxyMdX/vz//Q3bz7vtuEDs9iRkPmvXUcltfJ+d/yWVPESQoirned5LC4unnd7rVajVjt3/hkEKy/Yfud3fofdu3fzla98hQMHDnD06FF27tzJww8/zB/8wR8QjUYved+F2Cx0SyM2YGFlDIy4jhnTm/+fDVqd/F6R2hkXPtK8PjJUQDJwSYQOMbeZiJoMXMyzAbieplM1bMaiOcZiOdZ+tSaEEEIIIYQQQlwe6f1Ret+bWnVZZv/K7/vWmrDpV0N+tm07nfUaGceho9HADEP85wosPFNddx9DH1So0HSN+JBNfOjcdxy5d8WX/z7xV/OUwzjlMM6Ml8UgRLdCwrOR+NNksQgYJt9c96YYnbfH0YzzvwcN3cubiWGlDfrefy5m4M39BRieHgOgbNlUTIsd5QKVexJM/7CECmDmyZVxCXanQazfQgUQVEPcUoBXaI4Jxocs/GqImw/Y9q9z51ZS0P9QmmiPCZrWTFIOFMpvVhMrvd6gPiWTkAtxKRQbUQx99aoBa4nSKNRbj+Hfkp5ou415v3XM0ktO+/d+V7WORygG8ZbLAXbGFlouz5ntP0MOVVpngN2ROt12G0t+69gRS2s/ccOkk2u5/Gip9Whx1Gz/nrs/OdNyecZsH5vkhFbr5bReDnBLYrzl8qjefl+qYevKGcEaYpbieuvn6Voet9FGV+v7MFrfx4jd+jkMMOu3joEca7SPg/PaxDBaevt9rf5g4LzbXj77+4bvV1DF4JpJTAXI378EwKIO/R9OEy+bzP3nJdTZcKj7XmmdqXbsd9LY955775j4ToHGnIeZNJbPw97OTOh0P5DEr4SUXm9w+P91C/50if1jBTJ3JHj2/zTM4HyVjlNLvPE/30AjYrLnvS+ct50KYOcMMjfG6LgjQcetcdxCgG42z+mmvl/EWQoIas3vrpx683Vdw0IPwa+auPa551Qi1T426ULzty5bw3PHrbWOl9o1PAdA7phHRzGg2qMTvbHONs7FoWbt1jGp+Ub7+MV2yaftYibja4jzS5it2ziR9nF6XbFKy+UDsfYx3m6b944lrf0DZ+qt4+3W8rZRc1t/tvQkW+8rQLzNMQ1V+/i9oXhh5To14CfN92jt5gaO19Fyfc1ceSwcU+dXN3Rzx7EFrECRqzmcnGl9PpDobv9ZnYm0fk22+0wAqLaJE46t4bzjQ33HWi5PriGufcFbfezhTccrPW238fpC6zaNNu8tAHMLrc997agHhsb4tgTz3RFuPlwgVfFJV5ofCupzXfjVkPqkx+JzVfzKpYlDFUIIIcTmJMmpF6E63pxxtP8jaSqnHJwFH68YoN52vZy5MUqk08QflqlAhBBCiM3q+K40N71W4N4XFjkzGOf1XSnQZdYTIYTYKt73vveh1MV9S3zffffxxBNPbHCPhLh6GAmd5DabjtvjmIkLf4E3+LEMXjmguzpBNPSIno1KCIGaYVMxIyzaCSpmhIph42jmGr6hF0IIIYQQQgghrg4DH8nwxl/Nc4GiqMsGP5lhz+jK5B9X1zF7LWIDFo0Zb3kbmRui9Lw7hQoVtUmP2afKBNWVdxDUQkb/fon0/ii5m+OAQrfOfb9RfK1O4dU6hKChiGguWbPGsL0ICooqhn92Fnj9LeHSRuzcNvx6SG3cxa+EVMccGrNrm5hVMyE2YGMmdOycQeGVOn517YGp8SGLjtvPn2BZ0zWmf1jELQTM/19uJBr47C0s4BjN0JfGKpWz3uQuBriLqydB1CbOBR2XTzp03tHcXnzEpjHrUTrWIAxAN0AzNDRLI3tDjPS+KOP/lKcxs75JeYUQQghx9dACxfBLDSxHMXdw/ROKbAkhzP+ywrbf6qD7gSRzT7VPkgsdjdzNzSTIM9/Ko3yFm2+ei10oMRXATBkkdzQTszM3RJlbqlFINJOqjuzowAgU140VWEraNNokL7r5gPlfVFh6oUZ6XxQro1Ob8CifaCz35a20ULF7osR8LroiMXUz6ng9IDRg4t0SAi4uMe/s9eGgj36rA1Otm2+bKrFzsowZKkb7U5wcSHH764uYgSKftJnoivO+I+PE3ICJjgTT2QSZukshHiGfjJCpOoTpED8isXubWSNucvCu5uQVpheSzTvs+f4csV6L1N4Iqb0Rpr5XpDYukzkJIYQQ1wq5MrkIlZMOc5EyqT1R+j7QnClEKYVfDnELAaEbYiR14n02+VdqJD8vs38IIYQQm9VMb4xC2uK+5xbYNllDaXB899orkwshxGYTKn1NM15ebbbiPgmxWQ3+Xh9xy8BcZR5fBZT1KBwt4BZ8vFIAmka028RMetRKIYUlH2fJxy0EzQzVs+Jnf4QQQgghhBBCiM2u9FrjvMqp1TGHxLbVK5jpUX256tJqon0W8cFzlUpO5rJUbYtIELB9YY6hT2UBmP5xCa8U0PPu5n3XpzwSwzbRbhOtT0M3oXTcWS69c/TRO7htdBa9WGOsI0Wu6pB2PJRSpPZEsdIGRkTHjr5xXiVU/WSBiNFM+EQpFud86jPNwNE32zamPUKv/cRvx796F0YQ0lOu0V+o0lOqY7xlwrjczXHO/Lc8zkL7JE5Nh95P5gg0naVIDMf3SPou5tntpT/exUs9/XiGzqIRxzN09uYXKVs2x35jiPL/buVjtFrRwtWKxGlBc59PAhHfJ+L7VMwIavfK47bz//YMuq0R7TIxUwbuUvsqbFeLrTq2vJHk+Fw+Q6dqTN/YumqkEEJcCnY1pP+og29rTN0YITUX0DHhszhiUjx67RYp8SshfjUkc12MpedqF5x4xB2LUHsmjfI1zISBXw1wWkwgcr7mOV/hcB0zrnOHvoA6e+tSOkLEC7CDkHy6dYXstwpqIfmX2ldi7Co2iDsBL+5rXS14swhNZPJ9ccnpmZAwrmDSJHwuAoMtGoch148WURoEusaeiRK7J5rVa8e743SUXW470azIHGoaI0tVRpbOJf0rQAPUG7DQY1NNmIzuisvzfJPzLZ2FnhiJ7zYfa7vTYOSzObrvTzL2zfwV7p0QQohWZCxwdXJMLo4kp14MBcUjDYpHGugRDTtrYGcNrKyJnTVI7W5e+E59v0h1zCWpxa5wh4UQQgjRim80TyQVMNUrn9tCCCGEuLbNmimitkWHXyMRuoTAnJliwUhSNqJ4mkn/U+Mr1qmcdK5MZ4UQQgghhBBCiEvkxH+cR7c0YgMW3e9OLiemVsccQl9hJQ3mn6msqWqmX12ZwFi1LZZiMeq2hfn4cXZ9vhkA3/9gekW7+JBN4IR03Z3AzjXDO3K3+swfqFI74wLwen8HXeU6A4UqP983xK4/foX+h9JEcia6rRG4IfW5EO1sjmVt0qPyhoPdYRLtacY4NGZ98odqqHUWANVMSAzb3Do6R2+phqEUhZjN8b4csf/3CbxySGpXhL4PpcndEmPmJ+X227Q0Ak0nEgZEA5+aaVO0oyhDwwwCuho1Hpg6Q9W0eKmnj7lEkrlEEoDQbp9IuxaOaeKY5nISqxkGbCsWCDWNzPVRkjsjWDmDqe8VCd0L3KcORkRDMzV0s1ltVX/L35rRTPKoz3grJvcSQjRtO1Vn+2zI1HCUsd0xSUoQQlwWWqDYeaCG5SgMHyrdBqarUMD4rVHOr+t+bbEzzVk/dvzbTmqTLrBwXht/3iLIWwBUx13mnmp//vdWzrxP+aRD5oYoY9/Mc/yhQaKuTzFhU4taDCw0E9lO96fabGn9+hdqVGImpYS14dveaPUuneRUSPYNn8JuCQMXl9gny/CdFLwS47bjBUavi7HUv8okIrpOqEGoa/zkjn5uf22BdNUDDYbnmwnis7korwx1A4obJvLUIiYLySjZmkO67uFYBsP5Mt1zLt24dC44vHBv5+XdX7EmtuODAt/UCXUwMzrxIZvEkA0aKLnOFUIIIa4pclXyDoWOojHr05j1gWYgZt8HUyR3R6iOuVe2c0IIIYRoq3OxwU2vFTBCxaH9WSopu/1KQgixiQVoBGjtG15ltuI+CbFZxZVLv1sjRGPczjJpZHH1zf9FvBBCCCGEEEIIAZDaE6Hj9jh+LST/cn05ifNihJ6iOuZSHVvCiOugFEH9/GREM6kTH7SIDdpEukyUr5j5aRmv0Mxu9MshE98pLFdIvXl2HoBnhwYIHcXEEwU0Q8NK6/Q8sDLQ3ojohI7izH/Lo+nQeVeCwY9lWDjYDMyvRiymswlGlirc+8Y08d/qOLduVCfSqeMuBXjlADOu03FrnMz+GGZcxysHBPWQzrsS2J0mMz8urem46LZG7l1xsjdG0W2doutxojfLVDZBPdIcQ9hbCokNWGRuaE4K6hbWVmE0dBRP926jv1amw6kRCzzSXoAdhphhwJvpaQnf44GpcWqmyWw8yfHcpQtY7qtW2F08W/HlPSmUUkx9v7RqYnK0zyR3c5z4sI1urW1Ms3ikThgqQldRPe2uqcLspbBVx5Y3khyfy2dyKMLIomLbqTojp+oUOizKGYNYNSRWC9AUVNIGUyMxKjkZuxRCbIyeN1yiVUVhwCQz5dNI6XSd8vBiGsszfVyjzNTKSQLM5Crl6YHo9TXqzzUnXJn6bnHd96MCmHuqTHJHJ7EBi5nO+NsaNH8F+jofDw3sDgO/HK46uYgeKnqX6oz2p66Kx3rqbpPdT7j0vOTTyOk0OmUSB3Hp6ClF+HAJfh4jcjLCdS9VCV6p4sR1Qk1DVwoUaGdfWlageOjZqeUzZwUsZCK8sqcD1zZR9eb7xyvbu5fvI586V0xi/F1RdD/k7qeXSJYDTDfEt+U5vlnsO1ZkYKaO8ZbkUwVoDzevyZVSBPWQ2Z+tb3ICIYQQl5+MBa5OjsnFkeTUS8CvBmiahpnW8Usy9YcQQgixWe06VWLnmWbwxokdKWalaqoQQgghBNHQYzTWyZSdIdCM5SohQgghhBBCCCHEZmFlDKy0Tn3ao/POBEE9JH+oDiFEOk3srElQcxn8WAa34LPwTPUdTy4d1Fb/7j+5K0L/g2mUUjjzPoQQ7bHY/lsduEWfuZ9XcBZ8Il3N8Iz5eAwzDAk1jWI0QgdQn/SaG9PAjBuosBnVG+2xsHMGCwerywmLk/9cpPOuOF13Jdg+XyTQNYaWKpzpSDGy1Az+VIHCWTzb/rvF5SRZNOi4NY7daRI2QuxOc7lfobO22IbU3gjd9yXRDI3Cq3VKrzc48me3r9o2c0OUWL+1vF7+pdqaqqcEus5EMsNEMrN8WyJ0GC4XMZQi6nu4hkFfrUrc99lRKpBr1DnVmSUfi+Ka7UNhEq5L0nFZSMQJ3laRsb9c5pa5WeBskO1bljlLPuP/mD+vyqxmQs+7U6T3RXGWfJZeqOLmA0JfoXxF6J397YPyFR13xMndHCdwQiI9JpquYcR1Om9PMPXDItXTMhm6uLaNXpdkPB6hZ7LOyMk62SWP3JKHApTW/IlXA3qnXQIdjt2cYqlvlQpeQgixmhA4ZqHlddReD7pXnqBkp3wCE6LlkK7THjPXySTnfjlk7udlet7TnEjFzhg4b0SxRhw0Sy3nc9ZfaFa0T396Af7jxd1X6Ckacz7xwfMnH2jYzaS2eMOnnGj/uBhxnYGPpIn2nNvWaudayZqHFSjmctGL6/TlZuqMPmiz8/suvc97jD0kn4Hi0tJ14H11DuzsZeT1Ork5j+jZa2QFzUqZNKumKgXVqMFsR5xC0mYhGzm7gXXcXwC2ExLq4Eumw6ax93iR4ak6jq0z02ETmBpGoNBDiPxgkca83xx7kfgCIYQQ4pojp2yXgGaevdKWvFQhhBBi0zLdkJ1nqriWztN3deNbMsOaEGJrCJVOqLbee9pW3CchNqtXEsMYkavky3chhBBCCCGEENeczrsTdNwaP+/29HVR8i/VCb1mYmdl1CXSbWFnTQY+mmHxhSpLz9U2vD+Z65vX0Kf+v4vLVZjMlE7XPUlSuyIMfTK7on2u0eCpHdvwjFWqTSlYPFsRtRU334z0vGFqCYB8PMLhoU6O92XZ++8OLSemvp0R1XAWfJK7I9gZm8qoQ+WkQ+l4g9A5v4LUmzQDEjsiZPZHiQ/alF5vsPBs9YIJu2/Kv1QnPmRjRHRUAOrCd9FSJPC5Y26SUNOpmyZWGJLwvBVtsq7DbdPNhNInd23HMwyins/tY9OkHZeFeIxQ0zDDkIgfrFi/YltULJtSJIKnG+Qa9XP7DgSaxlQixesdXWz7j8+e179Yv0X3/UmsjMHMz0qUX3fa7tPCgSoLB972WGuw49920v+hNG4hIHBClK+Yf7qKV7z00b1bdWx5I8nxufzmBmPMDcYgDIlXQmpJHe1sckOk5jMw2qB/osH1L5d55W6dslRRFUK0o0D7Thxt0UDFQ/RjNuoGF3WHQz1z7vzM8GHHwQb5QZPZfZKcClA82qB0rEH2Xc2JUio/7ji30AxJf3wJf6n5Phw2dN5JdlJtwiV3S5xdk0XGelP4ZvO9v5CK4Fg6I3MVjuzoaLMVQKkViakAqZ2R85JTzaB5Xvvm/Wx28ZmA7BvN46v7F3mSLcRFCE2d0RsSjN6w+vJCIbEh9zN0poYGHH5XZt2JreLS6Z5vXuvWowYndyVxI+fSULb9u/Er1S0hhBAXScYCVyfH5OJIcuolEB+JEAYKvyLZqUIIIcRm1btQRwOO70xJYqoQQgghxFv0/8WzmJoEcQkhhBBCCCGEuDxO/K93N/9Qip5yjUzdYc9cgeq4y9zPy/jlld+7x/rOv2ad7oxh5BQ9WXO5ymX3fckVbRozqydsJrbZGHEdzQBN13ALAbUza6taqZkQPduf4c9kUapZYdWvhMze2ce0phH3PIxQYYQhPbUaVcvCN3XejHE58dg9a7ovtHNB512VGvHZJV4byVKOWbiWgdIUjq3z6p+/a8VqEdfnvb84g5U+l2zRmPU486087lLrhIHjX7uTjnKDd52eJ+YFLCUjHOnMMHdzAn7jXDujuvr3LM6iT+gpnAWXqe8Xz5bUaW/Hv3sGM2mg6aAZGrmbY9h7org6nM7kWIgnmsdPKQylsIJmsmnabeAaBr4y0IJmBZe003wsu2r1Ve/LrwbYBZ/elEuPqqDpEPoKpxxSn/EoHKqfTQydYxsnOfX/vHd53Z5qhV2FPGnXoWzbPNffQ/nGZtWq1WKYlL3yuazXz2+k/0/P0n1fkvS+cxOH1Saa/ViNZoKdM9F0cAtByyRjIa5quk4tvfI148RNTl+fxIkb7DpWJbPkSXKqEKI9Bdpi87xI/esq6oiF9nwELa/j79ZWNJ3ZazOz32a5LKhAhZB/sYamQ9d7oqja2XNMX6f0eNdyu8oPO4D5i76f/Ms1rIzBPquIESiOj2QBCDVwTYOuYqPtNsyUTmLYJvQVunnuMYx0m1gZY8XkH77R/Iwxgs1/LpU56dP7YvPaJrBh7lb57BNbT/ecQ6hBvkuqAm8mR/dn2PNGmUzJ467nlvjlfV2SPCyEEEIIQJJTN1x8xMJK6c2y9EIIIYTYtBp2c4A86lz6maaFEEIIIYQQQgghhBBCiGuZlWkmGrr5AM3SSO200UyNxrzfLKd5tqLlHWOzy+skhm12/JtOAKpjDnM/r+DXQ5wFn0iXiW6dCzC3gpDnbujGdgPu+JtTZK6PLS8L3JC5n5Wpja/8Dt+I63Tf36xuqpRCBSwHrS+9UKV6NkE19FSzUukqcerKh7H/vERqdwQjpoMOZlzHyhoMFUsYSqEAOwxZiMV4ozNLPh4lfIf5DQvJOL9MxlHxNt9xKEXMDZYTU6d+UMQtBHiFNutpkNwZYedMkZ2zRapRi2f39lGNWuCtrfOaDql9UaykQf6lGmr13ODzZG6M0XlXHMM+P8DVDkPib62YqmkEmkag6zQsi4XEyoq6NcvGMXQiZythjWYzOIZBz1MTRDpM4oP2/5+9/wySJE0PO8+/69A6dVZmadVV3dVaTM9M90zPYAZiMIQiCBIEFlwj79a4XNzSuGt3t0t8WGHL5a4tcUcaabvEkcQdFoJQAwwwWovWukvrrNQitHJ9H6K6srIyKiKyuqqrKvv5mZVVZriH++senh7urz/P+6DH15N23ZLH5T8sgQrxKRMz06W67VXjtSpHV5cpRiK8OjnGaix6WxJXAjvckJgKkHs0RvndFqqpYCQ1rCGdyLBOZMjAzGkoame9gRuy9N0a9fP9K7cKca8b/VunBx5Ab/iFJOyNwG9dYfRqIYHz/+exnu9ZdpJ9l1v0elf+umwXek4HyOm9q2Fn+0wHCMLe55ZVt/+2pPTuCe7vO9ka77uMMbPcc/qSm+q7jK/NHuw53fF6hzKqSv+ksQvlfM/pEb3/F9J4otJz+oPJub7LmDBKPaer9C96Mar3nscN+4d+RhS35/TzznDfZeyLLvWc7oY3/74EaIf9q442/d7JR27Qex0Adp95VGV9fyqJgHDMx1cUOOKh5EO0b0fYP98EoLXgMvuXZQjg9tQA3H6KrzUpvtZk9IUkyb0Raudtyu+2MBIqYQhOecCLv5sIPVj6Vg3vkTQRx7s2UEus7ZJsubRMbcPgLd1kH4ySObrx+nD1pTqpgxGmfiFL5WSL8tstvEaA53eOH82GsMt1aKMS3fTajVSz9zW2ZvSPT/L6nPOLzSjjF6oAvPaZNN77bW1et4ygd6JYpdF/W1ynz/lY631+qrf7JxQ27d7nBr3POgBGc7We06Na/zjulUai53TP7594l0z0/j6P6r3PxQBDmXrP6SWn/+emq733WVzvn9Rd8yI9p0+me39H7s6u9V1H3uq9v16Z20Gs4dNIahha97+bftcE+Uj/a6xLC72vGZQBrjv6fQfusxb7LiOm9j5O36lM9F3Gntxqz+mlG+6Vu3H83tuyWklQzEZ4+fEI+85W2Dnb5OM/WsW2VFxdxf5vp7ANDYUQww0w/BBXU7g8kaCa7JwT9vztN/u2QwghhBD3J0lOvc1GP52CAJa+Xb3bTRFCCCFED2s5k0CBicUWF3f2f2AnhBD3Cx/w2X6j98pQAkIIIYQQQgghhBD3B0XrVCPyGgFeLSA6bjD5hQwA5eOtTiKnpRL6IYqmMHryMivJGO+NFzg5muPQYpHQD1n+fp2R5zv99/Fpi+Q+FzOjkzq4OVg2Yvs89c4y2ZoDh6N4zYDLf1BEiyi41c0BuooOU7+QRY+pLHyjei2Zb+Jn0sQmTHKPxsk9up6K4DUD6ufbrL3W3FSZ0qsHlN5qEZs0SO6NEDghtQWbtSOjhIrCWixK3HHYWa6wd60Ma7CYiPPu2BCu3j/R4lboXsCexQrTyzUMPyTwOkmLjUuDDbJdeDJO9liMwkKZStzirV0FbOPm4SVqEJB0HFK2Tcq2Sbdtkn+vgKIp1M62qQ2YLBkdNxh+thMc3pp3WH25QehBGITM/+aDKEDV3FrlnB9MTxEoCoGqogUB+asVVAM3xLcDNGs92Lw561B4Ok5yfwQ92nk9/YDPpd8rblruWL0TCJ9rt/FKFcoRC0/74J+nokNz3iE2vh6sr1kq+/7B0LXfwyDEKfq0V1zKx1vYqx6hHzLyfJLkXqtzPKudvxsuDL7u7dq3fDtJP/W9qXKqTWKPRf7xOEvf6Z2kIoQQyqKGUlfx960naYVjPt7PNVn9DR+vGdBe6J9IJjqacy7JvREUDdqLLv1T37bG0xRSTRfT9XEMjWbUYCEXZajcxnB9XOPm11+rLzXQIirJfev3D4WnErhVn8Zlm+S+CKkDEWa/VKZtaoRAvO1STPZOzrvbisMGybLP9IkW549J+rTYfnJLLgqwMtZ/cANxd5zdl8Z0QwprbeIND/VqN8n7d5PX95qMr7S4MJnk7K70h91MIYQQfUhfYHfS/3drJDn1NtITKpqlUj7RIpDCqUIIIcS9TVWpx3QSzQ82WqMQQgghhBBCCCGEEEII8VES22Ew8nwKvx0QtAOcso+95l3955N/NEb2WKcqh1vzcSudcA636pPaZ6GaKoEfcv53Vhl9PklyX4SJcp2hWpP3JgospmKMVpuMPJ/k3L9d6SSKPhyj8FQnabFx2WbxOzVUTWHo74+QaHkkWut9/ZWTLVZfahA4IYFzk0onIYR+Z1pqv3UtOXXha1Xiu0zsVY/3C5ppEZX4tEnqUITohMnMH91QCU2F8c+nie8wsYud9yX3R8ivFVEIUUNYicU4n8vyWtzi6cvzjNQbDJ9t8PbECAup3pV6BhaGHJgrM7nWIOL6+ApcGkmxloyQ+6+PD1y51BrWyTwUZeXFOq/8wyNd51HCkP2LJUaqTZJ29+SNEFh7rUHx9WbXqrPdtBfda5Vxo+MmXr2G1+h8EDXr1pIEPFUl7riMNBrsX7uaZHq0e9WYzNEYXiugdqZN9XSb/ONxjOTmhIdd5RKF9noVwuFGk1yzzXLygycHZI5ENySmVk+1sUsegd1JpvWbAfaat+HzNFIq6SNRrJxO80oTa1hn7IUUYcTfUnKqEPer1qxL6IZExwertCqE+GhTz+mEqYBw5IYBTKKhVB+/BdXTbfxmQHP+ziT0rmQiPHCpzKdfm+fFI8OUkxYXx5OMFVskmy7F9M2TU0MfFr9Vo7XoEh03MbMaVk7HSGmolsLyD+pkj0UZ/3yaM0FIOW4xXGlxZejeHuB+fl+UoXmHoTmHRlpjcde9nUwrxFaNztqEwOKUHNv3suOHMxt+9x2FqB0QKGCbKqgqVtvjmbeW2T1b4/yOe/vcCoAKAxS3F0IIIUQXkpx6G3ntgDAMiU1uHK1lzR78AcSu+NqW1ll3Bx8V1NDuTA63rm5tuSNGZeB5X3On7shyAY5ZswPP+0j00sDzJvTBO6leLU4PPC9Ayhx8bLGaM/ixUd/CvACuP/iIry1v8M7/825h4HlnGtmB5wWIaIN3gDXtwUdcCsOtjRahKAM+eQVMffCEuUpr8Bvxrbb5yMjCwPPO1wcf3ajW3tpxtxXWFvZdMPhHgqlv7Xy3lc/7Sjkz8Lxxa2sjIESNwY//tjf4pUGp1v3B/e0wlh68Avmx7ODn83c+f91nokPyNwp4zYBdv/zOVponhBD3tCBUCUK1/4z3me24TUIIIYQQQgghhBD3o+yxGHpMRY91+mui493nc6s+Rkq7ltxnpDS+u2cHAG1DI/gXe0heWSRZa157zyMzyxuWsfz/eoCzSZOI7fHgvz6PbwfUz9vs+pUcqqnC1aTU6un2pmp5akRh+OMJYhMmjaxFKWlRj+pEbZ8zk2nM9ipT77VRjkap/OfDnfWtpDZtx75fe4PWgotT8hl5PsnUfzbK6VyBxUQnsDLbarJvaZ53hoaZ350EpfMsTgk7SZyj9Ro7K2Uen1ugZhqsxmKsRqPsKlfYUayymOySnNrlEZPibe4f2/OPXkaLKMSnLbIPRzEzOuV3m5RXPFrzLkF9hWz3xW1y9v/9JIbn8+SlBaoKvPb3dqPWNq9TdRQsz2Pvysbn846qsRKJAQqW75FrNsg/Fset+NTO3vwZ+qX/4enOcoOAnN3CWu08m1yNRKn/5iHKkQhN3SC88RG12n2r1CBg31qRfLNFyun9TM3WNGqmSc20iP7ZDPaah1PyMdMaQx9LEJs0Wf7+xuMqgsPOSomZdIqzhRyW54ECNcvk+kIDXR8TOhv3Z6hvnumdXz3MYzOLtHWNs8NZKocjhFaX6Nir7x0pNXns3Mq1l5OPJcg9ElKKWryd21ri83btW76dZP/cu1pLHrFJg8Rei/o5SS4TQtycsqISjHtIgaDbJIDG5TtTyUU1FC6PxHF1lWPnilhuJ24rV7XxVIVycrDYs8rxNpXjnbhLRQXFUBj9VJLRTyWpHG+R2BPh0JUiEF5bx73u3Y8leeTbVXaeaDE063DyyQSe2blOiS96DJ9wqY7rrB2UgRvEfSaAVNHFtRQCQ6697yuqSiu68TOzIzrH92Z55OQae2eq92wlOjUCO76YxXh/wIMAWksuc39dAal7IoTYxqQvsDvZJ7dGklNvJw9qZ21S+yNEx3Va83JFIoQQQtyrRp9LggIrP6j1n1kIIYQQQgghhBBCCCGEEADM/VWF2LjBxE9nes5npDpBfYupGFdySbKNdicpVV0P7nhrYoSM16Rp6eTqNscur3JuJMXZvZ0kUd0LmFxq0IxoNOccdnwxy/CzG6ttLH23RvXU5kF+9bhKck9ngNdUyyXRdq/lM2brNkm7E0QfqfUvi6Ho4NZ9mnMOsQmTbLtFS9fZUasy1qjhqCpLicS1xNT3hYrCQjLFQiJJrt1iol5lpNHA9H2qpsnZQq7vursKQyZrVXb+Su7afq5fsFn8Vg17ZYtxCipYWZ1dq2V2rVVQw5CXd44RKspNczZsXeebU7tJOA5Nw8C/MXM0DPnYyycx83r/ZIUwZFe1xM5aCT1cT9YstFsbqpN+b2qaltE/uH5nucKu8uaBrWuGSSViUTMt6oZJ3TRxtPWQmf1z54lPm52k1HETt+4z9+Uyzdn1QWAjIzpPz8ziaBpnC1kcXcPRtdua3NI2dH64Z3Lg+c2rCRRL6SgtzcDWNRqWwXIyjmdLgp746Fj4WoXdv5Zn9PkkF+9Q9T4hxDYQABUVDsl54l6nRRV2/1qBsbcWmRnuFIfxrt5HtE0NPQixHJ9WZPAQ6MiogWYpNC47zH+1Sv7xOLlHOgPzD1Xb6H7IzNDWBve4WwJd5a1PpNj/ZoNU0ePB71eZ320RqwcMzzooIURLLvURDTsrwfXiPuGB9tUoagCXd0XvdmvEbbJciOJqCjvn6iwfsKid7n+fahZ0jKRK84pDeIdTMeI7TUZfSKFo0Jx1CdoBZl4nOmaw++/mmf2LCs6q5IMIIYQQ/Uhy6m1WervZSU6dMCU5VQghhLhHqRFI7LFwKz6Ny/LQQQixvfihir8NR2/ajtskhBBCCCGEEEIIcV8KOgF7C1+vENthEjgh9Qs2gROimgojzycxM51QhOPjOS7nUoSqwnIqhuJtzOILVIWY4/HIxRXCq5PytTb2gooahIyttsjUryY3fjELgNcKaM07qLrC8g/qaJZK4ek4fiugMeNg5XWsIR237NNadImOdhIa1RDahooWhGTrDheORShccUmt+eRnHNamzE2bqnsBucdjZB+MoRpKp3KrbjDSqLGjXqWl6ZzOFlhIJfDVHv1XikIxGmMtcesBtkoYkm21GG42GG40iHke1SWX1ZfqtFc8vAGSbDcsT4XMg1GyD8fQLBV/ucRCKs6ZkRxto38oia+qVCKd5F/1htCIiWaV2KTJ7F+WCZzedVv3VIvsrpYA+NHoFABZp4kCxF2HqVoVgIjnDZScejGToRiNYmsavqrgoREoyobEYeXqrlKDgIl6jR21CslfzRMGIa15l4VvVKlftDsJLFdFRnV2fDFL2TB4bXIMV7uxlOvdcWU4yZXhTsK20vpgbdqufcu3k+yfe0tkVGfkueS1JP0wAEVTGP9cijN3uW1CiHuUAmiAJ2VT70VaVEGLqjhFH65eQsZsnwNXqgTA7vkqa2mL5WyUlqnx6OlVXj00NPDyc4/GiO8wKb3bZPXHDdZeadC44jD0dJxzj40QtT2mV2pcHEnSsu79iqNeROXE00l2vdtgdMZh18nOgD2BCnOPGEy87rL7e218HWaetmjn743rVyG6WlbRvxIFH0p5nQVJTt1WXnugwOPvrTLyXJLcsRjNeZfmjEPgdm66tZhGZEQnMmwQKegoWud7OgxDnLJP+Z0m1ZO3afAlDUY+kSQ6bqBFVVRdIfRDFr5a3TC4VvKAxcgnk0z9fIblH9apHt88KJoQQtzvpC+wO9knt0aSU28zZ80nDEOsrOxaIYQQ4l41+nxnxPXFb0vVVCGEEEIIIYQQQgghhBDiVtQvONQvrAfuWUM6459Po+jrwf4PzBdZSsVItF1ijsdKLMYTMwsQwmwmyWitQbrdWcbpsQwR12N6tU72gkPIxoKU1VNt6pdsmrMOVkEnMmKQezhGdMK4lgxbeKp7W9uGSsQNiFwNfHR0FVSF849GmTxls+utFtkFl6QFnqpguj7puku2bqMdi1E726Z21oYQJr+QubZcX1VIO20qroWt35kYAcP3eeLKPCl7cwXS+jm7f2XSLuLTJoVn4hhJjcrxFrVzNif+7w/jax888GasUeVwaQW35tOa6z9AaL7dBKBiWDR1AxSFemQ9UfhkfhiAG4uz3kyoKpSjkfUXgvWjSA0C8q0WmVabpGOTtdvoQcBiPEH9r1ZpzTsouoJXD4iMdCqlGCkNe9XDb3cyJCKux45yFUfTUIDFZBxXl0B/IT5s8WmDsc+lIYT2ioeigJHWCDUI3N5J8UKIjzAFSAVQlWDje01s0mDipzMAzH+tQuOig1v1md2fZiUb4YmTqwxVbEbXWiwWYrx6aIjHT67wxIkVlnQGqqxXOd4ivsMkezSGmdZZ+FqF9oLLlT8tc/kn96J7PqPlJk+cWebFg6M4xv1xjXfxaJziiIEaQCWnk0h1rsHTsz7xlQDdhukXbU7/dOwut1SImwhA/1oUAvA+0eZEvHC3WyRus0ra4ttPjvHsH18iOmqQyepkHticgBwGIW7Vp3HJxqn6JPdFiI4YjHwyxfCzIa0Fl+a8Q3PWxV6+tQJikz+TJjJiELiddbUWXFZfrG/6HqmdtrGXXSa/mGX42QTJXRYLX68QbL0LRgghhPhIkAzKOyEAPSkdGEIIIcS9yMxrxKZM3Gpwy50UQgghhBBCCCGEEEIIIYRYp5oKk1/IoBoKxTeaZB6Mol5NUv3UqVmAq8mmawAsJ2LsWymhAsupCOdGM5QSnYTC5XSM0XqDKyMxmhGdqO3TiOoc+vMTxKdMxj6TQtEUAjck9EO0SOfZvNfw0eOdAPLGjMPKj+okdplUz9qc/JcPQxiihDBSavHouVV2v9HCiSi889kUjYxN4YrL3uUKargxKRZNIX0wSvrg5sDJhOuScF3GGnVsTeNUvsBiIkGo3KZqXGHIC+cu3XTy8HNJLv6HtYEXZ2Q0hj6WIL7DpHHFYeGrVZySD3BbElMBputlAK78eXnTNNVUSO6PoBoKigaapVIxI8Rcl7Rr85nZ81xOpDmTyxP0qkR7CwrNBo8sLHDjUpu6zlijDp9J9Xx/c74TgRrxfQ6sFq+9rgcBF/OZ29pWIUR/hacTEMKlPyziVbpUjv5bH36bhBD3h2A4QL2sETwNmy4MxF2hGMq1xFQAt9y5Pm1ccRjPN6nGOwOXrKYsjl4o4ukqq5kI5yZTHL1QQvt8mrm/rPRdT+OSQ+Vki/ShKPEpk9HPpFj4ehWufo14usYr+4Z55tQij51b5uX9I7ftGvlOqwybm16bebZzfzX5YpvUfEBi3qM+LiHj4t6jHjdQXAX/IRv2+rBwt1sk7oRAV6+dq/WESnyniaIqEILfDmjNu3iNjdf11ROdaqmZB6OkH4gSnTCITZqEj4eU322x+uPGltoQnzaIjBjYKx5X/rTcd36nFHDhP6wx+YUM0QmD3b9eoDHjUHqrSXvZu/b9IYQQQghJTr0jfCdAj98fN6VCCCHER0nmwSiFJ+MQwvxXyne7OUIIcUeEKATcpuC3e0i4DbdJCCGEEEIIIYQQYrtQLeVacH/moSiNSw7L36thFXS0qIpT9vDqAck9Fk7ZpzW/Qj2mggJ+I2CIKwxdt7w2XPs9czRK6lAE64sZAGZG4lwZjVOLG+heQL5sU0pZAHzs7SVcTeXHPzeJ90vrz+yVxnpoxFLU4FsHY3z61AxmO6TyToZYo4FRLRGicCmTohiN0jANfFVFJ0APAnS/87/hXv0/8Im5HgnHJum4WL7PQ8tLWL7HpWyGsEvIQLfXulHeD3AMwdZULL97xKMy4PIu//PH2bNWYqpcoWXovD5cYPlADD5zXVXRLtU/FG+wPrmd/82LQOc5TPKZBACz/+QRbN1YX1YYcqS0xHCzjqNqBEon0TNT35hIMF2vYBsaFzO5jStRN1ZCHHhf0nlftt3alH8SAjFv80CmzXkHPapiZtePm9q+DPOWxd5i6dprJ4YLXEknoVuRxi67LrRu+ByNASNZ/S4LczfvgFALe/7ez3btW76dpJ/63rE+MIFEhAshtiY44KKdMlAu6IR7ZUDze0Fiej2xcul7tWuDpxTfaDJ+LM70Yh1fgWLKIlAVHj+5wpmpNLbe+S6ITZjEJg2as27fdS3/oA4KpA9GSey0GP1UksVv1a5Nb0YMXt03zFOnl3j4wiqv7x26fQPP3CWLD5okF9tMvegQaA579Dazk1FmdiXudtOEgKKC+ppJqIcED/f/Gxbbg1cPqLzXHnj+8jstyu+0QIXIkM7YZ1NkjkYpv90a+H5AjamMfTZN6MPcX5cHb2wAs39eJjppMPLJJPFpk8ROizDs3G+HAQROQOmNFuV3W4MvVwgh7gHSF9id9P/dGklOvQP8VoiR0u52M4QQQghxlXfRwHsxwdAzGr4dsPCNKm5ZHlQKIYQQQgghhBBCCCGEELeDVwu4+LtraBEVr+YTXu2Cb81vDC6tnFgPPvSbN/TTK2xK8ksdijD0sfWg6RePDlG+mohKGDJUslnLWNhm5/n8tx8fIwxu/qxeDQKGai12rnYSIuuGzvOXLgOwmEhwppCnbWwMo2jfsDilSw6DEoYUmk0KzSbL8dhN179lisJ3du8i4rpYdQX/amD8RLPCrkaJ2hm759v1pEr2wRi7LnS28Wwhx6VMhkC//QE2WlRh6JkEjcs2y9+vY/zjHRxZmUMNQzxFJenaWIHPe/lh5pOdKqVxxyHXbtLWdJqGga3pxFyHumXd9vady+fYUyoD8Mr4GHXTxNE0PnF5ZkOC6sqLdeI7zA2JqVdSSY6PDAOwlIzz0MISvqIyl0rc9gqvQoj+Sr/1ENrSPCEw/1uP0jY2V4sLnC4Z99d5eWVn3/U8N3q253RN6f+8uR32Ds1repvbfqPL7XzP6RdqvacDxPTe+yNr9g+kL7ubK4hf70Bsqe8ydqR6VzZ8b26s5/Qw6P/91VR7J+ZHY72/OwFKzd7bWrZ7TwdYS8d7Ts8azb7LmDJXe083ij2nAyTV3okfeb3edxk5rfc8Wp+yYd+sHem7jpLX+/opM8D+WnV6J9p5718jZkGd9tF+bGEPQZjc2mAO4vbzWuvHUPpQhOrJznHrNwLeeiDPU2+tAJC0Xd48mmPfpSoHZtbPJ/aaR3tlwETjAJa/W8erB+Qfi5PcGyH0oJysMH26ierD2qjJ6YfjHHqjzqNLS5w7Eqe8kuq7aC3aO7EuEeufiFVqJ3tOL85l+i6jqGw+pq8c8nhgtkiq5RBxPfacb1COWKzmu5/P1C7LuJ7SZ3qz2f96PhLt/d3kBf2vs99cneg53R9gGY7XO9a71TZ6TgeIWb23ZSjS/1y7Yvc+h600e3+vAEynSj2n74yu9V1Gv/PxqdJwz+lan2MDYLXV2VbVCTjw1RaEcP7ZCO1q5/VKuf89db95IvHenwmA0mcwn0G25Wy99/5YcXr/TQMUnd7b0vL6H4P5SO/tTZr9r39sr/d165Lf++/Jt/vnTZz510/0nK44/f9m9/0XLzH3lSpTP59h7CdSmyqgXvyfnt78piDgE3OXwfd5Y3iMpd/e1XMd07tWNr1mA2VAbwbkLrl4ZR3L7gxgFmv6FD6WQP3pHG8+lAFVZfqX3u27LUIIIcR2Ismpd4CiAKF0WgghhBB3m3fWxH05Dk0NlJDKyRbL3+vf4SeEEPczP1TxBy0bcB/ZjtskhBBCCCGEEEIIcS/SogrDH0/iVHyqJ1u41cEGewzskMD2e86jx1UyD0ZpzrkoGsQmTcysRmzcxHcC2osuVl6necVl7Y0GI5/cGMjpXq2OpIQhD5wrsWO5yYXxBKd3ZTozdKlqpAYhhWqD8XKdkWoTLQx5P7fF0XUuZzIsJhO42q0PQB0qCivxOCvx/gHDt7r88VaVsVYVM1jfx83Z7gGo1pBO9qEoid0WgR1yIZthJpPG0e/cINvh1WY5ZZ/IiM7Ty1cAWIrGUUKYjydZSCapm+uB6g3TpG5uTMyqaNGuVUc/cPsUhR/tmEQBqtclv35/egqAPf/kZSIjOhM/nUE1Og24nE6xlEhQikauzV+NWPxg19Ttb+A9YLv2Ld9Osn/uPjUCjy4tEAA/Gp/qmpgqhBD9uI+7RC5HUNYUSU69B7TmXC79QZHkXguvtvF+InLd/cXYSovVXISzu9JcGYuj+SFaEFL4v56gT470JsXXmnj1gJHnkqQORnjke2W0ABpJjQNv12nFVGZ3R5k638KxVMqZ/smp9zLb1HljdyeJLmq1+NRLS+y+Ur9pcqoQd5peD9j9wzaqB3MPm7RzUhBKDM5Z9WgtuETHDFQLgj65t8dWFon4PhdTGYqxOHDrldO9mMryYYvF8nX9VUHAo2+WyJccnv3xKq88nrvl5QshxIdJ+gK7k31yayQ59Q5QNOXaSLBCCCGE+HD5SzreO1GCOQMcFdQQbV8b/WN1lp+ShwpCCCGEEEIIIYQQQgghRC+FpxIkdneS93IPx6ieabP07dotL0/RYeSTSaKTJnq0E9iRfWjjPIEXopkq8anOehN7VMIwZOZPimSOxkjtj+DoKg+fWmMpHyVXtclVO4mZpfTGqjzpms1QpY3uB8TaHvlqG8MP8RUFLQxxFVjKJLiUzNyRCp23W77R5PH5BQBams6VWBpP0TADj/bCxopq0TGD3GMxYhMmTsVn5Ud1qqfbnPuf993xdsZ2dBLEUociZB/qVH4JgFOZIRytE5rSp4DgHVeLvF9197oXr0toju+yUDQoH28RnzY5uW/ow22gEKKn5H6LoWcTqIS8OTRK05TEVCHELXo/tlNOI/cMt+xTfG1zhdwHT3YqBDeiOvGWx9HTJSzb5+LUelJQ4RZjdaun2niNgImfSqNdXcbphxKoAew+0WDHhRYroyY7zrcI86ucnsjiGPd/At3R02Wgs0+FuCuCgP3fbKEEUNytU97VvzKoEDcqvdkkNp5h5PkUC1+t3nS+HdUyQ60mZdPibK5wy+uLlHxG33MwmiGBDrEsXNgZB1UFVeX1R/McPFVhcr7FzksN+teqFUIIIbYXubu4A7SYiteQ7FQhhBDiwxKUVdwXEwQLOngqEIIVoh1uoj/VRJUrHiGEEEIIIYQQQgghhBBiEz2hkn8ijmYplN5u0Zp30SIKrUWXuS+XGf9cmvjO9ah9LaqQ2G2R2G0RmzApvtGgtejhtwLsle6VJ+JTJsl9kU2vX/7DIr4Tgh8SeCGFpxJkjkRZ/E4VK6uTPRYjfWi9ko/pBaxmLKYX6hh+J7vwzFSK5dz6PPGmy8eOL21Yz/mxJHsWamhh5z1zuRSlWIS2fn88PGhcl3wV9T12NCtciOc4lR5hyjl/bZqZ1Zj82QwAXsNn7ZUG9fMfXjhkc8Zh9eUGZk6jveTx9i8f+9DWfbu0Zh1yx2JkHohSvyChpELcK/SEyuTPZjCSGoEXcjJXYCWeuNvNEkLcz9qd/8KIDHB+r3v7cI6HThZRwpC5kRgTS032X6qSL9u8fiRPqCr9F9JD84rDzB+XGP/lHJoXkllzGbvcpjRkEqqQX3JYHjMZW2owVm5wejzLlUKCQL0/qyntXSgxVLKpxnWOH8je7eaIjyjVAzWA0qTGwrF7f8AocW9qXnGxix6JnRZ7/l6ei79fImhuzN1I2G0OFlfxVJXXRidueV2Ros+e73YuHgIdlCbsrjTYebnBcsGimjJIV12GVm1CYH48Sv6DbJwQQghxH7o/nrbcR6whHVVXaFyWBxVCCCHEnRZd8ml/M0NYujoyYSxA299Cf6iFmpSBIoQQH01BqBCEH+wh3L1oO26TEEIIIYQQQggh7j3n/sVT137W/YCJSo0dP5rFyGhUT7WpHG/fxdbdugv/89OdH8KQiO9h+j7lmMmTs/OYjosahuT2xln8PxaJjBhUT7eJT1tExw0u59I4/3SY0VqdXKtNCLwfip17JH5tHauxKIbvowchpu8TAqvJKO9MFLCXSkytVcENUQ0FrxWQ3Gfh1gK8mo9bD1h9qU7xtQZ+O6SGTe2cjZ5QMdIaQ093kpBGZhssf7+GaqqMPJdk+CtL5JsLaJHOfJERHaz1QPHaRZuhM23Yv54cu3Otys61Kqcn0pwbz2zYT0p9cwiF6t7wQpduqrBbbPqg3VldHmfs+ccvbfh99ViUwlPriVipb80w9dbpDfN49YDyey2cJ/MM02TsMyne+rvDLKSTDCQYsMFdZrvwz54e7L1dhFqXpJBB9/Egy+/yvtDYvM6z/+pJdq+UYbFTneu1z+2la5dk17ZtXp7ib55RbW9sTGD5m+fRNx8QYZfPRumyztDfuHyFzcvvZbv2Ld9Osn/ujsmfzaAnVCqn2ix/v8aV//HOV4MWQmxvit05n0ty6r1vuRDlGx9fTyiaWOpUV82XbZ58e4W3DuU+8DrsVY8TjyU58nKV3Sc7y49eXr/vG15wqEQNlBCOXClycK7EiR05rhQGvM6+h+wo1gmBUtri2PE18mUbJYRyyuS1I7lOBUAh7hQvIDPvMXrOAaAxfP9XIhZ318wflcg8FKXwVJyhp+Isfbt2bZoaBDy+OAfAK6MTH2hQgeHTnY6hs5+J4iSvLuekzt7zNUZWbEZXOkmprqFy4mCKetKU5FQhxH1B+gK7k31yayQ59TYbeT5JGIaU32lde61kxwZ+f9Mz+890/fzu4PNv5Y9ENW58wnZzFTfaf6brfGn52MDz6srgD0u+XTq0pXaciY4OPK+xhXbMtzMDz5syt/bw+lJl8M6U0Xit/0xX6erWHkpVnME/c00dPDnM8we/+C+1t3bc7UgOnjCuKoN3PAZbmBdgOF4feF7bH/wUPV9ObakdW+H4g3cC1NqDj2SlbuHYAGjYg5/vUtHB/7Ycb/D9fKCwPPC8sLVz+oI3+GeYtLY2AIIXDP63FW7hu+LpqUsDz7vU2lqHbMXePIL6jTJXXKZedwlCjda8y/L3a7gVSUgVQgghhBBCCCGEEEIIcR0FErst9IRKYqeFaiiU32tRPXXzZwlqEPLw3CLDjU5gciuhoSgK+Sfj1C86+M071xetxVSMlIaisiEJzm8FOGW/ayJjTwrEJgz2FteIuS4Zu03U61Q4PTGUJ2k7XM6kWYtFeGR+iV2/lif0IftQ5xl3/ZLNuF7DDEJW4lHeGx1iKRFnZ7FModFiNp0CQo4sr1Jodp6RX8hmCBSFvcUS45UG85kEqZaNr4CuQeAFKCqkD0dRLQVFWd9QrxUQ2AGhD6EfXvvfXvMwMhpaRGXk+RQX/v0qVl4nOm6gRRT8dohX9ym/2yLzYBTN7DwbSe7a/OxqLWmxmI9yOX/nnq/dDlZBJ30oQmTMwMrpeM2A2rk2tdM29trmKrWBG9K4ZJN5uPOsvxyxWE0MHqsgIG53gqRdVaFtaNC9GLAQ4kOmWQpuxWf5u4PHwQghhNieXn2wwOPvrAKQrrk8/cYyKzsMmlcGj3ftppY1OH0swaE36zSSGnZEJbeyvsx06+o1dsykGjV48PIaqabD8R05UO6f4PW3pod44vwS0/MNQsAxVHxVoVC2OXixyqk9mbvdRLGNPfjXDdQAQqAyrlHeadztJoltoPx2i+xDUZL7LBRNodGooYYhe0tF9DDkZK5Aw9x6hd7MRZf4io/mQ2LRJ9BZT0wFFseiLI5F0R2fVM2jmjTwTEnwF0II8dElyam3UeZoFCunUzvXxqtLcowQQghxJ7mRTudu84rD/F9X73JrhBDi3uGj4rP9Ojy34zYJIYQQQgghhBDizovtMBn7TCcJ0WsFeHWfkeeStBZc3MrNB3BNt9cHigzckNp5m9wjMXb9nRz2msfqiw3cmk/u4RhO2ad2zr71pFUV9HgnebbwdBxF7R7c3GlHm+Xv1TvRnH1ExwwmfzYDgF2r0jAMlmJxStEoDy0tcnhlDYDFZJyaZfH9nVMc+Z130NMaiZ0WVk7HyusYQWdlQ1eTUV1N42whz9nC1fU4LoECagivjo+xFo9xbH4RgONjecYqDXJNm1OjOXL/8TJaVCUyrBObNK8lpjoVD1VXCENQNAUUUK6OnxqGCoTgVnwCp5OAGfqw8qONg8ImdpuMfTbdd7+8frCAp6uE3r0bRJ46GGHkuSRu1ac577D6UoPmrHPz5GTl6rH+QpKSrvHO2DDlqHVfBcrfC9p6J4TGCEL0IOSDpTjcf7Zr3/LtJPvn7vDtECOloSdUiccSQtwW71dMVdoKYUyqp95PihmL7z0xwmPvrhFreZheyMRPZbjw71fx2x/sswy0zrVzvObz1rMZEmWPB16tonvry800HSoxk3en8hyZWUMJ4b2p+ydBtZSI8M1nRom2fXxdwTE7178v/Gie0eWWJKeKO0b1AtQA2gmFC89FCCSJT9xGV75UZvKnMyR2mxxbWQI63WZXEilmU5ktL2/kXZuhs961rrdQg7mHuxeq8UyNYl6qAAsh7k/SF9id7JNbI8mpt0lsyqDwdBzfCVj8pozUJ4QQQtxpjSEdJ6IQHdta1XEhhBBCCCGEEEIIIYQQHw1mVkO97on42ssNWgsuO/9WjsKTcRa+vj7woaJCeDXfJVAVvr97B0ONJgnbZWJxmeFnEzTnHeoXHFL7LcZ+IoVb9bFyOoqmUHgqzoV/v0bgbCEgWoHcozEyR6NoVifgwV7zWPhGldDfuBw9rpJ9KEb6YJTK8Tb2Sv+Sjok965UhzmVzVKwIvqJgBD7Hh4Y5urIMQM3qzOfoGtXTnaTc4itNIiM6+cfjGMn1ILvxao3FZGLDelqmwXd3TaOEYF9N7ltMJhhtNIi4HhPlOidHc1wcyqAdP72++YZCar9FZNQgaHeqpSqGgmoqqO//byqohoqZ7rShcdmm9Far6/aq1s2DRr7/0CieptC27o8QieyxKHbRY+aPSz2r5ZpZjaGPJ4iOGiiqQuOKw+sPjOFrEkBzK5ZTMfatlAEYK9eZGSCIVQ1Cdq8WybQ6fzuupmLrGiuxOG1Dp63r+Kp8HkJ8EIvfqjL5sxmmfjHLzJ+U7nZzhBDbQBjvXGurZRU/d/MBa8S9qR3ReflYgcNny4yutgEw8zqtuQ82tIivryeYHny9ysq4xclHkzzwShVb14i6nWNlerXOXz+SJ1DgwctroMB7O3IfaN0fKlWlFdt4fVpKmhTKNrGGSzMu1SzF7RfoKp4Buh1KYqq47bxKwKXfK6InVJr/6CAAK7E4jn5rfUDpWZ9AgxM/EwW5nxdCCCEGcn88ebnHxXd3RtsNfZj9M+kEFUIIIT4sxUmd0XMu0UmD1uxHbfxqIYToLggVgvD+GJl1K7bjNgkhhBBCCCGEEOLOUFTY+Xfy6NcF3Jbfa1E728Ya6gTaBler3yT3WmQfiWFmNQInJDW7wGIywXIixkIqCUD452eI7zIZ/XQKvxWy9J0aEz+TwczoLHy9ipHRGHo6wegLKVrzDu1lD3vV65uomj0WI/dIjPI7LZqzDm4t6FnNNTJq4LcDUgcsSs0Ar9G7etzKD+uU32mSfzLOA6zcfH+FIWGXSj/tJY+5L1fI/pdTFJqdhNC5q/vkRrauo1zdXMPzeWC5s749qxUADi0WObRYhP/LEG7dp3HJoX7BpnK8TeV4+6Zt0yIK+SfimOkoAHpSI/twlNKbmxNUqyfbNC7Z7P61wobXl39Qo/70jpuu414zVG9gZnTWXmuQORIlPm0SmzCZ++sKzRnn2nxqRGH8p9IETsjKj+rYaz7tRRf/MxI4easa1vqAqEP11kDJqXvWiuxdK296fVdxPfndVVXaunYtWbWt67QNnVYIbVOjbWq4mnrXK25t177l20n2z93RXvRY+VGdoY8l2PnLOZxqiYvZbM/3hO3e1Ytabv+QuaR28+8ngILev3jBqtf9e/N9RS/edxnL7UTP6buTa32X0Y86QEn2s4/bPaf/vYune04HSGvNntMfy17uOf1is9BzOsArC1M9p0eM/gN8xE2n5/RLq/2T0IqtWM/pO9PFvst4h4me0/cnlvsuI6b23hZD7b8/Dkd6z2PQO7kzpzf6rmPMLPecHld7H38A7WjvhLqkdt31Yw7eGH6A6FKbQ4+dv/by77Cr73rEh2v3r7x102k1wM5qhH6IW/1glbWHf/YUAOc0SO6LkDkaJb/sYq96FM/bZJ/eeL5+8tICxx9IczKW4tDJKknP5s09BWzz5t8/DcW66bT36Vbvvzc3GOBaROl9Tvfrm/9W3hvP81x5nqMny/z44DhKoncMluf1/p71a/0TXJt+723R9P6faSra+7s67LMvANw+26IP0I5au/dne5ne1y0ACaP3+drp006AUrv3d0892v8Y/KDXu1Hj5sdOY1wldTmgsWTSTtz8Wiwc4DhX1N6frd3qfwzGEr2/W7yg/711QO+2niyP9F2Gqfb+HtWU/sfgfD3dc/ogn+tSMdVzuqr2bofv9N9fSp+/+zDWf8CIM//mid7rcK5fR/c2K17vtqqrHkpEJfWr8zcdHG665xKEEOL+IH2B3ck+uTWSnPoBpQ5YDD+XJPRCLv/HEt4HvMkVQgghxOCW9puMnHVIH4xIcqoQQgghhBBCCCGEEEJ8BJz/vYcZXWkyutKiHdGYG45RcRIYns9IrUElajH6X79Fc9YhtT9y7X2apTDyfJLk3gihH7LygzqqqTDy6SSKomAXO8mk+aDOSL2TOFG/ZLP07RoB0LjosPTtKmOfTdNedPn607tAgfAJBcKQqbU6e2YXyD0aRzU2Bi9c+VKZ9sJ6H/aZf/coAB9/Z4HZuMk7/2Ca/f/J6wBYQzrRMYPq6Tan/vWj197zwMU1tOUaXi0gsTtCcn+ElR/UqZ3tHUzpVgMWv1Fj5Qd19KSGaigETsjUL3SCYy/9fpG99RVUS0WzFM7+T0/gaRuDXvf8Vy/i7bFI7LbI/O4Jks2A8//rk+SbTdJtm5F6g7VYlJO7OsvMVZoYwc2fmxsJjcyRKJkjURa+VuHN33oAwwuw3IBUwyFXtRkqt4k6m4MSrZyO8Uj8WnLqpT98EMKQaMvHcAMKRZtKySZdWd/fl/7xdPfAVWNzG8PE5qDDoLlxf/QLpuyla1xLfmMQcqrZxFVVSp8fZ+9K5drrEz+Z5r3hIWbTKXTf5+GFJULH5kc7d2A/s8XQjy67o1vcdqh1m7HLfIPukm7zdXutW5zxDa91+xy6bkO39naJQ026No9eXrz2+6V8qns7bljeUiLeNTm1OevgtQK8mk/ghOhxjWhCJRlX0eMqWkxFWdzcOL8d0F7xCN2QwAkJ3IDg2s89/ndDQndjg73Q5UqXTRDiflR5r017yWPq57McKK6RbzV5bbx34p64TUJgWSP7SAw9phJ6Ib4TEtgBtXM2gb2FqvFC3ENyu8vMvTlC4Cuo3a55xH3BKd3eyrehD9VTbaqn2ljDOsPPJig8GcfWVTRn/f4hWXN54pU1jj+Q4c2Hsxw+UeHZtxZ5Z1+OlWz0trbpw9CMmJTiFtmGTazt4CQkIF/cfm5MQQH65DgKcdetvtJg5JNJdvyNDBd+d5Wgdx68EEIIIZDk1A8kczRK4Zk4gRty+Q9K+E25YhZCCCE+VFeDBxRVOkWFEEIIIYQQQgghhBDio0DzA46d6lSaapsq03N15tJNRmoNjKATVB78ep75r1ZZ/m6N4U8mMdIq0QkD1eh0KiuaQuahKOnDUZozDnpcw8hoqPrGvubETovVWIPgapJk/YKD3w6IjBpEXA9X13g/e20+Gyf+zSoTX8hg5W54DB90D3aPuD6245Op2RgZjfQDEbJHO5VOzKyG4foUqm1qMRNHV1EU5VrV0aFnEuQei19LTtUTaqeS6k3i6v12iN9eT7y88mclxn8yzc6/tbHy145LF7mSTjOTShMqEHU98k/EyRyNEgYhO/5GhsAO2XHxMhFvPRDcU9ez/VbSMf764WkML8A1O8GnuVqbg7Nl0s2NiZhjP5Fm7KXZ7o2+qmlpXB5NYv1355n+pSzldzdWTT1wtsrUXCeh2NMUmnGNUtbAMVXmJmLUUwZsLrR6z/I1FS0MGKp3Gl2NGKTanWTbiWqNPcUSEc/DVxRe3zGGbUjYx/t0zyPXbhF33avVSg0apoEShozV66Rtm5ppcmY0S6CqZJpt9qyViDsuCWc9ofmNHcOsJmIovYsXAVC3TFxV3ZSQHZtcr8Jav2jTXnZpzNi0FlxCD1BBj6roiU6yqpHWKDyZ6EwPQlRDxYipqIaOaiqoRuefot38mVgYrieshm5Iu2nDX2x5Nwpxz8o/sV4NrBSJ9JhT3DZVBV6MwKxB9sEArx6g6KCanUEtMkej166PTr4+jWvrFMbLjE2v3e1i0EL0ld9TYualCSpzCbJT/Sshi+1Bj6uM/UQKLapSertF5b2b3yjYyx5X/rRM6mCEwqdS1BI6yXrnnsp0Q8ppnYffLHJhd4JXHs9z8L0aj59c5cJ4ktNTacL7LJbpnak8nzw5z/6FCu8VMne7OWKb0esBuTM+oQLNWP8Km0LcTbXTNnpcpfBEAqtgSNEUIYQQYgDylOIWZR+NkX8sRmCHXPqDNRkVQwghhPiQqV7A3h+1UBSF6jn5IhZCiPcFqARsv8787bhNQgghhBBCCCGE2CIFnnprGYAz0ykuTSb57I/mmKzUAVhKxBipN1FNldikgZHSSB1YT16pnOwEHqcPRck/FgfABmb+uARAYo9J+lAUI62hRVW8ur8p2bP0VpP8E3E+dWJuc/t+vQCAU/KY+ZNSJwGth/d2Zjl6scjHTizBL29MEk0fivLJd+exvE7C2/vNiI4YxMZN3LrP8g9qxKZMRp5PokdVysdbrPygftN9Z6Q6FUADJ6C95HHp94vExg0UTcG3QwInoPUbe9hVLjNdWa/YycOxawvRTCAJXE1MrZsGM+kUK/EYhCHvZ6KEisLexTK7VgYP9K/EDBYKMcoJE9vUcHQVT1cJry5zXzMgcEKsgk58ysTMa7hzDebGY4wutzHdAE9TWMtbuIZKoEKk7TO82Mb2PFxdpRY38PR7u5/p8miCZNVlvNQAYC0R5cxolp1LNVBgMRGnbpqsxmO0LQn5eN+RpSUm6rWuhVjfFwJDrSbT1Qqv7Bjj8NIqaXs9A3UuneDkaA5nCwm/garyzf270H2fiOeTa7Z4YGl1wzxWXic6bqBZKqEfEnhh509FUa5VWi6/2+Ts/74CfcZEVzQ6iaqmgmIoqIa6nrx6w/++2uckdOO2bNO+5dtJ9s/dFZswccoe3354P6jyWdwxLQXeM6GowpIOVgifanLhlxobZjMyGoUn4yT3W6imwhvfPUgYQuBrxJItxqbXGJ1eI1Ookcg0sSJbOycJcaclhpuYCYfi+awkp36E6HGVyLCB1/AZfjZB47KNV+t9AVY91ab898c5cKZGNamTqnXOZ/PjUUpZk73n62TKDsd3ZlktRzh4uUyu0uatAwWakfvnej3Z6iRfRRw5X4vbb+o7DooPC0/ocI/fkwsBnUraAGZGk+RUIcS2JX2B3ck+uTX3z53PPSTzYJT8YzH8ZsCl3y/2fagohBBCiNtr6JzNxHEHQmhctmlcGGDoaiGEEEIIIYQQQgghhBD3NVVXSDY7D2ebEZ3H31m5Ni0ERurNa7/nHolveG972WX5e53EzeJrzU5S5yeTREYNco/G8O2Q4WcT2KsejcsOXjOg8EScnX8rh1vz8RoBS9+tUT3VJgyg+rPjNCwdww84tFC+tp7imw3WXm4yiIV8nKVslHjLY88/O4WiKDTnHMY+26nkM380x5XhJDHbZXKlzliphd8OCNwQM6Mz/GwCM7P+yD+5zyI6ajD35TJ+q5POqkUVco/FSe2zUM31oAq35tOad2kturQWXNxyJ+ruQjbH5XSGdLszKGTU8zi6snzTbUg4LodX1mBljR+bo5QS68nAhdr6wJJrSYvzo2nG/tlpfKdT2TFwAkIPzv6HRwbaXwCrrzQY/VSSxC6rs44zVV55JM/3nh0hUXfZOVNn18VGz2W8/ECBYuberbgXqApvTw1zaswj6nhUoyaBqrJqJO920+4po7UaE7UacdfB8n20MKStaZzPZKmZFmbgE3U9TN9DAZbicSqWxXi9zpGVZZ6amedcPsPrO0YxvYBa3LiWCH0rPE2jrmnULZOZbJq9v/nSpnmMjNZJCDeUzkkrhKGPJQDIHI0RGTVwqwGqAYquENhh5++z4uPWfbxaJ0Hb90P89vsp6/6m9VxrUygBtGL7iE0ZKKpC7ZwNj0qQ4B1hA+9ZcPxq5edRD/Y58KgN5ubZ3bLPwteq137/7y6+ShjC8lyWmdOjLM7kOf/e5LXppuWipT2slENyR53MgTK61ScjX4g7SFEgt7NMaSZ1t5siPkSq2bnec2sBelwjcMI+7+iYnYyhBiGZsstSVGNk2ebwySo/eHaIVlTj8Mkqn1hb4vxkihePDHPsbJGPvb3Ie7uzLAzF+6/gHvDopc79da5hc+hsmZN7UjIYhLgt1HaA3obapEptWodq//cIcbeV322RfyxG4akEtXNtKWImhBBC9CHJqVulQ+HJOIETcvH/LPbq5xdCCCHEHZKZ91BCqBU0Fv+N9FgJIcT1/FDBD289iOpetR23SQghhBBCCCGEEFsTuCG1mE6y6XHsdJFy0uSd/VkOnKtgBQE1y8DRNNy/XIYQnJJP6nAErx5QO7seReY1Aqon23g1n/gui+zDMVRdwS5616qoqhGFwhOdIGJVV4iOGgx/PEFkSEcxFIZWqoTAW1MFPFVBDzpBzfbqzR8gaxGF2LRJttqmlLRAUQhUlVrcpHllPYls/iudfu8zP70XgHpE55GzK7QWXWb/vAx0KjHmn4pjZq5bvqmi5VVUU8Vv+agRhcmfzaBZKqV3WrQWXEIf9KhCZMwgOmqQ3GehqAr2mseVP+tsu6+qFGOxa8tN/vZJkvsjRMc7VVu7OZfLUIltnPb9wxOgbQz2zi5/sJGf6+dsLi26oICV0xn/fJpMpTOA5chyi2yp87OrK5w8nCLW9Mmv2WRLnf27ljKpJrpvw73GNnTsLVTw/CiYLpXJN1rk2m2MICAEfEWhpetULIv3CsObAuhv7FacT6VYTVl87NIc+9bK7KjUeH1y9AMlpg7KLftUyhvPEWEYMvxsEt/uJGurpkLohfjtAD2ukn8ijqqvty1wAtx6gFfvJM0bSY3iG01a8x88EXW79i3fTrJ/7h5F6+z76LgBQSDJMrdLCFzQ4U0TKipowGEHHnQgMljC1vUUBUYmS4xMdq4pnLZOtRSnXo5Sq8SYWRvGLplc+e44Cy8Pc+CXz2EmO9cGdtWg9m6K2OEGWkIC8sSHIz7UYulkAd9R0UxJlt4O9IRK4IYEdvdzWGJPZ5Abp+QRHTWIjhs0Lg4wIL6iMDOdYGYaJq80GFm2qcd1HEtjeLlzr6kAe2erDJVavLUvx66FOg+fLTJSanN5NEHDUjonynvUXDaG5QakWg5TCw2yFZsfPzZyt5sltoHg/dvarV9aCHH3BLD4nRpjn0mx81fyzPxRCa8u1wpCiO1F+gK7k31ya+RJxhaNfToFKix9pyaJqUIIIcRdcv6pKIe/2SC56pP4BwUCJyT0wk5A0Zk2lfdkqCohhBBCCCGEEEIIIYTYjpb/1SL24SjxKYOkHXBovoWR1ABI2i7g8to/3kkpa214n+dqm5YVNDuPyy3Xo1BtUztoUP/CTmItl2Mn1+BqlVYtqhICkUmTK0MJzkxkeOR/P03+8ThTf3qZi6/dvFJq6Z8/gOEFmF7AvsUyph8wenKZ2tk2yz+o96zUs/83Xrv2c+1jCTJHo4y+kKS97KFo4LcDwjDEbwY0F1ziO0zaiy5eo/MgO3M0ipnRWfpOjTf/4VGCGxJ5FFtBCwL2rhXZTYW9/+kQ5j9/laFnEkRHDZqzDvNfreB6nWqzADv/dg4jqTGTTjFV6STRrkUjnC3kCQjgxji9G5JTz/7u5iqpijJYhOqlP3zw2s+qH/Lp7y929tP5GgCupVDZoaFfDjC8kAffqRCoUMvpXJhIcGk8iW2tHwdKt8hYY3OgYZi4Yb7m5jALxR0sYKXbpgbtzcemEmxeXrh5tsENsIsDvctMXTZL6RInEVm7emwFAfHAwQx8rNDDCHzM0IcwpKWa+IZC1HOJ+i6BorBmxpgrXE2Evu74tNY2HqtqEDDiVzlYXwPAQ+FyLMO5eH7D+/RW/+3sLCDCj1K72NtcZYdd4ZlLcyzF4rwzMrLh7yQwN++TsMsxQpccuTP/5on+7Rjk2A9DDv2Xb2AkVPSkhpXXSe6ziE+tn+P0hMrlPyj1X5YQ97HGRYfmnENswuTpuVle3DF1t5t0/1tWUd60UGZ12OnCUQd2eBC7fZkjZsSjMFahMFbpvNDuJNI7VYPTf7iHy1/fwb6fv0jgKZz/s13YZYvGm0lihxvEHqij5z7YoBZC9JPfXeLiDyc5/hf7OPI3ztzt5ojbYPKLGYyERv2SzeqP67jVjdduxdeaaFGV9KEoAHp064MdVFMGAImGx86LdTx94zLSDZePvbvM8ek05USGXfM1xlebtC2VpeEIiyNRakn9nktUfWvX8LWfnz9xhXhLzsHiNtFVfAsSCwF4ktwn7h+NCw7L360x/FySnX87R+Vkm7WX6gQDjGkghBBCfNRIcuoWxSYNvHpA45JcWQghhBB3S2CqvPeTSXKXHIb+qoaR0lA0sAo6w8NJMkeiXPnzEoHkqAohPoKCUCHYhqM3bcdtEkIIIYQQQgghxNYFdkjpzSaZIzk0S0W7Lgd1acjiwu4k9ZixpWXahs5cPgFA1LZ55OQaiauJqYECq8kIS7kYS5konqby+Jllco/FKB9vUXzj5omp0XGDfeeXr/1+JZfg1HiWo//iOEMfTzD1i1kWv1Wlvbge9KsnVOJTJlpURdEVVFMhaAes/KiOU/ZIH4oSnzI7VVe9EEVR0OMaqb2dzMXohImiKoSEpA93Aq5Hnk/yueOXWEzFeGNqZEMQtK+qnB4qMF6tE/F9EjtNoqOd/WfldcIb4kbDAFqLLsf3DzGbSnJ4eZW5VHJL+/t2CFS4tCPO1FyD4i6d2rhOo6CColDKmOQWXMojBqURg8BQWCslPvQ2fqQEAQ/V58l6rW75rOuuJo+GdPJex9s1jlQ7P4dwrQKqaYdEAhcz9NHCAIX1PNmGZvBybifhBy2aqKqcSwwzE81yrDrPSLPBpy9d5EShwFwq/QEXfhspClpUIbbDJP94fNPkyskWKDD22RSrrzRwqz6Zo1GiYwa27cC3B1/Vdu1bvp1k/9xdc39ZYfQzKdJ7YLpc4nIme7ebdP8JgQUN5W0TZV4nzPgEn2qh7vrg1Ze3wky55A6WWX5jiAtfniIMFOyyRe7nlrBnIrSOJ2i+m8QYs4kdrhPZ00LpNoiCEB9QJO1w6KfOc/zP91Odl+vF7aD4apOR55MkdlokdlrM/VWF5pX1WF+vEbDw1SpGRkOLqLQXt37+qycM2pZKxA7Yc6HedZ6WqfLA5QqBAu/szeHoKmPVJmOLbaavNGnENE4cSlNJm7e8rXeK7nlEbJ+2+UFGxxFio+WHdcZe8pj8ocfi5jGrhLhnVU/btNd8xj+XInM4SvpQBK8R4DcD3KpP+b3Whn49IYS4n0hfYHeyT26NJKdugZ7oPABszkliqhBCCHEvKO40cf6ysuG14U8mSB2MsPtXC9Qv2RTfbOGsSgeAEEIIIYQQQgghhBBCbAepAxFyj8Zwaz6hH2Kk9GuJbvmiA0qdpUKE1byFrw+evaYGAfvmy+xaqaKGUI0bvLcvSz1m4Hk6ShCSadgcuVQk6njMfqnSM5BZiyqMPLcxafPdqTyholA7Z9NadBn9dIodX8wy86cl7GUPLaow9QtZVFPBbwUEHpjpTkBw9ZxNZNRAj6uoZme7VGM9SKL0TpP2koeiQvqBCHpM21QFKObcvK/8lclx9q0VGXmok/gR+iGBHzL+Eymqp9rULzsQQOOiTeahKDtLZUqRCC9OTw68j28rReHs3hT1xzdPKo2blMbvvSDv7SrXaPBYeREVqGkWa0YMR9FxVA1H1bCVTlhKLHBRVZ+GbtHQDHQCRls10mETX1GJuS5Jx2G00QAgQMFVVFqaRUs1qBsmK1aCpm71aM3WOZrBK9lphtQKh1dXOLqywgMrK7iaRtPQqVsG5UiE1USUlvnhHldRx2P3UoXpX8xteN0uehgpjdANSR3oBMYaSY0wCAnskNTBCM05F82UQCqx/Sx+o0p07zAH1tbQwpAL6cyGCsqihwCUH1sop03CXCcplZ1e1yrZH4axZ5YwUy7FUxmai50q2saQgznqkHi0SvtilNaJBJVv5an+0Cd2pA5HuGvtFdtXZkcVlJBmKXK3myJug+rpNo0Zm5HnksSnLXIPRzckp1pDOkZCpX7JwS37t7SOQFN4+ckCh09UGFq1N01/b1eG1UyE595cRA3h2NkivgKrBYv3DncGQdl9sc4jb5Z450iatbx1T1VRPTxbQgnhxL57aMAWcd+r7dDJnPWJrQQ89EqJy7tjlHOGXMeJ+4Kz6nHp/1ckPm2QeTCGVdDR8zrWkE5ij8XSd2vUTm/+PhBCCCE+SiQ5dQviO00URaF+oY3y7YmB3zcVKw0870p7ayNwRfXBR25SlMFHkNPVoP9Mt+hIan7gec81hgae93R5eEvt2Mr8Wxl7z9QG77TIWjcfSbkb1x/8RizYQm9syY5tqR2GOvg27susDDzv2/74wPOWG9GB5wVoOYOPkK1rgx//XrC1m+Nye/B23ytjPi43Bx/tOhNrDTxvuMVRJRpbmL3tDv715m/h7+pyJdd/puukIoOX7Tw2MjfwvM9nTm6pHRV/8yjKN1P0Bp93tn3nRqJNmoPfrC/8+aENvy8CmRWHA+/WSOyJkNgTwbEULu+JofyjS7e3oUIIIYQQQgghhBBCCCE+VKmDEYyUhlvzMVKd5wHvP0LwVYVc0WZkuU2gwFrO4spEjLV870Bzw/N56OIKI7X1fv1WROfApQqmE2C6PpbbefpWixi8eGiUscXlTctJ7rMwczqV91pMfCGDosHru4Z49GLneZkSwvuPR7x6QGPGJjpmoOqdF8c/nyb0Qy7+Xgm/0XleNfmzGYyUilvxSe61UBSF1ZfqFJ5af658+Y+KmFmdsc+kNrUp9EPO/dtVzv7LJ3vug4Zl8tb4KPt/+2UiIzpGWkOPqUQnTMZ+Io3XCqidbmMVdBRF4dDKGgCvj4+ynBj82YLYXgzP49jSMiqwYCY5lRi96bxtTILrHtl6qMzGs1xM3hD0HgRYpc3P+sI7HN0yl0qxkEiwr1gk12oS9TzSbZtM22ZHpU64BKeHcpwf+/CC9D91fPbaz3bRY+k7NeyV7knmO38lR3JvBLfm47cD5r9SwQs+3EqIQnxY5v+4yMTPpNlfLDJ9bpmZP9ocl9Xve69c7v/d9Xa19wAMGbN/fMR8s/c5o+X1j2XpF/8zHq30nA4wbNZoHo9TPZ0k9VyR6KHGhjyoHzz4wZPy/ttdXUaMGEgD1WqiRVXO/pvr2xECNYxUg8zRGKGdpvTfV2hc7l1UYs/31npOTxj9YxH2xTdf513vTXNH32Vcqfb+7K/UMn2XofWJ9Wt6/QdNyFmNntODAUqRv1vrHSe53OodVzQcrfVdx/4++7yg91/GUJ95GsFN9pcGyfE6SycLwOBxPuLe5bdC5r9SRU+qBM7631F82mT8852/TbfuM/ulMl5tsDjBqV98d+MLCigPRXGPREGBwAmxsp0L1iOXSiiHbMIhHVZ01EdbqHpI5oTCyNs2TkKhMq0RXAh5+J0yoQJeBLyoQmnYZGGfCWr3c3/F6B976Lm9K566Qe/vHtPvxIYuaQmo3eQc0S+Ob4C4wKDZ+wI/jPSPUe0XQxox+18PW0bvggd7cqt9l5E2ep87kn2mA5yr9Y6Vdv3+lWwvLud7Tp+r9L+X6RdnrvaZbveI21x7PMKRl2qkSx4PvV4lBAIVKhmDZlwn1vAw3IBL6TQzI5v7N64X9vnTNbP99/m+fO/Y5rNr/ePXL5R77/Nqo/811nC6ewXm963W+l+3qmrvz2Uo2XsdAIl4731W77ctA5xOFaf3uUHpc/4CCPXe26oE/c8/aqH3tq7+5f7urwOXr/5c+JkzqBHY/WsF0gcjkpwqhBDiI0+SU7fASHUuepy1WxsxSQghhBAfjvKQycufymM2PXadaVJYcth/okHwG3kqJ1usvtwcqENECCHuR2GoDvQg+X4TbsNtEkIIIYQQQgghxEZ6QsXMaLSXvQ1BxNExg8iIjqIqncqAXkhk2KD0dpPS2y3a/+MuxhZatKMalh0Qr7tYbki27DC0ZnNuV4LLw0lMNyBi+0Rtj4jtE2kExG2PdMMmBOqWTszxaEZ0Ym2PEPA1aKoGTTMkVBQCBaaXawRJdUMgc/bhKIUnOwmjiV0mqg5X/rzM4rN7+OqDUWKOR3BDgHFit0XtXJvWvAsKmHmd5oyDldUgq2EVdMychqIpxKdNWvMusQmT+kWHwKsz/GxnfdO/tD645vzXKoz/xHrAaeOKs6URUQM3pDnrwuzVIN5Xm5hZjdShCKmDEbTIxj6akXqD1ViUQKqdfKQM1+rsKxZJuJ3jpK6anIltbTDpm7qLx1KgqpwuFNZ/N0N0z2Ok3uTBhRV2lKtU4zorieiH0s7vHxwn3bTJ/6vztBfcmwZgGxkNr+ljpDSMZCeuxcxqeGtbS07drn3Lt5P0U98b7BWPC/+fNUZfSJLcGyF12KJ6QoLB+/FKnWSk6P7mvVSgD4DADgns7vF4bjVg5cd1ohMG459P49Z8KsdblN4afPB0IfoZfWSFs3+5m8iYT3tBBnfYLm5MPDXS60lPRkIjscui/M6tnUtSByPXBgzyWwFBePWmK+OjHrAJXo3C1QQp5UgbxYRLO7JEV0My5z0KJzzez/FTQjBaYLRCokWb0phOO9U/QetOWU1FGam0mSg3mMsNXtRCiL5UlfeeSUMNRhbaJKseqapHtuiSK7rXui6O1oqMVpq8sv/mgx8JcS8Irua4+u17pRSREEJsjfQFdif9f7dGklO3QI+phGGI19hKTUohhBBC3C1OTOf0sRSng4Cp8y0mTzTIPhQnczRG45LD0g/rBE3JUhVCCCGEEEIIIYQQQoi77n/Zxa5znUoOjqFST+jYMRUlDBmdt/E0BYUQzYeLv7dG+mCE3KNxUgciXDrYZvWoCoTUUVj79DKRMYOR5xKESY29F+vsvbheJSKkU8il80/BjqjYlopvqASuTrzmoQWd6a6uwLKLb4cEdkB82oKazdv/j/3M5hLsXq4yVmqQaa5X8dKyOi8eHKXy3G4IQ3xNoWYaXJ8lmn8iRmTIoPJeJxi68t8fYaVUZWiXQmKXBXTGWAwUBS0MGf+JNI6u8s5UhtnfngIgXbc5eqFIqnk1QTCq895/cxjtVJFQUbiSS7J8NApfUOiWoRpGNr929ref2vSaejU+Xw0CdpfK7C11KtSFYchktUb23VUWvl7l7D/f/N7Q3PhkPexWzaNb3HWX2dz25vCGmYXcptfCAapkAAMn5tw4X9ilUozqD7awbgWE1MaAgeeDBil02Xebmtxtni7boN5YRCgIeGR5gZzbOW7LeoTziQIVq38Fp85KNr9k1DcH+9yssNntEnYpFqV1KZyitRXAYFlNsxxpMtxu8MSl5U6FHxQcVaOhm5TSJqvJKKWodS1pNdQG+CCMzfMo2vpzq3pEo56NMftPj22ab/8/eJXIsE7h6QTRsfUNai25REcMpn8pR3W2AX/ZbQ8IsT0sfrNGfKfF8MeTFJ5IoJoKYQDtZZfVRotSfMBz00eAs2DSPBEnsq+B0qfa1D0phJk/LhEbN0ju6ySExSZNFBW0mMqVPy1vGNhEiK3K7K4QG24y/PEEV/60RNi7kKK4T5Xf7VzDKhq0Fj3spVtPRG5ctKmOGaT2R0AFM61BzkP7VAMlG0DOJ/jK1cTOugq5ABSF1pBCa8hk0QuxKiF6M8Rodf7X3M49XTt5d4PhZ4YTHL5SYtdyTZJTxR3hRHWu7E5c+13xAgw3wLE6x/7Rl2oM1docmC1yenLzPb8Q9wwdFEUhcOU6VAghhJDk1C3QYuqWRpUVQgghxD1CVZnZF8f5JzMk9lrkn4gT32Wye1eO+nmbxW/W7nYLhRDitvFR8LfhcDrbcZuEEEIIIYQQQgixbni5U/HszWNZhlba5NdscqVOktbpwwkWJyPsOd1g9GQDrxZQO2eTezTeqbJ6/VPvMCQ+bRIZNSCA0Ifyuw2sp5NoXojhhAQaFIct2qaGGoaofojmh6hBSCOuszwSoZwzqCd1UBQmfu44APFdJvFpi8rxFnMPJ9i5UuPQXIlK1GQmn2BqrY6nKry+d4hKwrrptmoRhczRGMU3m1RP21gFnceuLF2b3tS1TtKsrlKNRahELcpRi0ZO2ZApWUlY/PDBEVINl4jjU0xZeLrKa7vuTHWRQFU5l8sSKrCvWEK52pb4tMXoCynO3pG1invFWKPKwdIKWhhS1iO8lZn4SFXMfSc/hu557GhUSbo2Cc/BCjzyTpPCSpN9K+VOtWVFoW3o1CMGpbjFSjJKLWLc9kqrmYeiDD19tVqXHaBdDeSOjnQSVZ2Kh2purU91u/Yt306yf+49s18qM/J8Es1SaC95aDGN6JjB0xcXcFSVtUSEuUyS5Q+p4vG9KFzSKP7lCHreIflU5W4359YF0Jx1ac66tFdc4jtMUBTMjM7451IU32zRnHP6L0eILhQF9vzEZd6eO8jI88lODInEiW4/IbdcKfVGfjtk6ds17FWPoWcSXP7DInu+uX6doE56KP9pCXxQukRph7pCO69AfuPrdecOj9IygEBVKcUssk0b0/FwTAkzF3dWqKs4+vp12kv7Rnjh3Vl2L1clOVXcm4KAwjPxzgAFQHKfhZ5QWfpObVPVbiGEuJdJX2B3sk9ujdw1bIEWUQn9u90KIYQQQnwQ9XM29XM21pDOyPNJknsjmBmNmT8u3+2mCSGEEEIIIYQQQgghxEfG8CcTpA9FaS+5qJaCWe1UrXn4rdKmeQ+cqHPgxNXKpzGV3GMxrLxO4IYsfLWC8l8k0FsBRj0ke8Yn9vk0bs3HKXqU320x/Ikka3GNRkLHsVSWxy08UyUIBk9SUQ2F9KEogRuy8uM6uz5b5dBciVrE4NW9w9iGzonpLL6q9C3JmX8yTuiFlN9uAmCvebw5Mcy+lRK2rvHyzvHOjDcW1FS6lHBSFKoJk+rAW/IBKQrns1km3lkiNrkeON24ZH9YLRB3WLrVYqxRJ+J7RFwPI/AxggA9DAhQOJMYYjaWudvNvCs8Xedy4oYMgiAgkmxRqLXItNok2i4R1yPuuIxWmxxaKBECnqrQMjtJq8VEhOVkhJbRpYRrDxPFOscur3Z+eXq90pDfDnFKTufcE4YETogWUVE0CaQS25+94jHzRxuvHdQIGL+5m9Fqg9Fqk7FqE09RmM0mOTWa+0gl1gOw1AkPzP/iEso22fTKe20q73VKXkfHDYaeTTDxU2n8dkDz9YDaEYXAknOg2Jpovs3it6qMfTbF6Kdg6bs1iRUVfb1fLU+LqtyY0awo3LcR2icms3zszCJPn1vkewfHP7IDPIi7RFVZSUWZKDawHA9bEqTFPebwy3XSD8bw7YD6xTZ6ojNAzs5fydFe8lj8ThWvIkmqQgghPlrkim0LNEsh8GRILCGEEGI7eP9B5einkyT3RRj5dJKlb0kFVSGEEEIIIYQQQgghhPgwRIY6SVmREQO72Em69DQF3e/9PNap+OQeiaGonYSDXb+WR/0z59pY1k4c5v6qTHPWJXUwQv7xOG7V5/hP5Psmjd6MosLUL2YxUhpzf10h9CFXa1OLGHz/0Pi15fraAAG7YUhit0X9go3fvrqtIazFI+xZVe6PAk2KwtyX7+PKa6IrNQh4cn6WlNupOhde/ecrCp6qsWZGOZ4bAffGrOmPOFWlEotQiUU2vBwqPrmGzVCtRbppE7dd4rZLsu0yXu4kpoeAq6nMFeKcmO5dEUgJw/XE1KuKbzSonbVxSt0zZ3zVvfXtEuI+FrThvckh3mMI3fPYtVplulhlZ7Hz/0oiyvEDadqR2xA21wR+FEFZ0yAaEj7VhpG7H4geBsCaBrM64QkLNeltm8TUG7XmXWb+qISZ10juiZBJxogshqw+D35MElTF1jQuOSx+s8rIp1PsyOksfrN60+9ZsT0oOkTHDCLDBqW3m4RdxgPqJTLc+S6JjOiEoXurt5z3nEo8wkwuwXSxzqePz/Kj/WO0ra0NrCLEB3FxOMVEscFzx+d4e7rAYi5+t5skBAAP/LhKquTTuGIz/1frQ8UZGZWR51NERnR2/nKO9rLH8nerOKW7f28gxHaip1WGnkzQXvMovd68280RQlxHklO3QDEU/NZ98ThQCCGEEANa/FYNM6uT3Gthr3qU327d7SYJIcQHEoQQhNvkqdd1ArkVE0IIIYQQQggh7ltGRiM6auCUPCKjBlpEpXauTRhaRIYMVFPh/O4EqapLtuTw7tEMxbyFrl8NBA9DTDsgVBSGfvkURkYjMqIz+nwKzVKp7FSp7tTwYgpeNCT2RwpTv5jFyulUz7RZe6UBvzRyy+0Pg051UyOlEZ82ac44zOfiPHxplfFSg/lsfEuJr27VJ30oimooLH27hqIrPHthDtPz+fGuiVtupxAfxP7iKinXoWaYvDk8SkvXUbtUF96muU23n6pSTEYpJqPrrykhqhdQqLco1NukWg6plsOupRq2rnJ+InPTxWUa69WJ392RI/L/PN23CVut9rZd+5ZvJ+mnvv94us7Z0RxnR3OMVBocWCoyVG/x3OstGlGd1bRFNWGyMBTtX1HVAfMKGHMqWklBcePQuvo3o4HSUAnPGDByd6qJhz5wwSA8a8KyDp4CegjTLvlnVvu+/37nrPmsrTXw/qs4+R+GDH89ZPXj4OblvCa2pn7BwSmXGH0hxY6fzzL3F2Xay1vMWBT3hei4weQXMthrHlZeJ3UowvxXKjhrN7+IGv5kgsAJWX2pASEsf7+O3wrIPxEn+IqH+mwTJbU9EpHemy5gmxr7Fis8f2KOV3cPs5qO3e1miY+Iatzi7ek8D86s8cjFFVpzRd7YNUS66VBKWNQi1t1uovgIShRdUiWfVkzdkJgK4JYDZv+sjJ5WGX0uSWTUYOqXctirHkvfrfX8bhFCbBSfNsk8GEWLqKimgmooKJqCosH7I1QmdlvkHolRP2ez8qMagXNXm3zfkr7A7qT/79ZIcuoWqJqCa8vFgRBCCLHdzPxpiV2/mqfwVJzsg1Gqp9usvSKj6gghhBBCCCGEEEIIIYSiQfpwlNAPac46uNVOoG2nOpVF/ZKDfTVYWzUU9KTaqS509QH+wn94gE+8uHxteb6q4FgKhhuie52ZjITGngv1a/NEAg/D0NCU9SiA4GrlK+cb0zhAA+CMy8h7LulLAY1/XaJ92SH3aIz8T6VpD8H8wxrOLydQSJBqb04Uadjmpte6BWNc+eMjzPkhH//eMpkHomQeiNJaLAHw8KVVHr7USfhwyh5rrzVpzbv47c5+Ove7D29a3uyflUkfjTL0dILKyTZu2cdouqimyiM/uEh71cNZ9Xj7N4/g6ddVqWx3qVjZLVBi0HiSru/d/GJgbF7g2d9+avNbu8Rgq/bG9wZBlxCFLrlAijfgRnRZp9blvV1jbNTN2zpILI7mdFl+t2KiXfZl18V/gGCXINJlG7TNr2mNjTtZ7bKPVtUEO6iScB20loKua90b/EHilQbd1gHWMXDcVJfPIeyWfzboIdfluDFKXRbYY1vLmJTNNM6ED0HAC8evcGCuwmIiQSPT5WBSoZSK8NVjU+sVmn/nsU2zxbMbB2D1mzb87S/13B4hPkqW0nGW0nESbZsHllfI1hx2tjygwQMXSnz3kVEc6+r3VBCgXwFzVkVfVdDqgAcKCiEhaIAB5APCp9vwpgVzGjx8lxJTFzXC78WgpsG4i/JwG0Y9KPgoGmjmRyfezRlSWPocFH4QMvyNEDcbEpjg5KB2SOl8bkL04RR9rvxJiYmfyTD62RSzXyrj1bZHwqFYp5qdC0Ar3zn3GwmNqV/IUj3VGeCoWyGb9KHOwCOxSZOVH9VpzbusvdK5B5z46Qz+H6fQfr28bapVnx3LspqI8OT5JR6/uMy3Dk/imBJ2Lj4cc4UkC7k4Ry+vMVFs8LHTiyh0brW+fnTHxv4SIT4Eutv5Xlgbu/kFpVcJmP1SBT2pMvJ8kuiYwdQvZHHWfJa+V8NekQEvhOhKhfxjMdKHO0mpYRgS+hB6IYEXEjQDAifAqwesvtIgNmmQfzROcr9Fcr9F4IT4zQC36mOvebSXPBpXnK59x0KIO0PuEgakx1UUTaG9KhcFQgghxLYTwKXfW2P0Uylikwa5R+JEJ0xmv1SWmxMhxH0nCFWCrtFV97ftuE1CCCGEEEIIIcT9IL7TYuhjCQBCP2Tt1Qalt1oUnkwQnzLJHosx/9UqigIjn0qiWSrtZZfZL5UJfZi+0gAgUKAV0ShlTJZ3mtTTBkoQsuNii51nm9iWysyeKIuTEQAiTZ+I7V/LF0uWPHLLDooV4MZUvKiC3grxLDDaoLz/5FuBQIfF5zVQFVQ7RGtDZsXFaIWofkigKazsHTwzQfVDHny7jHZdf/HiSATTCRheaWNcTbI1MzpjL6Q2vPeK42ObnYBJNQg5fL7MyN/MYaY1wiDErfpERg2CdohmghZTSe6xMI7FyJ+Y5bXdwxQTUYS408pWnKIRo+A2SXg2bX1z8ra4A1SVl/eM8vEz8zx7dp4fPjBCI9Z9319LTL1Dtmvf8u0k++f+se8fvtxzevHqPz2ukthrUXgqzqdeWbhWcVjRQbl6cRH6IW49wF51ac441C/am6qy5B6H/KNxWv+bxdyXK9eeMZ/99w/0bMf4aKnvtjw2NNNz+szPq4x9JkF7yWX5B5XOICE3OE2k73q2i9YnlwBoapA6EMEa0tEslcSkQfTlkNUXm9QvdCmro3Ltc/v86aWe69g72ns6wDupHT2n17z+n8liK9lz+mor0XcZQ5F6z+ltv39ij670HsEh7DNixEuXd/Zdx/H4aM/pB3IrfZdxOLnQc/qU2b+C8P/t3MkNv7dqJi/+wUPE/l6Khz53mt//3EjfZYj7R+OSw/IPagx/PEnghp2qXIpCcm+ExG6LK39SujY40/uqp9udc0teZ/ILGWrn2qy+1KA567L0nRojzyep/tMYy9+v4zU2vnfypXLfNs2S6Tm91up/7giC3tcriVz/wfrz8Y3zzIxa7PyhzccW5rnwXJTL54Z7L2CQS6Yug+pcL+w2ONMNmm6fe+Vs/2aMpms9p1ec/vfjapcBca5ndxuk6QYjkd7t0LP9A9jOh/me0x2nfzt8r/d+N8wPHkMfBL2/N6x0e8Pvp7JJLrWiHDpVxXQCkg2PI3NrvLU7D2r3g81Z6l/l921nsnc7a/37jepdBi+6Xmqk9/cwwMJauud0K+L2XcYjY1d6Tj9V7P/9Fbd6lx30+3zf16r9+xC6DZR1PS/T//ia3tn7mmB2pf8fvlfu3dbiTbZl9/lFQuB4dJjhr/ZeRsJwmAP0ZsDwqx4xRWHHz2fxYlCfVKmPaTi/Ni/VHsW2t+fVLtcuHp17rwBmThbIznqkVnyUEHwdVnYYzD9gEug3u6AYogzMA4llj7HTNmYzRI+pGFmd+HSnunYIeCYEusLKH5ZozfU/n37USF9gd7JPbs22T07VU2pnZCMFFFVBUUFRuHbz05p3cSv9L9qT+zonqcaluzPCnRBCCCHurNCDha9XARj7bIr4LpM9/0me9qpH87JD5YxN0JRMVSGEEEIIIYQQQgghxPaW2GsR32HiNQKas+sRUq0lFyunU3gqgZ7QsNc84lMmTtFn4ic7gXT1CzbVs23GfyJN+oEojRmHmckYvgbpqosaQL7kMLHQYnncopbW8XSFhckIqh8ytGCz40ILqx1sKmIYKOCaClojJL4SdKp0vl8yAxh5LoW9VqIx45B/LM7YN320FujXCgluTNSwGgGnD1l994fqhxx9o0Si7uGrEKgKLz1TwL5aoePkoatBhGHI3r9/ksRui/i0iRZVqJ21sT+2HsiQq9jsWGpAWmPpezXayy6qqTD2mRTNWQdFV7ByOs1Zh9rZNtEnUzx1bpETEzlWk1HqlnH1YbcQt0/EdTiyukzKttEJaao6q2b8bjfrI6UWs3h7qsBDM6t84t1FXts/xEpWktKF+DB4jYDy2y3cqk/2WAxVV0AFr+bTnHWpn7c3JRd1U3y1SXTEIDrRqYw080f9k05vh3BFY/QzSeqXHBa/Wf1A1bi3m9CHyon15BY9qTLyySRjn03TnHVY+m4Nr975bPf8Rh7VVGnMOKy91sBra+iRj061WXFz0aTDs7/6Jm9/5QCv/fkRxj5ns/ZqA2dNjo/tonK8TeV451yR3G8x/PEkvh1gJDRGP5ui/E6L9pKH1wwI3bBT9a7oMfR0Jzk8Nmky/TctSm82Kb3dJPRD8k/G2fELWRa/Wd02SRCNYZ1m3iW2FhBflgI/4sPXjuq8+XAOgoBnXlplotgk4vi8dLj34AZC3E5G0Ll29G6SFN2NF1OZ/6SJ2gwYed0jthySPROQPRPAbwwRBiH2mkfprRb185KjIrapkgoXNShpKFd0FH+9f3snNiHgxBQWD5gUp7c2WF59WOfCyHUDKwQBVi0kseyRu+yjOwFmM2Tssyku/Lu127RBQohutmVyauqwRe7heKfaqdr/4VwYhPh2SNAOUE2lMwKSpuC1gk5Z52WP/CMxAi+kObM9bhaFEEIIcXMLX6+SeShK5miU6KhBbMwk/2ScwA5Z+Mb26TwWQmxPAQqbwzfvf9txm4QQQgghhBBCiHuBNaSTfzxOe9mlds7eUPkz98h6pYnoyHrFiMyR9aQp3wlYe61B6IWU32sx/vlOsubQMwmGnoGdL61QThms5i0uTSUIFdi5VGPycouhRRtC8HSFdkyjHdOoZg3aUY1kxWVsdj0oK1SgFdcgEeLrCoHRGfU80CH+RzVSByKMvpBk7i8qLD6vMvqdjYkklVGNel7HbAYMXXQpXHI5u79TRbWXkbk2qarLW49keeT1Eu2oimuq1yprXaMouBW/E5T8ZnPD69f2W62T7Lv0vRrVk22sYZ3hZxP4rYC5v66gKJ3k4OSeCNmHYihuJ+j9gbnihlW9O5lnprCxQqsQt+rRpXninoerqFyOpDkXv3n1GXHnzOWSNE2dJ88v8viZFU5MZbg09uH+nW/XvuXbSfbP9tW46NC4+MHKFs19ucLoC8lOxb29FvVzdz64PLxiEPohi9+SxNR+vFrA3JcrxCYNhj+ZZOqXspTeaNKcd1HNzvdeZFhn6ueyvPnvkuz57GWyuysyLojAjHg89sXjLJwu8PLvH2D6F3M4ZY+Fr1W7VioW96/aGRt71WPss51rsEjBYPRTnftgp+Jx+fdLEHBtUIPRT6c61bVrPrlHY6QORlj5cZ2ZPykx9kKKyZ/JsPSdGtXT7V6rvW/MPGlx8Cstpn9ss7CzRSkhg6mIu0BV+fEzwzz4Wpnhapvn35rl1GSWhYIMsCTuvNVElFzDZqjW6j/zDYKYysLHO0l3kdWAyGqA8Qd1oqMGVl5n9IUkl1cHK7gmxL3GSKtYBQMzq2GkNPSEih5TUS0V5d8pKFcrZoeEEAkJdnqgd25gr0STlMd1AvM29UWqKnYa7LTG2r7OS4e/XEfzFcy8JoPM3ED6AruTfXJrtlVyqplV2fHzOVRdIfRDmnmNRlajnVIJVEBReL/CbqCCGkCs6BMv+UQaAbqnEmid8s2hDnpdI57QSExbhMD8czrKr0wAkDIHv2HMGY2B59WVrV1UXKjlB595C52QCWPwDtKWb/Sf6Tp1v/8IxO9z/MEPUdvb2uEcbGF/aOrgM8eMwROWYvrWkpv25VYHnjdnNvvPdNWQWdtSO9acxMDzHorPDzzvcnvw5W5lPwMMRepbmn9QS63kluZfqQ9+E7yVr7VMfPCbHWeLfyvjicrA86aNwc+Nb6+Ob6kduzKDj1hiqoNfPJ6vDH4ejehbG/nt2aHzA8/7icSpged9zNra8RxTBh9JZskf/Fj668b+geeNahMDzwvw0tLOgedVlcHP0ZW/3jv4vMBZT4MgILPqMTRvk19wmfiZDGtjBmceim8Izhj6wumBly2EEEIIIYQQQgghhBD3CiOlEZ8yiU+Z5B/b+BzDbwes/LBO9lgMq7D5+ULjss3aq03s1U7/eepQhNhEp0/aLnqU3mgy+kKKTNUlU3VZyUeoJw2qWYMVOyBR9UiVPEw3RKt7FIdMZvZ0Alz3H+/0hZ98OEE9reNEVFAUMrEu/dgzDqkDESKFTrJBJd55ylLbpVB8VCXUFcrt9cDZhcMWmts/MRU6lVPVEHQ3IFBgeTgywF7dSAlCds/WmFrobFP9vM3wcwnSB6M4JY/5r1Yg6DzOrZ22qZ22UU2Flf/hCJbnE7ddCrUWuUbnGe7R2TWu5JOEki0hboP3K3+8kxqlbElA791USkT57kPjfPzdRQ7PlInaHid35u52s4QQW+CUO7EKRurDSfIPmwpBO9w8aIa4qeasy8x/LFF4Kk7usTgFff16qnHJoTnvcODX4fRf7CE9XWHPCzO4TYPy5RSZ6Srx4SaKjOHwkaMoMH5wlcu/P0R0wqDwZIKJL2SY+3JZAty3Gafoc+VPygw/lyS5Zz3O1UzrpA5FqJ7sxMY1Ljpc+ZMSQ88miI4ZVM+0SR+MMv65NPWLNvNfqzD2mTTDn0gQ+iG1D2HAgjvNj6hcfspi+iWbpy8sUo6aOJpGqMCpsRyNyNYqnQnxQbx6cIRj51YYKzZ55MIqzdkSoaKwlIlyclruocTtM7VSZedqFT0IML2AEGgbOlvLnNioXVBpF1T4Qaef0MyqTP/NPJkHY6z84M7Eugtxq/S4SmzawMzoGEkNPa6iRVVUS0HVFVBAua6POgxDCCH0QwInhExIMOzDbhfyAdxwuVBc20Iu1C1aOGIx+UabqV/I4rcC6hcd1l6pE9z/l2dC3FO2VXKqYqioukLghpz/nVUaX93d9z2Vic7lQcK8ydnFD4gugZsELyk9S0IIIcRHjqpSHjYpD5tcPBhw5JUqhQWX9GqFE48laWS31eWUEEIIIYQQQgghhBDiI6Z+3maBKmOf2Vyhz2sGmDmd4qEki0Od5M5dV2pkap1BRE98cYzyr68H7D70TgnW2jQjGi//9CgHDlVgaT2Z9MD/McPayw12/2dDaAGsDZnM74xQKpjs+DcLTHsh+a8UWflRHX690Fnf10p4jYDGJYfq6TYXf/+hTe28/Ft53gT2zFY5QAXj37VhyCB5MUT9Xovyey1K/9u+zRvfZUzKyZ8/DoBqKeQejZF9sFM99sF3KtiWyuyuKKoa4tibw9DO/NvHNr22/++8RnzKZPwnOxVlKydaxH9zikStyTuTBa48lIDnFeg2WO51L50dy4AChucTKAqhdnWGoEuCarcxHQcc5zE0urWjy2vd8mL9zS8q7Y2vac3Bnrl3W3y3TRg0Pbezv254b5f2ql2Sezatt9tKuw2kOWjjPkCOcWh0abC2uS2htnG/a/XOSseaZYwgoK3qlCMDJqYO2N5wwP3Udb4PsN5Nb/sgCVuDjo/abb4uh/qN22oUNx+Y7bzOWjLCWLnJaLHFyUm162faLRGtsRrbOEtLYlyE+DDt+PkMkSEDvx1Qfmfr1ZS2KlzUCM9YVM8MPni96AickOXv11l9sUF8p8nopzvXwW7Dp3bG5tDPXaF0Ic3F7+zgrd89TBgohL7KlR+Po5k+I0dXGX9sCSO2tQHOxf0vDKB5xWV2uczET6WZ/JkMc39VwV6RY2E7CdyQxW9UKb6mkX4gSuZI5144OmpcS04FcEo+c39ZIf9EnNwj69dhiV0WYy+kmP9qhZFPJhl9IUV8Zxt1WSEYvr/LXNfHdE5/VmXsez6Z1nrF8aH6HN88tANPlxgq8eF5a+8Q7wQBj59eplCzCYHdSzVKSYsla3MflxBbNbVa5cjcGiHgaSqepnKpkKQWs0iytaJQvcR3dvpWvaaMOCPuDWZWJftwnNgOEy2iXEs+DcPOwEiBG+K3QpyWj1f3cas+TtnHXvNwSv6GPqs9r259oMfbrbTTwPsn8xSe6GxT5oEo6YMRrvx5Wa7jhbiNttWdgN8KCMOQ1uLWKir2pKm0tlbcTwghhBDblBdReesTGSbONZk60+bBF6uUCzpnHxy88rMQQtxpfqjgDxzRdf/YjtskhBBCCCGEEEJ8KBRIH4qg6Ap+q5Ns2lpwIQiJjpugQuiElN5ukn1oY2KTldOxcjqstCiU2nz7mXGWC53AXFX1OyWErnNqb4pixmRpKIrl+Ixfl5jq2wG5h2NUT7fRrgaonHooSXC1WtXayw2MpEpyXwS3EVA920bVFfx2gJHUGHk+iaLTSZS8ScXQ8xNJ2qbG7nPzRIY6yaOxCYPIkM5sw6MZ7zweV4IQ3QvR/BDXUPD1GxL3ogq7f62w4bXVIZOZnbFN8/ai+QHRcYPC03HsosfiN6sUnowzVGvx+q4RVlKx/gu5gat3ybIU4lYEAYeqK4TAO5nRu90aAZiex7PH54g5PtWIwYsHxj7U9W/XvuXbSfaPuJnMg1EiQwb1SzYLX63e8fUFp0yCH8VgxKP0liSn3qrADamdtQnsCsOfTNC43Em0UhTI7amQmqiz8MYwKCGjD6/QXI1Svphi6Z0hFt4cIjneYMcz86QmGnd5S8SHLbBD5r5cYfwn00z8TJrl79Wpn5fSS9uNU/JZ+WGd0AvJHouROhChMeNs+qzXXmlQO98mucfCSGkk90aIT1uoEZWl79SwVz1ShyKYX9Fwnvbw9t/f1Xa9uMoP96/fP4yWGzw6s8zRuSJv7iiAKgOkiK3TnYBU3aGaMPGtwa+5A1Xl5UOj5CstTDfgkQurDJdbLI1IcqrYulytRb7RJuG4mJ5PrtHGVxS+cXSK4Hae24KA+FxI9JlOopyZ0fDtgNLrcl0vPnxqTCW1xyI6ZmDmdfS4inK1+zlwQuoXHGpn29grHl7j/k2g9qoBi9/sJJVHJw0mfjLN5BfSFN9srT9vUK4+dlCue/yggKIpRIZ0zJyOaioQQPlEi9Uf3f/3gdIX2J3sk1uzrZJT9ZiKoihYOQ1rSOf+/3MXQgghxL1obm+MlXGTw6/Vyax6PP7tMgu7TBoXnf5vFkIIIYQQQgghhBBCiA9JZFRnxxezmyc83PnPawUEToBqqKhG9wfuy9+vcfE/30UlZW6c0CVBtB3RmZnsDOZnWxrffXqEw//8HHpUpXHFYccXsww/25leTeuEN8Z1XV1k7lgnaTMMQlZfamCv+egJleGPJ3n69RWKGYtWRKMV0WlFNWqagq+poCjMDceJfbOGWw3IPhxF0RS0qMKTPy7edD9V0jozO+OsDnW2UYuoBG5I/YJN5WSLC/9yP6E6WECC5XhkGg7jxQbjpSZ8IXNt2vQv5QjckFd3j7CajA60PCHuGFWloZskPIeUa1Mz5Ji8W3TP41B5lZFmHQW4OJTkxFR+S8soVFpkq/bVgq0hSghBq8XsHWivEGKzzINRQj/8cBJT34gQvB5FOdRGfaZF+Ft3fJXbXmPG4eL/d/O1oh7x2fHMwrXf05N10pN1xh9fYu1UluUTeU78yT6O/M3TJEbufLVccW8JnJC5v6ow8okEY59JUdvZZvWlxn0dtC+6W3utQWKvhZHQGPtMitJwk9WXGxuqgjlrPmtrnaSi9rJH4ek4e/5uHrfmU3qrycyflNj5v2Qxf6wTGiH+ru1znCxm4rTnNcYrDUYrDRqWwbuTeUpyzysGoHoBz7yyQsQOUIAQqCV03j2SoRUbMMUhCBgtNZlerhMAZyYyIIXwxBYkmzYfO7+AFnaqW79f49pXFF7fNXxbElPNYsDI6x5GPUT1rnaBPhgjDEJa8y5L3799lViFGERsh8HQs0mMVCf/KgxDQi/Eq/m0Fl2KbzXxKtvneuV6rVmXxW/XGP10ksIT8YHeE4YhfjOgueRiFXQyR6I0Ltq05vt/4agmGGkdp+QRyveT2Ma2VXJqe8mjcrJF6mCEHT+XIfvDJuef3fpos0IIIYQQ/TgxnbeeTfHodyqYdkhgb88bMSHE/ScIVYJNkZ33v+24TUIIIYQQQgghxDUqGwJbb5f4TqvndK/mc+VPy9d+V1SIjBok91qkD0dpzjpUTrQpp3svZ5MwZMd8k/GlJqmnEyiaQu7RTqBHbNIkVODtJ9NwQ8Ln4jdqLH23DkGIoiuMfjrF0DOdZNbAC1n8dpXwbw4zudBEC8JNqy3HDZpRA+1QhLXXGpTeahKfNskei2Hlb/5oPF3xOPp2hXpCYzWt4ZR8zv/O6vrmDJKYGoY8dWqRfH1zxaTmvEPjokN7xcMte6z+i939lyfEnRQEHK4uE/ccQsBV///s/XmQJNl92Hl+/fa4r7yvus+u6qq+G42rQQAkCJ4gIYrUQS454kprspVpdtc4uyvNzK5JZjLjrMlkq5nlaLmiqJFIipREkSAE8AIBNIC+z+rqrvvIyjsz7giP8Nv3j8iurKyMioiqriuz3sesgM5wD4/nHh5+PP/93k9U5H0QUo7N4coaWbdz3HBkhff2FihmbhHnEobIgByGqB7kLIexSovRavt6EO2NXPf2BlXdqX3Ld5PYPsIWMkz9ZBYtqVA7a9/zj4tWFMK3TKQn2yhP3fvPE7rTzICxk0WGj5X44A8Ocu5P9nLs585jpL0H3TThLglDWDgzwuLZYdyWxpHPXmFoprZlvsiLWP5WA2vOZej5JLt+waB52aE179Je8vAbIo5kJ4h8WPl2g6mfyBL6EdnjMRIzOtY1l+Kr1kYW07rqqTa+FTL+xTRaSmHk0ymyj8cIRkKktoTxXQ3X8fEPb+8Kqjf69sEp9hVrjNZbpG2XT1xa5tJIhnMT+QfdNOEht/9yg5gTslYwqGR0hko2uZrHC68WmZuMUc3qZOoemhei+hGRBK4u00KHCDItl+FaGyUCW5V5/dAotqEiieQf4TY8PbuCHEVcHM6wlIlTj+t3twq0HzLzVx5E4MXBzktYEzLW/3lVDGohPBCFZ+PknohDBK15j9rpNtace0+eTzysmhcdLl9z0HMq0fp6R2EE688corBTUJX1f35zY+PIJuz920NMfDnLtf9UxqvetOFkyD0RJ/uYiRLrJP9C5/nG1d8tE7Qeng0t+gK7E9vkzuyM5FQVhp9PoGdVzBH1eva+/hD9cAVBEARB2HkOvmdhOBFLu4yBRsARBEEQBEEQBEEQBEEQBOHRc+G3n9r0txRGjNoWmbpLtuaSrnuoQUTjnM3Kt+/uKPml1y0yR0wUo/vDdHNE48pvPIGn3ZCYFt6QiPkk8JOgsjXQ3jC2vhaGnc9J1j2OXOwEby88bpCb94nXQiKglZFYOBEjFd+cNHXl905sWV7u7RKJhkMtoZGxPNyfH0cKJJSwezJG1vLIWh58NsXoZ1O8s7fA2UInuTXm+MQdHyUIibs+gSwx/rvXiE/rJKY7gcWxEZX03x/lvac2V5u1W/qWzwqb2vX/lqKIPWu1TYmpxUSMhVySlUwM78RNiX/dHmOHXRJgb36p2yz+1hdji5s/Tw19xtwGeujjSQqOrOLKCras4cjqpgoQ9tjWAOlI2Zr01k23+UJz899ye2t75fsQky11+YxuKccDrWm3maIBlzZYAd6BKc3Bkkplb/MHv1C8Siz0aSkab+cnsFUdpK3t7bpag772kOi2DlK332CXGbtsEsIu+3k0YG6vV+g8S5osNTi4VCXmdXbMWkznw4k8lVSMg3/vdfIACox9LkV8WkfWO22TulSsjqKIoB1SPmvTuOQQ+dH14DnPF0lSgnAvDf3WMNm3gADaE2D9vElC3nzi+8nEez2XYcj9nzGb8sZv2fUMGkjEkw6m+lGlTq37G4U79r8dmh54XjVhM/WVLG/+q2PUTrcpv9MidCL+Dxcu9nzfgpfrOR3gk+nWwO24lYLS7Dk932c6wGV3pOf0N5p7ek53gv4hqovldM/pS2bv6QAr7VTP6ZOJ3usBsC9epH0mRvN7OQg+quEn8dofH2PoV5b5xXNzt3yv78isvDdMaSyHVey0V5JD9KRHYqjF5JPL5GYaNIL+1ST/4MhY33mE+6u94LH2cpOhTyRwywFu1Sd3Io5iyl3v45uXHObbVSZ+NINb9gmciMT3OveVtiljviqxupLmysE43HCNl4/3rsI8mu7fZ2D3qTbp+v1/k5a79R74Rkp26yAol4cSXCaB5vq88FaRfas1AhUuTma7LkOL975W1Y3+50jf7504EAT9EwvKVu8CSKbe/5p6oZLpOT1m9B80Zl+u1HP6l4ZP911GfHTrYFk3+jdzn+y7jFKf7WHbva87Aq//zZF0w9eiO537q7mRBKtDcS5PZkgsRDxzbZmZhTYzCxu/iY/uxDq/mPb11zxN4vyeJAtTCSDCwCFW6P+95RO9z7PFZP9qerk+v9mJxNaBDW729sJUz+lStxvTm9Td3ueWUiXZdxmHJld6Ts/Hem+v9ysDFBML++wf3frGbjK32vsaama03HcZV+3hTX/rQYhlqpzbnQVANgKgd2dVXOuzj31+/vp/Dn0ygXQ8zuKf1bCu3N4gUoJwp4691f0c6H0rQXjZxDUlzr0Yxzdvfa6sNHv/rlW1f6fulYu9rykGkUz0HpjJdvvfEzv/7ome06MBrhkid2OectXi6ctrTP9CgR8cGocIRustCg2HfNNGplN9eS1p0NZU9DBkrNpi5mezXPl3/Y9TgrAd7Yjk1PQhk+yxzsHPtwLqF9tU3m1R+4PdD7ZhgiAIgiDsWKobUljyaCVlrjyWYLj/WwRBEO6LEImwa9TY9hY+zBFugiAIgiAIgiAIgtCHFEVkGw6plsfu5QZJ28fVJGppndmZBLF2wCRQfruFV7uLmXphJ4g2uffWlU/vxR23HVPwNAnNizDrIfFayNWnTeqjKqE2+Ccm251AL8vQKGZi7FpuoK6PXl5KGry5f3Q9XDwiZbuMlVuMVVvE3c42nCxZLK4np7Z1hb3LNXav3hCAv16V1WsGrL3cZPorWVz99kfFPjm7xkTVuv73h+MFrhbSIElE8mCJnXeT4buMuw3ynkUicFGIen7P0Q3/H1QkKjGTd6ZGCVQxQvhONFWvEgt9FmIpzmRF4sP9Iochh+fLzJQaaGFECCxn4nwwWcDRt4bu7P2lArImEbRD2os+QTvsVG0Iouv/71Z8rFnvlhUXguj2BnTfqX3Ld5PopxY+MvPVHMbrnfj62nPQ3nfvP9Nf1Wh+NwuAt6xjPvbxExeFj8+3Qq79foXs4zFyJ2LEZ3Tm/6j6oJsl3CHrrSSt19OgRsSfqRM72aT2tSH81f5B9aoRMvnsCrufW8BrK9SXktg1A7epU5nN8P5/OkJhf5nRT65hdEnsEx5+1VNtgnbI2OfTWLMuS39RZ+zzKZSYTPG1Jm5p8718e9Gj+EqTkc+kaC97XDqcwGgHTM3aXNsTY/pKG9ULuXCsd2L1duPpKt95fILPvbfAwcUaniozO9o/wVx4NOVqnYTag1frNGMqrYROI2bwV4d2MVKz0IOAUsKkramdSpZhiBqGZJJNkMCKq4Si70L4mKQoIuwyGNTdktprELqhSEwVHjj/PYPwsoFU8Pngk5m7WyH4EbOaTfD6PolnL63y6bNL13uLIqClq1wczTCfT2zaxseuFdlFk8QuHWv24TgeiL7A7kT/353ZEcmp9Q9sCk/GUWKyyCQXBEEQBOG+mLhsIwFrEx9/ZB9BEARBEARBEARBEARBEHawKOK5D1fJNxwioJgx+eCxDPWUBpKE5oY8/U4JtxbgN+5uCUnFlJAUsGYd9LyKltpaoWC62OTSeO8qH7dD9UI+9e3i9b9Txc46pZd9hi+7FPfoVKYHq/Cl+53EqrnRJKWMyfnpDIWSw+GFCku5BL6yHtwhRVSSJpWkyZmZPHLYqY7aviHhS4pgsrQ1iaN+3sYYUpn8sQyKITO27FAorvH6C3lcY7ByiE1DIwIWs0kuDmexzAfTb7xnrcqB1QpK1ElGjQBHVikpJitGkqZiYIQ+RhSghz56GKCFAVrU+adEEZrkM2y1+cL5Wd6ZHGE1079SiLC97KtWCIEz6f7Vw4SPz/A9jpTXGLJbyIAnS1wcSXNuPAtS92NM/pk4ii5TfMOi8pZIPhOEh830z2bRCwrtKai8wD2PvvNWNJxzcZyzcdQhj/iPlFGHRWXkh0noRZTfatG45DD9lSxjX0gThZsrwwnbQ/vdFGgRhV9aQtYgbMn4azqSfnsDPmixgMLejWp5uz81z9q5PJe/O0Pp3+YxC20yexpk9jZIjItz/XbSuOCgxJoMv5Ck/LaFb4UkZnQSM3malx1Kb1i4lY37+tqHNm41YOwLafadtVieNHB1iekrbap5jfF5B1+VKY3qWMnB7j+3g1CW+e7xST53aoHHrlXINxze2VsQSTDCFj94coTHz1cZqth8+u1V3juUY1Ht9Kl07Y+QZXxZppER8XrC3TFUayNH0DLuzUW9bIISl7GuPRyJaMKjKbTBfylJNKuDGqH+dA1KvasQC/0VM3FeOTDKvpU6jZjOasqkkjBueb3z4USemWKD/NPxhyY5VRDuph2RnArQuOSQezyOmpbx67fXGSAIgiAIgnC7mhmFSIKZ8zZObOd0EAuCIAiCIAiCIAiCIAiCcHcdnKuRbzjU4xovHxsjlCW02EZCwYHLdXQvYPEbNW6zyF1f2cfjJHZtrZoaOCGK0QmSmFlrspSL0zK3JoxKYcRExWJkzmK4bHNtIsHFPb0TWX1V4tquODOznSBrvd2py5la9dFciCRv4OTU9/blAShlTAAiSWItE2ctE+/5vlCRacY2BypGssS3H58g7vgQwbPnV9G8gNR+g+YVF68eEJ/QMEc1ND/CbIcDJ6deGM9xYTyHFDy4EbX3rlU4tFLBlyWWtBTLeoqaGrseDPPRAOg2vQM47bGAsVqTEwurPDW/wko1zlu7h0UQ8Q4Rd12MMGAxlhLf6X2g+j6fXpxFAtqKytmpLEv55MYMtyisnD0WI/QikZgqCA8Z2YSZr+bRkgqNizaNv2ne88/0L+tYf5FGTgWYx5vEn2kg7Zhov53HqwYs/0WdyR/Psnh6hMnHVx90k4TbJUXgyziXYhi729T+NA+hROJTtf7v7bVYCUYOlynsq7JwcYT61RSlD/KsvDnC2HMrjD23yj0s2CbcZdVTbRRTIv/k5sS55F6D5F6DuT+sYK/6119vL3rM/l6Z3b86xNiCg69IODGZXNmjNKQxMddm+mqbUIK1IxprhzoDWW13virz7ccnef7sMhOVFrlTDt8/OoarixOZsMHTVd46NkTCcvnEu2ucOFdBHleYz4tqu8L98fiVEhHw/q78PVl+/mQcSZKovifu74X7L/QheDlBeN7o9EFlArTPN0SX4F1UScV4MxXr/HGLfr6PhKqMs+ZjDKtIKkR+7/kFYbvZMVf5bqXz6zSHNZp15wG3RhAEQRCEna48bnBGkTj6ZpPCsouo3S4IwsMiQiJk+z+sulm0A9dJEARBEARBEARB2NlkQyLzWIyhxTpnZrJcmdgaWKf4IcNFh4XxOH7t7gevl9+0yB6PIWsSvhWgxGQkWbqemAoQd/2td91RxFDD5rG5EklnI0pi31yTZkIjkiQyvk2y7hNvBiBBKEuEsoQcROhuSCiBvB6QEahgp2S0UkisFjD2ocPyEb1vwO3CcLLn9NvlqQo1tZNw+hdPTnPoV98ECaL1wjYlYOn3jxDKEpG8vfoiDq5UAPjB3kmicuxjLWs5k6SYMHl2dpmxZosvfjjH63tGqSXufRKOcG/JUUgEGIGIfrof9jaqyMC7hVFWEym8fP/tPv0zWRRDpnLq/geu7tS+5btJ9FM/urSMzMxfyyMpUH7HovRai8T/cG/Oi2FTxjsVI5jTiaoq2i6b1JfKogrnNtGa96ift7kUn2b0cBH1NituCg9W6vMV6t8s0Px2nub6a+qIS+xg+64sX9FCcgdr5A52BiZaeWOEpVdHaS4kmP6hBcycqKC0XZReb+FWAsY+v/U+Pzap4bdC/ObG7z/0Il7+QoFc0WVs3mFotfNdF4oe3/vhAnErYHjJYebDNpEExUM7oyqkr8p8/9gEh+Yq7Fuu8+L7i3zn+IRIUBW2sBI6Lz09yqffWuH4UhHL0KgkPl7fhiAMQgtCWoZ6z45L8WmDKIhoL96dfpjYlEZsXENLKahJGTUuI2sSUQhREBEFEPpR57/9iNCLCJyI6nstvJq4Ln2UeK/HCN+PQShBPED9dBNlRvQHPmilNywmfyxL4dkExZetB90c0Rd4C6L/787smCv85hWHkc9EDH0iQWveIRT5qYIgCIIg3EOKG3LwnSaRBFeOxOldK0AQBEEQBEEQBEEQBEEQhJ3o/L95CgDVD5leazJcs0m2PXQvQIk6g2VfGk9zeTTdCQRZd/gffEjuZJzYhIYkS0i/PndX26WYEov/5ASWrhGUaiQdj3jMwwgC4u5GEMo7u4ZJ/fcfMumvgQTmmEZqr0Fyr46aUGgvecy+1CB1wCT/ZKda6YmznSRIT5FoxVTqpg5EKCHIYUSkgB1TiEkBcdtHBhQfUqVOAJTiw9h5l8VCjGZmo4KqGesSiN3ltcZal4TVsH+wgBzbGnxz/ree2jpjl7jzqFtFVGXrUOjdKt9Kfpf3dhlFXeqyDom5zVko1vTWD5DdzvsuZ3Psq1b4zMV5PkiPshq7syojxtpH1WIV3krvYlqpcMAq8slLSywYaS7ERwFojwcDLe/m9ZIGjIPzY122b3zrZ6qlOw956DOY/W2Rum2OLsnXUZf95n7GujQNk7pukHfb5L0mpVii/5vupkE3erdtctN7u1Uqlr0tL3Xd56IuCV5dX1O77IddCip3e81PBeRWW4TAwmQcCDZKGK87+Pde3/R3bFLD+PEM1jXnoQhQEwRhw9RPZZEUWPrTOtbsvUkeC+sy3rtx/HMmaBHqPgflyRaJfU2RmLrNlF6zyB7NcfW1SfZ/+u5e5wv3lrHLofB3FmmfShLWVJSCh3ns3pyTJRnGnlslPtZi7q8mOfs7Bxh7dpXRp9buyecJd1/jgkPj0hrZx2IMf7Jzn1o702bouSSFpxMs/Vkd69rGOSOSJcojBuVhnUzFJ9Hw0dyQSJawUipWSsXUfcY+8IhVQ5aP6XiJnXECODedwzJVHr9a5nPvL/L6wRGa8S4X0cIjzTVUXj45wqffWuG5q0t858AUtr4zErWFh5PshyhhhK3fu+NRFEYggaxDeAe3EWpGJrXPwBzRiE9qyFrnvBBFnY7nKIgIfZAVkAwJZKnTHfXRP0CSJDJHTPxmSPVUm+r7d2fQDeHhJKmw+28WCN+TwQhRnm+iHhQDoDwsWnMegROSPmiKvj9hx9kxyamhDbUPbTJHTfb+0hD2mk/7f1jGrQV4tQC36hPat37/zY8U1KSM3w7hFs/UHj/VY2E3WXYGT1fJ67d3kHESg18QueHgX/eI0Rh43rQ6+LYA+LA+NvC8t5OJvydbuq12tPzBb1om49WB5y05gz/AM+TbG4HiyeTiwPOeiM0OPO8hrXZb7TjtFgae96XGoYHn3ZMY/DvUkoM98P7IuD74Oo5q1YHnfdfadVvt+Av78MDz6urg+0fGGPx32Fa0/jPdYK09+KjkFSc+8Lw58/ZucGrO4CNhPZ5bGHjeo8mlged9qbh/4HkBRrT6wPMOK/fuItOLBv+9JG7jqdaMNvhv9iX34MDzAjw7cm3geX+wuGfgefdni7fVjrUXql1fl03Y/QsFZF1i9aUGmd8QDwcEQXh4hJFEGO280Zt24joJgiAIgiAIgiAIO8NYqcXjV0rIYUQpY7IwnMDRZBxNoZbUaWkbz6TSlsOxq2VyX8nhlHyq77VpXLTx6ndv5PrkXp2xz6fZe2mjr9xRZNZScWqqQcJ2kYALY1kapk4KyJ6IkXs8hppQ8JoBjUsOzUsO9pqPnlOwVzxWvltHTSoEdohXC5n8coZM0yPT3JoNFkpQyhrMTiYJxgMcUyZUJKQoQorADxQ8fWcE2d5r416VXW4JmQjrikY5HmMplaBmGiBvbMNL+QLlWIwnl5c4Vl9hyW1xJjP4c9lbmUvkKCkJTjYXmHLqDLkt3klN0kYEEm9XdV0n4zpi/Pf7IOF42Npgv5XkfoPRz6UgguW/HPwZ4920U/uW7yaxfR5dSkzGXvHvSmJqFAGWRFRWcCsaYVklLKlEVQXMCO0ZC+2ojaR3otlEYur241shu55eZPaNCaZOrGCmRTD4diKrkHiy2X/GuyS9q8nhv3We5ddGWXp1lMr5DMaIjbMqKlttCyFU32/TuGATm9Dw6iGZIzEkRWLiyxmKr1lU32ttHshIkqjlNWr5rTF8q0c0nJTM+CmHQ3/WxirIVGdUapMqob69r0Pmh1NEwONXy3zi7AqLlRgfHM496GYJD5l2XOONmTGevbbMpy4t8p0DU/jqjkl1EB4y+5drSMC14dQ9+4zymy3Gv5Rm998sUHzdonXVBQW0pIyaUFDiMmpcQjEVFFNCNmRkXULWJGSj8/+SJBFFEUE7pPq+ReOSg1sJYMDuZDUjM/x8ksSMzvAnkww9n8Cad6m+16K94kMAxohKfFLDHOlUZQ3skOqHbazL4jp2u5n4sUxnX3qyhfaUSER+GDUuOWSPxhj+dJK1792/+45uRF9gd2Kb3JkddcW29r0mrWsOQ59IYo6oxEY337xFUQQh+K0Qe8WjccnpdBrecHJWEzK5p+JkjpgQwrX/UsUtiht9QRAEQRA6hp6Pkz0eBxnWftCkfkaUaxcEQRAEQRAEQRAEQRCER9V4yeKJiyWW8nE+3JXDNbtkDwSdyqpH5ipMlCyapsbSn9do3qPgntQBE0mRKMdNMm0HJYpomAYp28XwAww/QAKGLi533vB3hoFOhZf6WRt7pfNsNH3YZPyH06hdBsu15jb6RU8dyFFJG4RSpxJMKEGgyIRy5wF+NnPj4Iyd17xAZFn0o/s+T7aWSEYuARKepJByXDKOy55KjQhwFIWGblCMxVlKJqnE4pweHuHE6grjdoMzqZFNCax3ylZ0Xs3sYX9rlSmnxvP1Wc4Wc1wZEoHE21HKdYmA4v2umvoICmSJmBfw2XPzfDCRp5jZOtBv6oBB/ukEWlomCmDhm7U7qqYiCMK9Fdghev7OBmaIHInoskZUUojKClQUcDvn51APkfMByriH/HgbdZ+NdHvjjQsPqV3PLHDtrXGWPhxmz/ODD7AuPJoULWLyU8vkDla59q0ppr+SpXa6TfH1FpE3aOl54UEK7Oj6Pf78n1SZ+FIGWZMYei5B+rDJ2g8GTDyQJGrTKvVxhfRiwPgph8l3XCbfcVk7oFHfI+Omt+/99MJwimImxvNnV5hcaVNN6yxMiPsSYbNSKs4HY3keWy7z+fNzvL5rjEpi8MImgjCQMGTvch1PlljK3bv9y5p1Kb5sMfR8gtFPp+DT3eeLovXzfQRRsF4R1YmwrrjUzrY7/bV3OLahXwtZ+rPOIFiZYya5x+MkZnSSu4zrnytJ0vV2RAHoikJ8SidwQ+pnbaqn2vjNuze4onBvTHw5TXxcp7Xgkvvfi8TUh1Xp1SaJGZ3sYzHSBw1acx7ld1o4ayJnTdjedlRyKoA162HNVgDQCwpaev1fqjPChJqU0TMKyX0Gqf3m9bLmRIC8cXINnBBZk5j5SlYkqAqCIAiCQOaYydCzCWS9U1199bsNrKsiOkAQhIdPGMmE0fZ9IHUrO3GdBEEQBEEQBEEQhIeMBFq6k3Tg1YLes8pQeC7BgYslKgmdD3bncDUFic2Bw6bjM1JyGKu0GKrbXBxPc3Eiw75/fu8C1EtvdpJBs3vBk2UsTSOUoBYzsA2F0VqLTHtr36ZvhdcTU3MnYww9n6R+3sar2ST26Bg5FaROcJSRV7k8mWR+NIEVFxkU3cRtl4OrVRQ/Qo66/QNp/b8l6Px/RGcfCiMUOqm8tqQyq+ZwZY3KuIwURYw3LArtNknHY6jdYrjd4nC5SLT+ngg4lZm4K4mpN7oYH2FFT3GiuciR1QoTNYvXdo2JKibbzEf73K56mdl0/kE3Z0d76cAkJ+aLDDfbPHtlpZPEz0e/Uwnl7w51KqCEnYDTpW/Voffp557aqX3Ld5PYPo+uxgWnE8S9S8Oa3Vo1fosIlBYEH5pEH5jgA9kQKR8gzTiQC5AKPkbKQxIFOXYkVQ8Z2lth5XxBJKcKA4uP2Bz66xf5i1/YQ+GZBIndBmvfa2JdE7Ep20l7wePKvyuROxkj/2QCPaMw+eUM6nsNzh9PEsn9D/yRKlGbUVG8iIn3Ot//8AWP4Qtw5qvbO0nP0VW+e2ycH31rjulFSySnCl1dK2RxFYWTC2s8f3WJ8yM5Lg2LAbKEuydnuSgRXBlN3fX+s5tV329T/bBNcreBOaoSBRFBK8JvhfhWgN8M71viZ+20Te20jZqWSe010HMqsi5hF33aCy728nq+jAxDz8ZJH4mRezxO7vE4URgR2CFePcBe9WnNubQWvDtOmr0dxrBKar8OEbi1gMYFh0ik9lwn6zD541nMEY3WosvCn9TI/T9E/8XDKnTh6r8vk308Ru5kjMQeneReg8ANaS+sJ6qu3p8dXPQFdie2yZ3Z0U+J3FKAW+recy/rkDpoYo5oqEkZSZGIvAi32jlZWrMe5rjK1E9kmflKlrk/qopsdEEQBEF4RJljKiOfShF6EWsvN6meEqMKCYIgCIIgCIIgCIIgCMJOoaZkMkdipA8Z16uENi45LP9lHW5RpGb0cymSew0aMY2c5fLFtxeYHUnSjKvEHZ9E2ydhd/6FEtRjOm/tH2I5P3jQZXKfQWxMw2+HtBc97BXvlu25kVsKWPqzOhf+5bPcnO0QqRFDja39m4EdUj9nX/87dcDsvO6EFJ5J4FZ8JKWzrNqHNqXXLc7/1q6B1+VRNF1pMlndqBr70XjJAJHUSWOOpE6CWiRBiEQor/+3AnoQoochZuRzyFvrvPEqBBKU4zGWkwlWxxK4kcZwy2KkZRHzfNqqyqXYMK5yb0IBGmqM76f3cCRcYrTR4ovnr1E1Dc6O5kUlk23ig6ERPrE0z8FamaZmUBIVVO++MCTZdsm3bJQw/GisdOQI2pqCpyjIUYRy2aI151I51b4vwZyCINw5t9qJPxv/UobaaRtkMP+Fh9QtwUgCNSmjGDKBZ1L9oE31vRZB+06rH4qBQLaj3ziwn/QRg5FPx/mNQ/u3HOf/24tnPvZnBPRPcOs3jxf1rwh83FjsOb0UJHtOX0mm+37GRKLWexntVN9lFJu9r2laXv/fkh30nmfN7d+OrNbqOX1Uq/ddxqd+bxG3prLynVG0VIbU/gYjn1lFTXSORV9/TCRoPexCN6L0egunFDD62SSyLjO65DC65DD3XyrXB4bqxwLWHo8x/MLG7yz2M/N49VtfPD7zVu97wWtW//3nfHGk53TT7D1Qw9GZub6fYZ3RSVk+ihPi61uPRTG9/2AQktH73BpF/Y+TtabZc7rr31nl9BtZbaPvPP3uy645hb7L0OTeI914Qf91cZzex8FYn+/ekftf7+h67/2/JXWWsVrQeWlilE+8u8bB1QoFx+LN4wWQZZxq7+8tMe70bUe13XsZSbP/Mvqde0pWvO8yDo6u9ZxuKv1/C+/OT/acHnr9k2zOL/X+3Q9le1eAHmTAlSDZ58ZXHeDGeK337+mqM9x/GZ6MF6lEQNry4KbtEw3QjrlStuf04Hf7/2YVtfdvtpC2ek4HqFq9++L8PsewqUL1ltOW1//pixGZJZ9YNUS3JMy4QmxM7ySsAqEMtqlgJRWqOZ3ikI4T33wuajd7f2+FQvf9a/xCm8kLNspNX8nIZ8HXJOo5ldVJg/KIxshXzvf8jJ1m+OUshJD4toK60PkBujMh7i9KDP9fs5S93vuXrvQfHU3uc0wPw/7HlmTC7jtPP5LUux392gkQT/Y+pvf7rQDQpws1CPofCC/+uye2vGbaPnvn64yWbRJ7ZJJ7DHxZopQ0uTSSppLa/Ds/+Hff6N9WQXgAdnRyai+huz76A7c+4NlLPvNfqzL1k1mmf1okqAqCIAjCo+qjkalqZ9oiMVUQBEEQBEEQBEEQBEEQtrHLv3tyy2uffWsR04pY26NRnVAZvuyRBRrndazZrRVq0kdMUgdMlr9VpzXnYn41h5ZUmLxaR4nL+IqEp8o4mkx1KEbyB2XMvMexuRa7LjlU3u4drAww8mKSzOEYniYhRTDkR3iaRDOj4OgKcgiGHdBMqVw+lGTsq1uD2w/8H1/vuuyKLuFMaUiKRNAO+eAfH8PTFPj0HgAO/jdv0rhgoybjpPeblN6w0LIKeq7zaLn0hkXoRl2DProFftbqXaI2ugSUyF1e890uQSEDBHl0W37odFlW2GVZ3V4b8DO4IR7n3GSeekzjyFIFcz0YqJiMcXpyGKlLIF23mFklCEkFNloYoIcB8cBjyGsyZLUZttocXitzPjHMQixL2UzDelxlJLM1kXnQqmzdNom+dUU/DCdZkiz2W0WytsPzs0t4ksylTJ75ZHZjvW6KSOgWKjRwqs59SN7rtpnuNJWo2xulQfZf1r/DAXSNzer2uR/FsoYhT610Ekx8SaKh9Q+SvmNd2rF1X4Koy7FEbW3dTpK/+TWpSwyd1GUfCbvFVnf5GiKly3GjS0TNnv/7K1teUxMy6aMmyV06WkZFUkFaj8yNogivFlA/a4skVEHYLhTIPtYJ/qyeamOOqox+JkXoR7TmXJJ7dUI3or3iEXkfHTtuOLBI4DcD3EpAe9kjdO74TCJsc34jQJIl1ISM3xAnAOH26BmfqZ9coHE+xer3hrnyO7sZ/uQamaP9k1uFh0fzkkNr3iV1wGD4E0kkRWL6Kznm/qiyUZ2uj+qpTqySrEvs+vk8I59JUTtjE3oRoRvh1QOC1vY7xpzfk+bJD8p85s0V3j2Sp5zrnSgoPJrsmMq3nxvl2VMlhmoun3tthR88MUxbDN4hfEzNmE7T0BhutDm8UOLsZP9k0keVNapijW7uINEbIellj0QpRKtGmHZAvBUwsupy8FynS8jVJdoxhXpGYzkeUswYW6rUymGI6oeYDR/FjVC9CCWIiDUCRmddNC8iUGBxr8HyhEkoQ6oaMLTkkK765Fc9CqseEeD9Qp7WvEvtdAu3sv3Oi7dLrkPyGyqSC2E2ov1kgD/1oFsl3AnbVPlwf54PAa0K+1eqjFXbjNTbjNbb+JJEOWmymolRjemdZxA7fxcXtqFHNjl1UPbyRoLq1E9lufRbRfFjFgRBEIRHjN8MiaIIPS8unQRBePiFkUQ4wAig281OXCdBEARBEARBEATh/tPdgL3XGsScAF+RaBsKbkxG8UJqYyrNYRXNjsgu+Uz8aIba2TbNiw72qk/odhIL9JyC1whoXHCQdYnADiECe8Ujud+kZapIEcTcgFTLx8+rOEWf+JTO0LMJau+3Cb3eSQpOsZN1pfoR1SGN0piObockaz5mOySSwFdlJudsnJhC/3HON4RuRGvOI3XIJLAjPFUm2fbIN2wiCVIHDOw1n6u/UyZ0I9KHTPJPblR6SB8yUQwJ83wFwwspVBxOH8yyPNK/GsSjZimfYjmTptBocXSpxHCzzefOXaOuGJxLjGCpvYNvQ1mmJm9sVymAS7FhEr7NE9Y8KhFZr81CLHuP16S7ipHgDSOBGvrst4qM2k0OV4vYikox1ruClnD/Ze0WJ8rL6FHItUSac/neVVGEW5NUyByJkdyrYxRUJE1CkiSisJMc4FYD3LKPvebTXnAJt45z8FDaqX3Ld5PYPjuflpWZ+dk8stb5rj+qVBf6EfN/VMUpiqIGwuC89YRULaWI5FThjkgSpA81SMxYrP5gmJW/GqN+Lo2WsfFqt3MXKDxIoRN1CumctlFTMrmT8Z6VT2+5HDdi5a/qjH0hzfgXN1cktuZcSm9YOKvb5zxVLMQ4tyfNwSt1nn6/RC2l8c7RPK4hYrOEm8gyr58cZt/VOvuvNXj+VJFvH51+0K0SdoCXD0zwmbPz7F2rs5RNUEuIJPlBuSmZYsqgeABKzU7fpeyH5MsuuZJHqu4Rawdkaj7Zms8MbSI6Sas33lX3usMOJVjYZzB/yARZxg86ia1OQqU42RlsTXVDRuZshlZcEn5E9rEY2cdihH6EW/ZpL3u4VR+vHqIYMkpMQjZkFFNCMWRkXer8UyVkTUJSJaIgorXoUT9jP7xF7WRIfrOTmGo/EeIcF/caO4Wjq3wwPcQH06C7PvtXa4xVWww32ow0OoWVol8dghBCLyKwQ/xmiFsLcMo+zeUIioN/nugL7E5skzsjruIHYC/7LH+rwdgXUoy+mGLlrxoPukmCIAiCINxngR0RGxOjrgmCIAiCIAiCIAiCIAjCdnboco2J1TaljI7uRkystvFVaKdk9r/S5tLzMSrTGql/VaLwdILM4RiZwzHcis/s71cAUOMySkwmc9QkeyKOYkq0FlxS+02ujSb4YH9u02fu/9vvADD0fILs8RhKXCbsEUisZRTShwwq77Wo/PwQ47M2e09bVEY0GlkVW1OQIhhedgBoJRRut/Zh/qk4uZOdwCHl4hpj1fbGxM93glyjoFMRLD6xudRh4dkEoROSXm2jhp0k2xNnKxy8XKeZ0FgajrE42qVa6iOslIrzvVScVNvh2MIa2bbDM/U5Xs7uwZVv/5H9mNdAXS9LKREx3SpT1WI0lK0VCO4HX1Y5mxrjXN7js4tXOVla5koqx6WMqDpxP6Vsm+GWRcLzCCWJpqZTNwxqhslw2+JEeYUIuJzMcSknvpvbpQY+n1yaQ/s7Q0hKpzJqFEX4zZD2FZfa2Tb20kMatCgIwsDGvpBG1iTKb1vkn+xcz9TO2ax9v3lDlVRBGIzfCIiiCC2t0F70+r9BEG5BiYWMf2GF9KE6K98eZeav5Si/3aLybksUWtlm/EbI2vead/z+1rzH5d8uIakg652kGnNYJf90gpmfyWGveUSrbaSR7ZG8PDudYmE0zskzZfI1lxdfW2F+NMaHB7IPumnCQ+jS7jRx22dytc3Map1rI+n+bxKEHnxVZiGXZP9a7UE3ZUcIVZniiElxZHOSb7zpk14IyDccNC8kkCVCRSKQJXxZJlAktKRHqEoEqoSvSjgxGSun9O3n9HWZxX1xFvfFGfmps+g5mcxjMeLTBsaQijnSO943iiI+ypqNwogoBEmRyR5VyR6NEQURbi2gNefQuOjiNXxC++Nuqdsj651z/kfn/tQBg9R+E8kRiak7naurfDhV4MOpAqofkLds0i2Xie+toKYV1ISMmpDRMgrxqc4znJxrwL9+wA0XHlkiOXVAzUsOwaeSJHbp/WcWBEEQBGHHKb3RZPQzaYY/lWDt+9aDbo4gCMIthUiEPceW25524joJgiAIgiAIgiAI95+8nkxZqG2UsfMNiYXjBodfarPv1TazT5hEN8V06DmVwnMJ3IpPe8kjuc9g+FNJrGsuyBKpvZ2gG1e7dcBM84pD7mScxC6d6qn2pmmSAuaIhjmuERvTMIc7/3JnWpSHVZyYTLwRkCl5qP56zIwExWGd8pDO+ADrriY6wTlePaBx0SG5z0BLKZsTU4GF/1rDqwdkjprkTnQSWKvvt7CudQLqE7t1UvsMlDDaNNp9zA2IuQHDFRtfkVkdig3QqkdLI2bwyv4p9lxucsRaZchpsngHVU/njBw5v0U8dBl2LUbcTp91BHiSzJqR5Eo8h6Pe32fbvqzy2sgUTxYX2duoMN5qMJvJMp9MEz6ApNlHwZBlsbtWJWvbKOsJyx+lTt3cmxYCrw5PYemiEsidUKMQIwxAvWHLRp1ja+qgQeqg0QlmDMBrBJTetLAub5OSqet2at/y3SS2z86WeyKOOdQJXs4/mcBvhSx/q057QSQVCncmCsG3QtSUuA4S7o7EdJvdf2OW1351ksLTcVL7DVZfamIvi+PUoybyIfBDghZ41c49fnxKp/BMnOCbSeQfspCGAyTz4R9YwdcV3jwxTKbmcOJshemVNuNrNldOxChP3u5QXMJO9/7BLGPFNgeXqiI5VbgrQrlzj2d42yOpfztqJVVKkwmu9JinULjzgRtu5FbC9djeTl+pmpQxCipqSiZ0Ivx2SNAO8dsRYevWSZ1qRiZ71CQ+baBnFIx8gtyJzuBFUbR+bo061/uEEYET4VYDGhdtGuecu7Iu+pDKxJfSqAkZSdrcFxF6Ec4RkZj6KPFVhdVMgtVMAvlbF7dMl02IjWpIudu79hN9gd2JbXJnRHLqbVB0CbfHKMaCIAiCIOxc9Q8dCk8FZI7GKL1uEW6veAJBEARBEARBEARBEARB2PlkIOxUHh36RAI9q9C84lJ6bWOwufeO5LnY9nnm3TUMv/Og3rQiDr+0kaC56x2b5rDKpd8usuuv5VATCgD5JzqJmsXXLK78uxKyKqGmFKZ+Inv9vTEngCiCmwJGkGDo+SReI6B+ZvPw6rkn4+SfjCOrEoETEvkbAQSuLiFFkGgEaG6Ea0hc2hsjX/RwTJnzR1NEcv8H5cl9BqOfTSLrncD4tZebzP5+mcQug/EvpnFUGcPvBLPExlWyx2MkZjqJjU7JJ3s8Tvb4xvIq77a48IszWHEVV5PJ1l2ydRfNiwgUiUpGBJD2UlM6ibtmdGdB5K6s8mZqV+cPJSTjt8l4bdK+Q8azmbTrTNh1bFnlSiLH0h0kwN6ppm7y0thujlTXmGw1OFwucqhcZCWe4NTIIGnUD5Ychkw068Q9DyQJV5ZZjSew9Idnn863LPZVNhJSI6CtqqzEk6wkE9Q0AxnI2W3SjkPCd3FRuZrK4t9BpV6hw1Z1PswOse/iEiB1KmoEEWHQqTRNCLIpoZoyelZh4ocz2Gsec/+5+qCbLghCF6mDnWozsiHhFH1COyT/VILKey2alx0UU8Ze8wl6BCwLwiD8RoiWUh50M4QdRFYjSq9bNC7ZjH42xfRPZ2kveVTea2HNuhsjlQg7gpKQCdph/wq5EbTmXOwVj32/liX80xQoEdJxm+iijnzMQT5+d5Jl7pVaxuCl58aYWmxy+HKN/e+0KC95XHwy3rdynvAIkWUWh+NMr7QYqrUoZuIPukXCNndlOMOBlSrH5kv8VTomjjc7jN8M8Zu3H+jr10KKr7TglRYAxrBKfEZHMSQUs1O5XNYlZK3zT4nJxKc0EtM6I58KqZxqU36jddufK6mQOmCQORrDGFIhAuvKesVWvzMgWmvexVn1GX45e9vLF3au0AZr1sO/KgatER4c8eRhQMawiqRItBdFJoogCIIgPKpWvtNg4ssZJn88y9wfVh90cwRBEARBEARBEARBEARBAGKTGoWn4pjjGvaKT+hFJKY7iZX5J1TO/rfT6E5IYc3hxJkyuhsyP5Fk37XGpuXM/n6Z1H6D/FMJOB5n/u9Okn2nTmGt83wwCiOiCKqn24y+mCK1r5OsFsigrAeKDlfayEp2U8nC8/+/pxmttDhwaY0PpnMY/yhH4rfnsK52lpt9zESS4dJjcdamDEIZMkUf1Y9IHWqC7NMGzFnIvRyx7/xGYIv1TxcI3e7Rxxd+8ylGqm0myxbjlRYL+Tj2/3SNwvMJhl9IkjsRo/xOm/aSh1FQaMx5yIZE9skEviJTNjQMzydR2Lrs3Mk4z54qAmDrMsWcycqQyVoutiUxN7AHC8YP5C7r4dxhIH/UJWHXH3C0a+neR3M7UucxvR4G14PHu7Xu5tWIuj7dl6loCSpa4vorabfNnnaZnN/iaGON6Vadd9ITWxITo26bd8DNFHWJ1ZO9j96scC41xrnECGNug32NEqMtC7Pl4xhbV6LbstRWl4a0Bwxv6PYVdnlto70dj5cXGXasLZvgYLVMBLiSgqXoVGImS/EUbW2jMm23dRh4W3Z5Te4yZrbkw4niEsN2J+HeVlSW4ilm05lN3628fjyq6Akq+npVhzsc7P1j/Ry6fKbkd5tt64zdtqef3hyRH3apAqVVP0YQabf23vQRC6ksCyezW+bb/Y9f2fR37sk4Q88m8JsiqU0QHiayLhG6EUPPJ8idjNOad/GqAfEJDTWt0Jp3Kb5m9U8AEoTb4DUCtLRIThXuPrcUMPeHVRK7dXKPx5j4Uga35lM91aZ+zibqct0lbC9aWmb33+jckDtln9rpNrUP7Z7vCd0I5acaUFEIz+tE73YGRgpfjT/0yakfmZ9IsjgS54XTqxSWPVLfqvPBCynchDiWCh3n9mWYWmlxeLHC90VyqvAx+arM5eE0+9bqvHh2gfenhyjHtAfdLOEh46z5OGt9Lq5kyD8ZJ3s8RuGpBNljMcpvt6i+1940m5qRyZ+MYw5rSGon4TSKItS4jBLrVEmNogh7xWf5W3X8hrhBFQRhexDJqQOa+NE0URRRuekEIQiCIAjCo6M152FddUnuMcidjFF5V1wXCILw8AkjifBOo80eYjtxnQRBEARBEARBEISPL3XAYOzzaQDsVY/Y2EbwUCR1EoueeK1CrB3iqxK1pE6+7pKvdxJDF0ZiTK52+vl2/fU8rQWX+lmbK39rFCSJ009m+OyfrV1f5sq36kTeRrbS7K44K2Mm0XpCphNsfvwaa/tMX6uzZ7WTCHt0rkIgS6hfyjD/J1XaCx7FVy3GPp9m3wctdp9tcfVInJUZs7N+N+RZ2btgaRIy/y+HxEwnMVbqkYf19IVVRuo2tbjOqV15VrNxDuYWaC96yIpE+rDJyKeSFN+waK9KpA+aqLHOApUgJN9yqMV0Xp8ewjEk8k2H0WqLocbmgFbTDZlaaTG10uL9AzkWxhLdmiPc4GhrGYCaat6T5TfUGKdSkxCGHLeWKfgWn65coaJ2ApNdWeViYghHucfhArLMUiJNW1V5urTItFXlojF0bz/zDpm+y7BjYcsql+IFqmoMiYh46FFwLDK+TTz0yPlt8o02exsV1sw457JD2Kre/wPugt31MiO2RV3TeWt4PdlYdJk9dPSCQuHpOH47ZOnP6g+6Obdlp/Yt301i+2xDEhSeiZM+HEONy0RBhKRI2EWPha/XHnTrhEeAVw+IT4oEB+Hesa66WFddjBGV3OMxhj+ZpPBMgvpZm/p5G7fcZdQTYVvwWyFevZPgbuRVRj6TQi+oVN5u4Vu3TlSRZKAQIKXCTQPhRAFI2yS/M1RlTn8mzdSZFhOXHE5+p87l43GK630hwqPNV2VsTSHmiuObcHecnSyg+yFTlSbPX1qmNa/w0uNjhKqooirchhDKb7Yov9ki91Sc/BNxhj+RZOjZBIEbErqgxDqVVmE9KTWMkOSP/o6wZl2sKw71C44YNEm4L0RfYHdim9wZkZw6gJEXU6hxheIb1h2NPqB2G9b0Fqb0ym0te0hr9J9pXSsY/MbsdpY7rZUGnheg6t2bkWr2xtb6z3QDWRr8uzSlwUtcX9O6DB99C3U/NvC8ACteeuB532b3wPN60fxttcOOBu80DRj84jynDl7C/kR8duB54fa+wz8oPTvwvGHXYZBvbV+uOPC8y9bg3/fe5OC/w2OJ2/u+i35q4HnPNscGnvdceeS22iHdxtDMbxR3DTxvXBu8IvbNQUX9vNuYGXjeojf4djblwfdnuL3jXVwefHucsSYGnnfBygw8L0AYH/zCLhPrPSrgx/HUO1u3XRhWaf7mCCM/ZrD331jXX3/rCdEZIQiCIAiCIAiCIAiCIAj3W+rAxvMvc2Tz84vTJ9PMXGlhJVUujujYMQXH0chXHSZWWtRSOjF783M8xZCJT+qMLdhUC52Es6VJk/EFG0mWGP/hDLUP28SnO5+1a7bFrtmtzze+++woo8U2hy9vJCbZqszV0TS2pnDyagk1JjP0fILMsY3nRUoA+063WJk2tlQgBUCFpT+rs/9Xh4FOEEs3iV06I/VO36kShjx2rcLjs2X4mRwAgRPiFH3sNQ/rqoMak8mf2HiG91G8aqbtsm+lxrv7ClwdTXN1dOPZhWp6aH6I7oVMrLTYO9/EE0FbfR2bX2PYs6grBktG9t5+mCzzfmqCnGvxmLVMzt8YcDHvWXyvsAfke/+dVY04ITDRrhPUJJKeS9z30MJOH3xbVakZJmtmnKph3pc2XReG5N02x6qdhOFT6XGsG5KGHfRNVWkJQ5JKm6PVNYbtFiPL1wiQsDSNkhlnOZ6koen3ZB1G201C4LXhqfu7jYSBxaY0Jn+080xs4evVB9sYQRAAyJ2MkX8yQe1sG2fVp/B8AnfVZ+kvt1fyuLB9+Y0ANaEgKZuv3eth/0FK7LB3fFbR7x9X1Ao//iAatT7xbYbcu4rU05mrfT/jfKt3vNG42T+ZvJnuHRs5SIzXuWrvWCY/7L+MZbt3/M81Ndd3GfvivePLfuHs4i2nOTWdlXeGMHNZ8k+aDO2vkJmuk99TQ094XHttAqsY483/MeqZ4Cg8eJEPV3+3jJqUKTydIH3YJPtYjOxjnd9k7cM2qy81t7zvzFOd3+TEj8ZJ3BBCV/yHBsWXLRIv9f/s5yZ6x2YeTi71nJ5XrJ7TARJq7xi1N5emubg/zUrB5fG3auw91SKz5PPBydT1+yHH6R3Ll031LzqQiPVuh6p8/N+J4/fPCp5dzfecfmWh/0BPUbtPbKPef13imd7brF+yhj/AunI22XNyMNE7NvKpC6uYXoAVU1CS3ectL2T7NkPy+sQnZvrHaGazvff1+vn+x/wLfbaZqfdvRz7dO/a6qffPH9hb6B2D3O8cWI33j4eP5Xpvr2qp974xiOzQ1uPizeqXs1teOz0yytl8gaOrRSYbFkeuVflg761/lwPt631EfX5PpXr/AQDDsPcywqB3O5eq/a8nNbV3Hoyh9S/X7mq9r2trzf7Xxsl47wrglf96oO8ybK/3cbLfdwJQSPT+vUlSxAqwEobkLwXkrvoojoQSQKBJNIYkPhjNYyVvvU10vX/u0XzvUzFB0Ps3q6r9zwmZeO9zQlzrf3yaL2d7Tu+3DwPoeu99zHX7/x6jPscw3ei/LsfHem/0ptf/WHtprff53Ff650pc+b0Tt5wWtmz4lT/uuwxBuBdEcuoA0gcNvEZA5a3BE+cEQRAEQdiZopoMSIRNBb+koBbEKGyCIDxcduqIVjtxnQRBEARBEARBEIQ7l9itM/q5FIohE3oRbsUn9CLKb7cwRzRCNyQ/bZJs+Jw7loIInv1BZ5DYy9NJVgsxDl7dnJQQ+hGB0wnKGF1yOHcsIpIlzh9Lcf5YiqmfO8PQCwlSB0xkTcKtBfjjnWDvUAJPk8lVO0EMn319hbcfy7M0HGM1EaeSMGgbKiO1NsevlmgtuCT3GyR3G9irHuV3WjR/bQLFj/B1qXti6roogMAOUUyZkReTLP/FTYPOSp1R1+sxDTmKCJGwNZm4G0AU0bjoUHy5yfCnUiT3GmSOdILHAjdE0TcHaXiyRM6yefH9BZbyCRxVQQKapkqjoNJIqLi6wvm9Gc7vzXTK1Qq3dGSxyHSlgSVrvJWcum+fW9ETfM/cd/3v3a0Se9plPlm+yoXEEFUthqve24peq2aCMdtif71CBESAL8lIQM6xyTs2e+rV66+3VJW6YVA1YmhhgBEEaEGAHgbIUYStqCwlk1RifQL1wpCsYzPeapBwPdQoRIlClDBCiSLUKERab8/FVH5TYmpXskzNjPPK2C5Srs1Us0bOaZP0XNKey55GdWP9ZBlXVmirGpam09B1qoZJW1XvKLlUC0NCSRKJqQ+pkc8mSR82IYSF/1rDLW2/50c7tW/5bhLbZ/tJ7jFoXLRZ/U4nSL1+1iYSuVjCfeStF8JQkwpebfudG4Ttx8i4zLy4yMHPXGXuzXEqVzJc/KvdAOhxD6+tggQzPwel1y1qH9y7AeGFu8Nvhqx8p0HtbBtzRCP/RBwlJpM5GuuanPqRle802PtLnSSJ1mKnwu521MjpvPJigRNv1Bhac/nEd8u882wWOyHC33eqeNvl4GKNWkLnykhq0z1wouUyWmvTjKu8cnL4AbZS2Il8VeXUxBgT5y6RbN1eARlB2EKWKR+QKR/Y2udqle5tP6wgDEr0BXYntsmdEVfnfcgmSLKEdbX3aAuCIAiCIDwalFyI/kQT950Erf9UACNCmXDJnvBpzbvbMthAEARBEARBEARBEARBELabxIyOYnSC05a/Vd8UZNle8Cg8l2BkrhNk++z3O8lwH9k71z14M/IjgnZI45LD0o8XrudZSmFEptJZZmq/SXvZIzaqEnohHxzL0EhvBJN4rkqm7jJSalPKGlTTOvFSSM5y+OTZZbSgE5yuT25UMDJHNPxGSHGy/8jaH3FKPvFJHXvFR03J6FkVPasQm9CITWgohkzU9nBUGVtXsWIGl8dNRn/nGoVn4qQPbIzQba95lN9qYV1zIYTlf34COYpIOB6PzZeQASKYKt1U3WC9kMpLz4zSionHzj2FIY8vFJmsNmlpKq/HZx5oguHVeAElCpmxqxxvrACdZEpbVlmIpZmN5+56+07nx1mwWwQK1PTN1VEjGZKOzUjbIuvYJD2XlOeS8Vymm5uTrz/6LUvAlNXAUlXeGZmgpa//psKQkZbFWMsi49iYgY90w3sjIJQkQknCl2QamkHJiLFiprBVHfk2Yg8busmZvHl9HVKOzUjLIum7xHwPIwiI+T4J32PY3hgI+6PE1bIZ42o6S9XsX12EMCQW+Ih8qoeP4Xvs/pt5tJSCW/WZ+6MKocjxEISHhpZRNl0nisRU4X7zGp34AS0ti+RU4b6S1Yhdzy+y6/lFfEdm9ewQ1bkUk0+soCdd/vL/coiRT6cI2iHNy9szafFRYy/72Ms+1VP9q4ECKGbnnsurByx8rX/14YdZqMq884kcuy422XWpzbPfr3DhSJKro70rFQvbw0i7wa5mFU9SUKOQzKKNBExWWuxaa/LSY+OE630IOctBAi7MpAlVMXCTcG8EskSuKc6NgiAIgnA7xFPCPkIfoijCGBKbShAEQRCEDvNZC+1AG+etJP68QXDFYPgT6wEoQYS96jH/JzVElIggCA/CTh3RaieukyAIgiAIgiAIgnDniq9ZpA6ZyIqErEtoWQVzRCW130CJy5hDGqU3LSrvtkjsMpBVidi41qlqBwQyVLIG9ZRK+j+uQhjRuOTgr1c2Mt60ODqtE5/SiY1ryJqEv0encqpF/Uyb4U+mSO4xeOb18kab8gYf7M5SSRhUEgappsvz76+hhtGmtpdTBnNDSUzX59BCJ0B05f92kHpja3Lq1W4r/5vDDF2oEq97aD+cY0+zk00XSlBL6yznDEo5g0rMIJI330/P/3eH0d2AE+fLDNU6g/OawxrKL4xy4Uin4oSshoBEA4PS5BhDZZuM7xDKEq4h42sSiYbPzOUWkSQRIvWsmCop0ZbXopaydb5g6zKiLu9lkC6CLm8b6H23N+PWd3pb3zt1rcXRxgoqEZas8UZqhmjQxM9u6zHI2wZY/KXEMFfNPGNOg3jokgxcMn6b/VaZfVYZW1K5ZA5R1FOEXR6VR1u/wq6b7sbvtap1qpzK/tb52sSYNWPMflS4NALd98h5bVxZwVFUbFm7HpCqhj6HGmuMOk0+uXiNhmpgBj5aFFyvhBogUVcNynqcRTONreqbP/Sm9krhLdbrJnKX7xmgRYyr8RsSTT/6/sIQM/TJeDYpzyERuKT9TiLraMuipaicyo3R1DeqtuZti5F2k0TgkfIclKizsKIZH+j7vVs+Tpec1O3n2+W1rp/R5bXwpqISkbb1IUy331a3z+ymWzu6vXf3P37l+n+njxiMfDoFSZnKqRbFl62tb9hGdmrf8t0kts82IXcqpsq6RNAK0Qsi5kt4cPxmSBRGaCkFEBW4hAdDNUImTqwycWL1+mur320i6xIjL6YwR2waFxycUpcLdWHbktb7A7S0gmxIhM4d3mA+RGb3JykNG5x4o8qBM03MWsjZg5kH3SzhY8g4LY5XVja91jA13t43xJ6VBjPFJs+dW+H8RJYj8xXC9f1633yD1ZEBBnoShDtg6woJW5wTBUHY+URfYHdim9wZ0fvWjw9uOcAc0zDHVOxlcbEhCIIgCEKngmr8C3UAQhfO/qxBYlojMWNgjmlMfyXL3H+uPthGCoIgCIIgCIIgCIIgCMIOFToRc39YYeqnsoz9UPr6660FF68W4pZsogDSh0zcSoDnR6QObSR/Lo7FsRIqoSwRbwREQURsXCP+tE58SkNNKIR+RHvJo/SmhVcPkDWJwjMJCk8lurZpqOxwwi3zyolRAAo153piaj2ucWEqQylt4qsyUShBFGGZGlIUsZqNoQww2p1uhzz5dplAkWiZMrof8t6RHLW0hm0oIG08NI+6JHsCuLrCm48Nkau7ZJouUQQr+e4BfZ4mszQap3pTZdTSiMG58Xzf9t6RMCTlePiyRCuu9Z//IZRsOxxYqzBstVHDiBC4EB9iLp570E3bJJQVFmPZG14IGbfrTLh1kqHDY+1lKm6NtqLRUjUsxaChGnjy/QkzcFWNFbX7PuDLKh9kxrnqOTxeWyTlO/iSTEWLsaYnWI6l8O9TO/uSZWxZx1Z1Vm/IQdcDj/1WiVG3wXPFeRbiKc5mRzlSWWGy3akYGwG2olJVtU6l1VT2gayCcBMZJr6cIT6pEXoRi9+oiVgSQXhAtIyCOdY53kc++M2A0RdT6LmNc4CaHGDkAUG4VyLwaoEojCE8lFa/02T4k0lSBwxyJ+OsfLtO/ZzzoJsl3CWetVGteforWZb+vI7f/Hij7EsNCeWqQoVcp/tBjkACSY5QEgHmhI2avrfXxc2MxisvFnjq5Qoziy2SlsebJ/Iw6CBQwj2TKbtML7ZpJFWWRrv3nd3sSG0NgB+MzFwfUMqZ6AzmcHp3gbjjM9ywee7C6qb3JS0x4INw78hR1BlvLAzFsUUQBEEQBiR6PXpRIP9kHDUpI0kS2cdiLC83HnSrBEEQBEF4yMg6tOc92vMexVdaTP5EhtiEBgoQ9H27IAiCIAiCIAiCIAiCIAh3wC0FXPm3JdSkghKTCNoRXi0g/0ycwlMJQj9CkkBSulSzXGwB68X5Pr+R3OoUfRoXHFrzLvqwSuagSfaxGFp6a1JD+Z0Wb/2f9gEQb/kkLJ/iDVUTfXUjeGl2NMVKPr55AZLEUiEBUYSynsSq+iFDZZu47WN4IYnAQfMiQkUiUCRcU0KOYCVnML5mY+syKcujnDM2Jab2E0kS5YxBOWMQPaBRoFNth5zlkG07JG0P0/PRgxA5ijYqX0oSxWSMs+M5LFPvt8gHSvd8jsxXGGm00MJOwK+ryCwbKS4mhgjlbZAYI8ssG1mWjSwZv8Vxa5Fc0CYftMHdmM1H4moix2yi8ODauq6lGrxa2LPpte0ysLmraHyYHuOinOPJ0iJTrQbDdgs9DGgpKq8NT+FL8vVAyEGqugr3njGsMvnjGWRdor3ssfAnNQYYW0AQhHug8Gyc3Mn49cpwH3HKPrN/UCbyI6Z/Jkd7SSQvCA+WNeeS3Gv0n1EQ7rPQi1j5TgMkmPnZHMn9pkhO3UFCO2Lpz2uM/3AGPauy6+fy1C/YNLvMK7dBtkEKgQhkRe5c44Yg1STkVRm5JiNVJVCgFU8SRUAoEUUQeTKR17lvGfrSCvlD1r1dN1XmjU/lOPpmg6GKyw99f5XTRzKsDotKmg9EGPL4m3WyFY+PrspGSjbvHd3oM5heaHLwah0ljAiROv8kCSMMKOux64mpN3t73zA//O4cEvD+dI7lXJyZYpPSyMPdRyRsb3MjCQ7N1TkyW+PMnodroDlBEARBeFiJ5NRbyD0Vp/BUpwMz9CIalxyWvyMSUwVBEARB6EMGNbEedBY92KYIgvBoCiOJcLtE4N2GnbhOgiAIgiAIgiAIwscXBZ1KRF7thte8Tsdc5EfULzo0LjqEXoisSRT/+71ofohhh4yttklZnYoec39cwS0GhOvvHf5UkuyxTlBj6Ee0Fl1qH9g0LznoOYXhTyevJzqk6y6BIrE2bOK7nb7BmO1z/GIFAMtUb1mZVAojPnFmmUzLpZrSyTZc5AjC9dtgqVOEBF8FT5fJrYVEwPiaDYDphuy91qSR0FgZ6R2EaTgBpuNTS+oDJbJqXojqhxhewPh8i0zFI970+fBkmlr+4wUBvnh2joTb2fbR+j9flmlpKi1dpWHq6H7IcLPFaKPzz1UU5nMJLo7mNiX+XheGqCGoYYgShKhBiBqGNAwdV7/3j8WfmF1jqGlfX6dKzGAhm6LipLZHYupNamqc72f2AyDLPknfIRm4JHyXUbfBfqvMVLvGh6lRKsZgFVGE7mxV5+XhGU6Wl8l4beqawduFcXxFhHM8dMKQ6Z/OggRrP2hSO20/6BbdVTu1b/luEtvn4RGf0ck/maD8TovyWxaEYI5pGMMqtffbROtJ45d/u/RgGyoIgDXrkns8jl5QcEtidGvhIRRBFIkAl52oednlwr9a48DfHQY6XQGSA9GN+fIhjP7xemLqdRszRFJEFIuIkhHBwQD/mM/u8SWiCFb+aBxnYXNfhF9XaS7Gaa+Z5A5VUc17NJKLLPPOiQKTCxZHLtY58UGVatri7L40jYxIXLxf9pxtMjHfRgmgllM5tTfPybNlxoo2yukilZROoeZSqDoEskQjrhJrhehRSBhBW1F5Lz9+y+X7qswPDo+RtD0WhpIAXJzIosTvbYVe4dF2aSrD3sUGU2uWSE4VBGFHE32B3YltcmfE04wuhl5IkD0eI2iHrH6/iXXZ7f8mQRAEQRAEYPorWfSsSuOiLUbKFgRBEARBEARBEARBEIQHoPJuG+uaS+aISeqgSeaIiVsNQILcpc5gtJoXYnghVkyh9Vc17KXNQW1+KyT0ImRNQlYl4hM6RkHFmnVwKwELX+tkwyp+yHNvdZIezu1PcXkkDZKEo8mc25WmltQpJmNMrVnkGg7v79tcaXKyZJGzXGaHk4zWWsgR1BIa9aSGYyiQDkCSKCw55Io+dkzCbEecOpLDNmSyNRdPk1kZNm+5PdJNlz3zDcaKbWTA1hUacZXF4TiLI5uTCqUoYmrJYtdCk1RrY5sECijrcfTRbVRo7UZ3feKuT83UOT+apZww8VUFKdi63EiJiDkuh5erjNRb7CvW2Vusd6YBN77jVq36KPnVURWapkYlbrKajlGL6dcrUt4Nb+0eZu9Kg0KzTcrxyLUd8m2HiCIBEi1Fp6gnuBrL3dXPvR98WaWqq1Tp7C/nwmEOtteYtOs8UVtkwUzjyQpIH43ZKF0fu9GXZCxVp6bFCLfZet9Xssy7QxPX/xTxLw8nef1/vFqw4xJTBWG7kdZPKXpWIVq/ZGkverQXRZVU4eHTXvII3JDkLoNyqfWgmyMIXVXeaTH+wxli45qoOL3DSOrGzUVqv0nqP4O1H7wsBElwCxCYoN5weLK/bKO9qaGsKkiRhNSSoAXKqoJ2TmMhO4U5aeM3Ng/EJGkh1ZcLVOn0fVQvZNj1I3PoqXuXSLgwmWBlJMbJ02VyNY/n3ynh6DKrQyZBIcLKKLQy8ra7D98Opi9azMy2CWS4ciDO3N4E7bbGqyeGeeGdVYbLDiNlhwhoxlVeOTlMqMp86uVVVD/kpdHdAw3KVEsa1JKiArlwfy0Mxdm9YjFUaVPMiarMgiAIgtCPSE69gazD2BczxKc0vHrI7O+XRVKJIAiCIAh3xCmKEdoEQXgwIiC8ZTjm9iXG6hUEQRAEQRAEQRBuh1sOeO3vHyBbc5hebOJNyUTyxv1yIEnUkxprBRP/iQmSLY/RcpuY46N7IVEQ8vpkiuc/LF5/j2LI6P9oN6f35QEwbZ+955rXpx+62CD2z67hlDb6BguaRPE3T/L45TIAF6bT2IbKoV99i9wTcbLHYzTmXNKnWugn4ry1d5jl3EbC6MFffQM9pxD/QhoKKmY7Igwidv3hItVTbaBTz+QQoGUUjGEVWZOIgk7lWKOgktij49VDiu+3iI1qpA6YmG7AcNVh7DevgQRqXEaJy8QnNfSsSmlM4/zBBJ4hEckSU2dsslWPalYjt+aSX3Wpmj6lrIGrbwSjylKXO3ht858TaxYScGkoy1qqU/VCClnP+tpMCiVszeDd6VEARuoW49UmphcgERFIMqEsEUoSgSQRyBKBJBMoXJ+WdDwybYe45zPUtBlu2hxcra5Xa5Voqxp1U6cYj7OWiOF1q7Iqd1mvm7pfAjQu5gpcXC+oIIcho02LqUqTgtMiHTik2g4L6SSOPFhQpXTzs+puzejWaTJgR0rXtw4SQSDLXIiNUlSSHLeWmLLrA31WS9YIJYm2rFPS4rRljYZiEipbv/ywWzu6dHkNmsQZ6lvXVupSuKxbkvQgoi77b6Rs/cxu8w26Xl1b9jG+/3ut67oOKOy2Pc3NX5ha6/Zb7bKsbh8w4Nd8cwGxUJGxrrgk9xrkTsaovNsebEHbxE7tW76bHpKf1yNP0iTyT8YJ3ZDy2yLRT9gGQrCuuGSOx/DbIc1LzoNukSBs0bzsYq96FJ5PMP9fqg+6OcJdFHkRc39YQYnLqEmFzM8mMRcgfqn7/WQkA2onEfVW/KpOs6qT/+waqeONjfdGEFgKccvHbWgsfHeCD//tIYZPlBh9eg01dm+qR/uazJtPDKHbPocvNRgu2swstmBxvV3r87mmxNxRk/KkSHS8G8L1xGc5hPyay9zexPrrMt9/Zgzd9ok5AVZCw1c3btai9XsOXxIJw8LD6/xMll0rFscvV/juCYNQFfurIAg7j+gL7E70/92ZRz45VR9SyZ+IEZvQUOKdCwdnzWfuj6oiMVUQBEEQhNs290dV9v+dIZL7jR0XlCAIgiAIgiAIgiAIgiAIDzNJhfi0jjmsYQyrDL+zSilrMFRx0P2IZkzlylSSdkzlqdMllLDziNlVZXQ/xFMktGDjsfNwrRM0HgGhBEoEKcvj4LUayZbHWHmj/29uKMHsSIrR0lqnLZrE1E9lMIc09r06f32+TNPF1hXGvpgmPqVTP2NTea/Fnr9VgAgmytb19shRROqQQf7JBHqmExRafK2JUVDJHImRObJ11P7Qj/DqAZIiIasQtCNWX2pSP2tDBCOfSm2af/TFFFEUEbQjQi9CkuHqkRhWWmH8ikO67HeSV73OdslWPbLVThWdXWwkgxSzBrOTCapZnaBPsFah0qmasZqO95yvm9V0gtVEsv+MXSNsJQhDMrbLSNMi23ZIui5J1yXlukzVm9e/a0dRaekqddOgFI9RSpm3XfVT932manUKTqe6oqVonM0OYav61qTTbaqiJ3hJ34/pu8g31Uz9KKRFlQLGnAZDroUZ+khAMnAZ8TqJ3R8FwEhE2LLK+fgIFT2x9cME4SGx9Od19v7vChSeTdC47ODXd8gPWhC2keQuHXNE49p/qogBg4Vto/iaxWhMZuTTSQpPx3l7di/qcO/9d8VJ95x+uVHo+7lqnwvPF4Yu911GXHF7Tp9v53pO77ceAHtixZ7TU0r/iuXfXH2s5/ST2fme0wEuykM9p+tK/8S6lq/3nD6h1fouo+6bPadfjEb7LmNcr/ac/t+cv7Lltcq1FO//pyP81H+tMnSgwr8+uKfv5wjbg726cbypnd7oy9BzCvFpHUlmc4zT/weUuEVsXENWJew1jygALSWjphQiP8JvhVz4V0C0uZ/hRpJWJfd4DL9dYOnVAtX32jSvOni1gMhv3PJ9AJN/1f+30m2ArNYumA0V1BZoZdBrEVojQmtFmOWI/W+3qdZtik92RtIyld7HYr3PdICM1vsY1Q60ntMBXrnU+/cWef37JPoNtnTz4DvduE7vtvr2RtrBuUyctUMJjl6rkK16HHy9yTsHCter1Nqygh2jE4t/w6lkfrfBkYsuJ5153j6e21LVVpnv31+kZXoP9KDk+p833HrvJGWp0vt4DlBf7T3PIANgOVbvZdjl3ucEALTeX24qb/VdxIcLYz2nh+6tE9aBW4yettlYtvfv/uTRhb7LeGNxpuf06sqtj0kf0Zze34typbPNF2JpJtt1fuSNBZqqzunsGC21s9/YY72PDVK8/7EjHu+9H89kq32XcaWU7zk9Uj9+n0XXwQhvYGj919U1e1dlT5r9B295eniu5/Rlu/93v9DM9Jyuyf23lxP0/i3UrP6VdhOx3tfXg2zTfp+j672XkR5gmzfs3sdJr8+2AFCU3tt0LNvsOR2g6fRuhzrA99ayex9rE2bv7wTgcrX3/Zep9v/eRjO9j4OVVv/9p233OFcPcCwWhHvlkU5OHf/hNIk9nQNN6EW0Fz3Kb1m0F0XHpSAIgiAId6bwdBxJkmheFKOdCoLwYISRRDhoyYhtZCeukyAIgiAIgiAIgvDxxCY11ESn8ocal8ke23hw37zqkLR8sg0PK6ZyeSbB4cs1jl+oUk9ouJrMBweyGG7AxHIbK6aiuwFjFZsIsHWFM7uz1BMaMSdg/3ydfN0h13TJNTcCFRoxjVN7ClSTnQCJUUDPK0x8OYOW3AjOiOgk68lRxMkLJRK7dBa/Uac15zL6uY3AmfFqi/HqDRXAPpcmWo8e9K2AxC4Dxbj1PbKsSkRBhDXr4jcC/FaIdc29PtTzhX+1hjmqopgykgyhD+15Fz2nMv3VLJIksfvMrQfd81WJSk5DDiHR8DHdTuDHUNVhqLrRJ+qqEt/55HjXZRhe2ElIvM1kz7tClqnFTWrxTpDZR7H6uu8z0myRb7VIOy6m71No+Qy1bPaWa9eTVl1FuZ60Wk7EKCZiW5JxE47D8ZU1snZnezRVnTPZYWpG/8CS7cpWbx3cEylsSjaVApDDgCHPwgw9Mr5NPPQIkUiELieai3iSghKFRBJcjeeYTfRPvBCE+2n+6zVmfjbL1E9mufrvyw+6OXfNTu1bvpvE9nlwUvsNUgcNnGJA9ngMu+iJxFRhWwlaIYvfqKEmZMZ/JI319TyJnyijDon9WHh45GYa5HbVuPKDKQr7Kg+6OcJ94FYC3Er3PoCgtbXSs1cLgN4JRjeKvIjyWy1qH7TJPREn90ScwjMJoijCb4Q4RZ/mFQdr1iV072IyhSzjJ8FNSFjTN7zuh+z+pk/mYkT5aEhoikqIH1c5E2Op4JCZrzFeaZN/Z5HvnpjYVCn1ZnNTSSZWbIYqLj/0g1VWCyaXdyVoJfon8QrC/XQuM0pJj7PbqpD2HZ4rXuNyMo8vKSzbOpbZP4FZEAThXpCDiETLJ5KgbSp9Bwy9FdEX2J3YJnfmkU1OHf/hNMm9Bk7RY/FP6/hNMZqlIAiCIAgfX+axGIEdiqqpgiAIgiAIgiAIgiAIgjAIGcxRDYlO8qW3XoFOMSWUmIzfCgmdrQGK5qjK1E9kr/8d2Juf9S3/RZ3S/zzJyQ/LyGHE4csbFTeSlsf5vWnkMOL4+SoAhbqDL3ceOF+eSFJJmzx9tnv1nmLaYKUQwzJVWqpOKG88qB56PkHuZKfCQ2vBpX7Gxv2b46xlTJ46X+KJC2VsTWbl2w1ac50k19pZm/iURmMkzlwhwWitzWhto39RkiRCP8KtBPjNENsNaVxyCN2I0IkI3JDQjYj8CC2jEJ/SSR80UBOd5NjKuy2qH7TR0grmiEpqv4meU5DW291e9oiNdQIAq++3uPwPxlC8iOyaz/hVG/2G7a/6EcNrLq++kKeqdpIt5SAkV3eZWm4xvtZp91rh1lUdmjGVTMMl5ri0jYcjiMtVVeazaeazaaIb4jgStsuQ1SJn2yQdF9MLyLccCi2HPeU6EZ28X1dVcJVOxVsj6FRTqhkG748OYwcDVLh4xISywqpxQwWt9Z+QGvocba6QDmxsRUUPffZZZQpOi9PpMVxNBKoKDwe36FN9r0XuZIKRzyZZ/W7/Kg+CINyeyZ/K4F6LkA0ZxZSuV4xPzEDzssPKd3pXGxGEh5VvhSx8vcbB/y6N9Sd5kj9RRhEJqsJDZM+n53j73x9j+YPeVWSFnU1Ly6QPm0iK1Ol7cCPaS3c+MERgRxRfsSi/2ULPKWg5BT2rEhvXGPt8miiIsNd8/GaAb4X4VkhwLcCPSZ1/CUC6C0kCqow1JpG5EiH7nYKewsd3ZaRzfx9zAmbWmrz47iLfOTmOr966ot5rTw2xe7bJnrkm46ttxlfb+KpEMWdw0VSwjN5V8gThfinGUhRjKbKOxROVRfY3OwNUHToL780MsZDvX61TEAThtkUR8WaA0Q5BglCGUJHQnZDsosXoWpsbi9LahkwxZ3BhRPSfCw/Ojk5OVb490fX13PsBiQ9D7Bws/vU4/P04T2Xnb2vZdjj4D9fyB79IXvHS/We6wZHY4sDzXgxGB573tdqegee9Zt7eSLVpdfBknd1m94f+3Rw2Bt8WAJfdkYHnPd8eG3jei9bwwPOOmfWB5wUw5cFHnfrG0rGB5z2fHnz9AE6mrg087+3s/7czb169vQd815zB99P3ipODtyPW6j/TDW5nJIW0YQ88b9UbfLTtA8bywPMCpJTB2/GtlUMDz6vIt9e94/q37qy4Wc2/N4Eefnh7I4u8vTr4vuQMDb5+Te/2Ol/KdqL/TOs0JRh43pY3+LnQ9m7vkmOt0f0c3k3SHLxC6duLU7fVjtj04MddsJB1kDVpy8iBgiAIgiAIgiAIgiAIgiBslTpoMPxCEuWGShXL324wdkMl0SiIaF52cOsBzoqP3wopPBMnCqH0pkXh6U7/p2LKXP3dEmpSQVIkogBqKR0rrpKvdZJAfUXi3SN5LFNhernF4csb1e5ctZNYeH46TctUNyWmvnx8hEzT5bErVQByTZeh+uY+QFtTWM3GSOzZ6L9d/EaNKIALe/MQRbx8bIRAlmjENQ78y5WN9y55XP29Mt7/OESm5W5KTAVwij7F15q0lzyiPnGg9opP47yDkpDZ+7c7z0ZyJ+PXE2ZDP6J5xaF6uo3fCJBkidHPp65v62A9EbWVUWllVBb3mxBG6CWJZN0jbgWYToivydersYaKTClnUsqZvH+0f6WTufEEU6stdpXrnB1/uAOeLbNTBWFW3rxeccdlyGqTbTmkHJeY65MIfEIJ1uIxPhwZoq13Em9V60G0fHvyZZVT6c6zlVAFwpAnqwtkfZtPla8SSBJNxWDNSLAYT+PLOzrcQXjIFV9tkdhtkD5s0rhg014UiUWCcDdFAQw9n8RrBgStkMDpVIOvvtcWFVOFbS90IxI/XsH6ep7m19cTVAtivxYeDsmRFsOHSsy+MoWkdO5phUfPyIsp4hM6vtXZAWRDRlYl6udtah+0sVf9630CkgyZYzGUmIxT9GnN3boKauhF2Kt+5/10+lWUhExyt445oqEmZIyCipqQkV/d2PmscYmVZ1VC4+MnqJrFiFAGPymqpt4toSpzaSILgBVTOXKtyhPni7xxtHfM+tVdSa7uSpJoeuy5ZjFUthlbsxljHl+SWEvEOT0yQiiL70p48KpGgu+O7CPntpGikGP1FR6/VmSm2CCUJeZzSRYKIlFVEISPKYoYWXCYnG2TbHS/ELdiCpd3pSjndIgg3vZJNX3GVttkF+ucvc9NFjasrq7y67/+63zzm9/kypUrhGHI5OQkn//85/m1X/s19u/f/6CbeE/t6Kc16bMB6cshigNSAFIIRJ2BVwMDFn9o8EQgQRAEQRCEvtb7wmLjGlpGxquJMfYEQbj/wki6rQExtouduE6CIAiCIAiCIAg7VfvP9kAUkVwNyM/6xMsBriFTGdWQA/AMiVTZp7DksTxuML+rkzh5/K0a2S9lwNnoV5MUCS2tEJvQUJ9ScGs+Sl7FMWUK1ub+N/V/GcOa6Dz/0xohT/+zi+SfiF+f3jrT5tjyMsaQirRecaM17xCfMqDksfyWxdiETfqwSWvRxbriYl1zGf5f1wBY3K2j5xSiAAKnU9E1cCLUuMz4F9PMrDUho7Dy3Qb1s/b1QM0Dv/T2pnbePGSoMaQy89UcLFRwKz7k1C3TJ38se/1vt+rjWyHtJY/GeRuvHnL+t57evC38kNiVEgDllIFlalimSltViZ7ffI89VWlw4lIZSZEoPJ2g8O06jYTK0kiM+ck4viojJaCc2DwwpNQlNiIa4P69ljYIJRhutjl7w+yRtDV4VWLr8iKtf7+r1K0d0dblR90eF/fPr6Vl6FwzdK7le83VWZCX6bJewdb2Sf7W1+SbchS6bXOp2+bosv5dNm/3de3yWrf3DrCZus4YDRhT2ll3mXfT0yR9mym7Ss5rk/Ftsr7NfqvENT3HxfzWBOdQG+y77rabyN3W7KYZuy6/S+RF159D1y9iMF3feYd9ZgPvDx/HXe7OUxr94zsG3b+6vrdLe7ttpyv/7BPX/3vB9/nMwlUmvpTh0m+Xtn3ppZ3at3w3ie1z/yx+vUbRbBM6d/vgJAgPB9mISPxYGetP8jS/mSP9c0UkXezvwsNh9wvzvPlvj5M5FqP63uCFSISdI2h3jkdqQqG14GJda5OY1kkfNEkfNLFXPZb+vI7fDJFNmeEXktffG4URvhUShRFR0BkIa8v/r0/z6gFO0ceadal9sLmAhvxnE6htMCohw+8E7PqmR/WAQuWIDPKdX5NpFvjx/vMJd+bqRJqpNYuhuoPu+rh6/zQFK6lx+mgWgFjLZ8+ZNsNWi/Gmxah1hR9MT9NaHwBMEB6kUJYpmZ2BEl8bgqevrpJtOUjAUNPmyFKFV/aPYZlifxUE4Q5EEXvPWkzO2pSGNa4eTGClOv2hcgByGOFrErXI2FRRvpbRWQKuzCTZdWbwwoAg+gJv5U62yblz5/jMZz7D6uoqmqaxd+9eNE3j4sWL/OZv/ia/8zu/wze+8Q0++9nP3oMWPxx2ZHKqHJeZ+Zks2nshkQSB2UlGDTUIdAk3J1E5JoEYTUUQBEEQhLsotKF6qkX28Ti7fj6PWw5Y/X4De0mMcioIgiAIgiAIgiAIgiA8GiQV9n6vTbLYyaJzEhK1SRWlCVPnbDxDQnM6VSrOPpZiecIESWLmsoXhbWT1+LKEEkZIgKSBveaTTCjoGRUCcGMy7ZRCvBFw/skEqaSDt171QrVC9v6pC09sjjZMH+wkVzrlTn+dkVdREp2H+3pGYfRzKUIvYuXbdernNldGBbCuulhXu6/35YUiek7Fb4d41d6lZRK7dOIzOoTQvOIg31D5QzZlvHqApEnIqoSsbX0IrmdV9CzEJ3UKTydY+sv6lnl8VebtA8NbP7xL4tTCcBzdD9i13CTudNqesnxSVxocvNLgpeeGceJ397Fy09BI2t5dXaawczVVk7PJsU7CahhSCCwOtVeZcSsYVY9z6WFRRVV4IFxV5Ux+iKOlNSZ/PMPC12oPuknCQ+pRr5xwp0RiqrDTyWZE/EeqNP6gQPu1JPFPNx50kwQBgFjOYez4Gn5rmPoZ+5ZVMIWda/lbdWofauhZhcSMTuGZBLIq4VZ9amdsso/FmPrpLKvfbdCa86ift0kfNFn4ehU1paAmZCRFQlLY/P9y579lvVOJNT6lo8Y7fTlBO8Qu+njVgPp5G1cBLy3hpRXaIzK5swH5DwOMasjy8yoot580ILdCpBDaBZGEcad01yfXdDDdANMLsDWFpXx8UxLq+3vzvPDBCo9fKvPmkZHbWn47rnJ6tFNxdaTR5ImVFV6Ym+elXTO4qrjvFx4elVSMvzi+q/NHGHJ4qcLetTqfPbvAmfEcV/ckey9AEAThJoVLPuOzLhePJliaid16Rrv7dYyny5w/kL5HrRP6+ft//++zurrKJz/5Sf7Df/gPTE1NAVAqlfiVX/kVvva1r/HLv/zLXLp06frguTvNjrxSm/lKFjUhUz0gUT4piyRUQRAEQRDum+IrLaof2Ix+JkVsUmPqJ7P4zZD5P67iN7f5kNmCIGwLO3VEq524ToIgCIIgCIIgCDtRbFy7npgKYFgR1SmVctJECiMiWUJvBUSSRF0xrs+3MBPDCxWkKKKZ0AgUiYOX66TKLn47whja/FgzW/R56/MZXFOGKCJmSsRXA9KzIUZtox9u5dsN9JwCMqQPmyi6jGLKKIZE6U2L2gdthj6RJAoi7GWP5lX3jhIhAjuivdQ/2VJLy0z8aAbf6myj9FGT2d8tc+nfFMk/ESd3Mg5d4g5m8ymSjkfBsmnNu6gpBT3TSawdej6B6fjYxh0++pUkrkykuTKeIu4EvPjO0qbJe2ebnDmSvbNl38JqKk7arpFrtqkkewRaCMLNZJmSnOJt2eBEa4FRu0nBafHS6L4H3TLhEbWQyrLn9CKxcY30EYP6ma2DG2wXO7Vv+W4SlRMEQbjblHRA7Lkm7R+k0ffZqBNiABfh4bDr+UUW3hwh90Sc0mvWg26OcL+F0F7waC941D6wkTSJ9CGD3ONxhj+RxK366GmVyR/LsvZy8/pgYIopUz9j91n4ZkpcxhxSMYZV0odMEtM62eMx/K97rDyv0h6RCWISxSdUWmMhYy/7THzfZ+mTKmi3t1paGyQAEVJ+R058UGKstPX7fexahXLS4M2DIwS6RC1l0IxpDNdscjWbSsa8o89bTSU5FUU8vrrKp67N8YPpKRztNr90QbgfZJmzkwUWckmev7TMkaUKo02LNx4bJhQ5LIIgDEB2I4bPuCxNm70TU+8y0RfY3e1uk1arxbe//W0AfuM3fuN6YipAoVDgt3/7tykUCly5coWzZ89y5MiRu9reh8WOOeOlDhlM/0yWvb9cQEsp1D5oU35SFYmpgiAIgiDcd349ZOHrNa795yoAalImNiE6xwRBEARBEARBEARBEISdb+wLGyMzBwo0RhTcROd5XSR3Hui6cQUvJmO2AnZfbDK06jAxb6P6IboXcuxclWfeKxFr+8x/rYoUgZZUaF5xcCudqqfNtMLeUxbP/mmFT3yjysE/dJj+rkesGOJkZFYfV7n8v5Won7MpvmpRfNni2h9UWH2pQf28zfwfVym/2SJoR6z8VYPV7zapn3M+doUuLasg61sfXBsFlZmfyzHxYxkA1r7fpPiqhaxITHw5g6xKKPFbP9fcVW5QsDoBgPEpHUm54TOTCp9/b4FPnV7i4HwFw/XvrPGSRMtUWRzZCBp880Se8/vv/mjba8lOVduxughyFu6Mrei8ltpDXTPQohDdF4kcwoOz8PUaoRcx8pkUE19Ok37MRM2IWBWh48bKCZcvX+bs2bO8//77zM/P85M/+ZO0Wi1++Zd/mSgSVekE4VGlH2uhjLm0vpMhEpc0wkNCT3hUTrXIHo+hJMR1zaMu8iJqp22u/l6Zpb+o4zdDgnZIa8Fl+IVOdUCvEdC4ePsDtQStEOuaS/mtFld/r0ztTJv2ikeowsR3fHb9V5fM+c4AX61xmaVPq5iliImXfKTbrOrrFGR8HVLXIghFgYGBhSH7rtauJ6bODid57eAI3zk2zpv7h6jFdfJNh2fPrVx/yxuHhomAp8+vIX+Mbb2UTnG2UEALQz47e42xhqgyLjy8GnGDv3hsmmLSJN9w+ezby+JYIwjCQIYueMghzO6LP+imCHfAdV3C9eP93r17t0zP5XLk83kAfP8On99tAzuicqpeUBh9MQV0RiWuvGdRfKWFQuYBt0wQBEEQhEfZ5Jc7QVtrP2jSOL99R8oWBGF72akjWu3EdRIEQRAEQRAEQdjOzDGVwjMJZFXCawS45YDqB20UYyNoVQmgNqES6BKsB1nHaz7Hv7c1kCxQJDxVIpAlqmmdS7tSWAmVXf/zKrLZuSdM7tmotJqsBzSyCvMHYviaRDzm4aYk7JwEUmd+ubU5+MdvhtQ+vL0KHv1ImkTkdYIh4zM6k1/uPJ+snWlTP2djL3ceNGsZGSPfeTRb/aCNNesy9MlOAKdRUBn9fIqFP6lRfqtFFEbIukTQCrn6z04yVmtxdKm86XO1pMLNMi2XTMvlwGKdD6dzXBlLXd8WtyNQOt9hM65SzuogSdzNu3Ld9Xlibo0ImM3f/cRX4dFSVw0ynkMicEl7NmN2Az0KWI4nmU9lH3TzhEdFCNf+oMLkT2aJT+skZjrnqyiKCN2IoBXiVgPstU71KXvl4QxC2ql9y3eTqJwgCMLd8sbJzdfzWqbJzF/LcfUfpCm+0hnA5cAbvc8X1Xb/SnQpw+05/WvXjvVdxqcnLvecntVaPaefqY/1/Yx+y1h0sv2Xobd7Tl9zU32X8WR+rs8ykn2XkTI/fmxI3e9dLSmm9M9i1qSg5/Qw6p9w+tO/dYZX//UJPvnrAYe/eGXL9P/vwa2B18IOF0HzkkPz0sZ+Xng+Qf5kHC2lMP4jaaqn27QX7jDTPoLV7zY7/y1D4ek4+ScT5F72qP69ZQBawPyIyuSPZRj7Dsx9yiAwul+jrTUTW16Td7XYe6GF/qbK1cNJxlO9kx1zRu/jE0BC7f27bwf9CxpoRu9jvhsMkCSu997uitI/mTdc2XxumarWOLxWQgsjfEmiZuqcy+XxVRVCaOkxVnen+cLZqyTbHpLsk6+7nDwXvzKlAAEAAElEQVRbRgbkIGLPSp3L0xv9P/3aIc9sHshsYUajVc5x8lSFEyurDEt13q2P9lmR/tftkt77OCnF+t+3hVW95/TUVK3vMpJ9zhvJL/U+DwNc+H8/13N6s92//03O9r5miPze23RiqtL3MzSl9zbPaL3P5QCy3CfZU+6/n3uF3t9taqz/9+ZeyN+qAbw5McmR8iq7iw2m52yuDXff/l6sdxrPbCXXtx2pWO/9ZyLZe10ulYf6fkbL7r2fZ+P9vzdivfvkK43+CXmn1fGe0/vtXwC22/t47Ej9959kn+vrfLL/eWMo1nvARl3pf/xZ6PNbqDR7b9NWn20BEOtzXplKVfsu40r1Vr+Vjulk/2NHUe19Db7S7H+Nnoz33gdn0v3bcTy92HP6IXOp7zL+zaFdW15TYhJDf6NA9XSbwv+y1ncZvfiRx9ar9lsTfYHd3e42yWazTE9PMzc3x8svv8wXv/jFTdPPnTtHqVQim81y4MCBu9nUh8qOSE41R1UkSaL6YZviy02ih7MfXxAEQRCER4ialFFiMo0LDrXTdzfgTRAEQRAEQRAEQRAEQRDutQv/9kk0LyDXcGmZKs2YSvRR8GoU8anTy8RbHtacixKTKTxrkjm2NYB26M+b+H/VIN4MGPtCmtiEBvpGQN3V/1BGksCtBXBDPMXQ+j+A6nttkvtC2kse9opH0Arx6puDL9ZDF7mX9Vwu/vPnkaKIsUaTsYbFmNUJIpnLpvBlmeFq4/po+JkjMTJHYlz4X9e48C+fI+G4jF+cB2Dphya58tUcF8OQ/cUK+0tVqody8LUaXi0gddBg7Ic6QUt7z84ThRHImx+Gt+ZdGhc7lWTdckDt/3mE0XqLyWqnTUfnKrgoLOT7B2BHNwXsrSTjBKMSl8bT+E4nSEXW7nyU/2htI6l4qGHx1MIyEnBpOIMV04BO0I90F4Mgom6BRHc5xuLjtDfqEogZ6VtfC296SeoSCKg2tr4m0WX5H2P9oy5vlrrtEt02+82vDVjYplt7va1xxeiVTuDZE5VFpBsWn3VtJDliNtsJ5AsSWxvc7XuQW1uPItIg1QwfVMHDAYLmuom6/SC6vdRt8V2++667V5f3dsuB6PZdd/0J37z/d/vQj7Gfd/3MLusqu1s/ZO4fvQDAFUAOA/Jei6xnkwocTNlDNwISOfX6IAsRECLhSgq2rNFUDKqKSUVNMP4/vXrnKyE8dAatnFAqlXZ05QRBEPrzagGlNyyGnk/QvORgr4pjgvDgqUbArucWufTSDDNPLRHPi9gXYavSqxblNy1SB0yyx2JM/UQWrx7QXvRor3jYqx5+IyQctMqpDIohERvTyB7vJNYUX2lumsVZ9Zn/WpXJv5Vnz7ccqrsVikfUgQbomt9jMjnbZvqqTTuhwNHbXuVHwkjD4rGVNcwgIJAkzg3luJzLEmndt/FsPsWBYo3PvbGM7ocQQTml0zYUro73Txrqp5I3+N4LIzzzVonJZZvAL/L+nv5JdYLwoJyZyLOr2GCq0rxlcqogCAJA7sk4URhRebd/YrPw8Pqn//Sf8ku/9Ev8yq/8Cv/iX/wLXnzxRVRV5dVXX+Uf/sN/iCRJ/Pqv/zqm2X+Qqe1qRySnNi85DD0fkj0aI3PEJPIjWgse1VKIW7iXj6AFQRAEQRC6G/+RTqdC9f0BRoYSBEEQBEEQBEEQBEEQhIfQwbk6u1Y2AgAvjKcIVJk9Sw0Mv5NoYeQVrv3HCtNfzRF1GZzcHNHY/fN53KqPnt38aLK94uHVg66JTjdqXHBoXPj41Wc+ruGmxWOrRWK+T9U0WE4mGGtaTFdvXWVjz9/Os/vMFbT1LMPT40MsZDpBeaEs4ymdiklX81mG19/TvOLilP3rlVb9ZoiW3lxZKT6lE5/Sac27OBWfyHZZycR5b3qYlO1i+gHF5O095FZ9n0+cXyFtd0ZE37ViEcgSzZhKKWeyMBKjleg9Un4vR1bW2FWpE0rw5q4R1tJdMg0F4TadyQ+jlELkKGItnmAhkcLTZH7o2lUOlkssJ5M4av9KAIJwt4SyQtFIUdJuGhwgDMkENlm/Tdp3iIUuRuhjBj65oM006/m8vzpEYIc4RZ/iq03cyp0PDiA8eKJygiAIt6N6qk1qn8HIiymu/cf+lXsE4X6YOLHC3NtjXPzuDMd/+vwguX/CIyjyoX7Gpn7GJjaukdxnYI6qpA4aSOuDbYVehN8KIYo6r8kgyRKSsv7/MkjK5h3MXvMovmzRXtpauc0tBVx90WD0lMfwhz7NcQU7N8AOKsu89akcz363zMEPLFZNhfreHRFKf1dk2jaPL62S8DwiYDab5sPhAsgfxeJ3TzK+MFJA90N2VRtEwBuPFSjleleBvl2+LvPKcwVeeK3EdNHi6kiKRsLo/8adRoWhZxMkdxvIpkTkRcQWVjk9PkQoi5yJh0Uoy1TiBvmWw2fPzPG9A5OEqvh+BEHYTE3KZI7GKL/VInQe1OiHwq3U6/VNfxuGgWF0v/b4xV/8RZLJJP/kn/wTvvrVr26a9vjjj/ONb3yDL33pS/esrQ+DHXFFHTpw+bdKJPcbJHbpxCc0Ert0kn8ZEGgBrXGJ0pMyoSFO6oIgCIIg3HtjX0xjDms0Lzs4a2JEU0EQ7q8okrpWs9juPs46ra6u8uu//ut885vf5MqVK4RhyOTkJJ///Of5tV/7Nfbv338XWyoIgiAIgiAIgrD9GcMqz59eId9wN72+Z6WJGkYs5uOoQchIzUY2ZEY+m0KNyzSvuOgZBeuaQ2LGoHHJxin6DD2XvJ6YOv+1Kl4jILQjQu/hftiumBJaViEKofB0nP2Ly5RjJqdHh4l5HiNW/5GslZiMdEP5y2zL5lo+3UnIjSLk9YqM5g3V0iIv4tofVEgdNEjM6MSnNxJC28ud6rHZYzEkRbqepJpbrQHw/2fvv6Mkye7D3vMbNr0rb7qqq9p3j5/BeGAAEMCAkECRDwRJQHoASZDah7PiWfLsWWl1js4u+VbS05N4uBR1niQSkN7SCCRIkAQJSjADP8B422amfXd1eZ8+MzLs/pHtqis7M6u7qsv073POnOnKvHnjRmREZMSN+7u/b9wXpRANsfKReXOq77N7ocjB6SxqADOZCDOdUXqzVTKlGsmyQ7rssHeyiK9AJayTTZpM90TJJs3rBijevP4nL02RrNlUdJ2XRgaxovLcVqwPW9d5s3dw5YsqvNHbz+MzUzw9OcHFVJpzkWTLfVWIDaWq5NUoeSN69aUrmVkjbo2MVyXpWaQXljESGtFhk+HhDvInLRaeL92k0vW1U/uW19OtbB/JnCCEaFsA88+XGPrZNIn9d2GwjdiSND3gwE+McfxvDzL5Vh9DD89udpPEFledcerBpCooGoS6dPSohh5V0aIqigKBHxD4EHj1f+ND4F1+zQ/w7QA76+HkG8yCdh0noTL1hMmeb9Xof81m6ZBOqV/Dv0l2zytcU+XNp9I8/GKOnjc8kmM+0+/V8c27+56xf77MA+NZAmAuHuVYby/eGoLp3hnoptShsZwyKd3G5GZNqSpvPpDh6ZcXefLUHK8c7CUfv3t+M7uejJK+N4qiKfiOj1sN0EIKg/kS/YUyL+/uJx+V+4qt4qV9fdw/scSubImfODXJ9w7tkgBVIcQ1CnS/N45fC8gd25ysqdIX2NiVbTI0NLTi9d/8zd/kt37rt27ymYALFy6wtLSEpmmMjo5imibnzp3jxIkTfOELX+Cxxx6jo6Njo5u/aXZEcOoVpXM1SufqsybrMZXO3+wiNhUQHw+IT3gsPRhQOKC1qEUIIYQQ4taFe3Xie0ysBYeZ59YyBEwIIcRGOH36NM888wzz8/MYhsGePXswDINz587xxS9+kS996Ut8/etf5/3vf/9mN1UIIYQQQgghtoTIgMHAx1IU/QBbVzHdaxnb9MtBlobnM94drwen6grx0RCLr5TJHatgzUVI3x+hdLHG7HeKEEDueBXVUPDtoGF21a3ESGk4RY+OB6NkHoygmip21sXM6FiaRqAoPDo1A0DBNMlGQoRcj7Dj0mho0ZUMIVfsypfYlV8dZNRVrqLvNqnOOKTvr2eWsOZdll4tk9h3bVCZHldJd0eY/kYe3wUzpWKkNMwn0yzFwm1nSNBdl70LBfpzZaK2iwJ4Crwx2s18b335s13XMptmKlUGFip05GpELZd41WVorkIAWKZGLmky1xlmtiuyIgAwUbR5/NwUmh8wnYhxtL/n8vuSCVBsrHwkwsVUmpF8jgPZZfZnlymETU4MdJGPyUBNsbVU9RBVPcQ0MPhXF4D6+X7w4ynSRyJEegzGv5qFLf4bejeRzAlCiI1SW3SpLbhEB03AblleiDuha2+OvnsWmHq7R4JTxU3pMZXIoIGiKoT7dFKHrmXNLJyx0GMqBOCUPKpTLsWztXVZbqApTDxtMviKzeCrDnbM5eKHQy0DVK2Yzosf7OCRY1mi8wF7/tYhP6qy8B5jXdq1He29VL/GrRo6bw3231Id4wPx9WxSQ1ZU58RwhnvHszx9cpaZTJS39nTu6AmpkodDdD0ZRzNV3KrH/PMlyhevXSdUf+sw988u8vTYNN88NCIZVLcKVeXY7m4qIZ0Dszk+8u44p/vSTGfi2MaOCuERQrQh8MHs0Ah164S7dKK7TIyUxvQ3CwSSA2lLmpiYIJlMXv37Zn1/AJ///Of5whe+wFNPPcXzzz/PyMgIUE+q8iu/8it89atf5fz587z55pto2s6Madyxv2xu2WfxUZ3FRyEy7dP7kkfnWz6qA7l7duaXKYQQQojNFx02URSFue9JYKoQYnP4KPjsvBmtbnWd/sk/+SfMz8/z9NNP8+Uvf5ldu3YBsLS0xOc+9zm+9rWv8cu//MucP38eRdl5200IIYQQQggh1sJIawz8vRRu2efYIx0kKg6Hx3KEXJ9CWAdFIVl16M5bdOct5lNhwq/lUA2F3NEKgQ+5Y1Vyx6or6g1c8NytmSU13KNjZjS8WkBif5jE3hDlyRqxXSGcgodbuRyYuugQ7oJwZeW6ZarrM5iyu1Qh8rFUy3JGvP6cMzJosvx6GevyuOAzv3xvy89GLJu9C3l6C1VCrnc1IDUbDTHeFWeqIwaqitIgcDSfCpFPXXvwHqm6DM6V6cpaxKsufYtV+herBKezOLpCIW7iagq9SxYAx/u6mUonV9UrxEY629nF2UwH/aUSw6UcKcvmqQvTlE2d+WSUbCzMbCqyowewiu3LLflc+nKWvg8liO8LseeznUz+TRY7u3HB/Tu1b3k9Xdk+kjlBCLGR3LKPFpbzsdha0oNFZt/pwnNUNEMmGxKQuidM8mCYyqRDfNTEzNSHowd+sGqiruSBMOVLNXw3INRRD1yN9FeZ/1EJ1qG7yE6pXHw2TCjvM/LdGnueq7F0UGehJwC1yflUV5l+v0lkzqf3dYf0RR+ry6U4smOH1jdVjhrELY+qvvXXf7w3yXwqymNn5xjIVoiccnnxUO+Oub+PLbjsfstCcwO0f9xVz5TqBiy8VCJ3tLqqfMqq908GgOl6WHd5FuCt5lxfhpqucc/UEvdMZ7lnOosP1MIq7x5Okeu4e7L/CnE3Cnw4993dLF9Is/vn65Ng2DkXa95l9rtFaoubF5kqfYGNXdkmyWRyRXDqzRw9epQvfvGLGIbBl7/85RX9hj09PXzpS19i7969HDt2jL/4i7/g05/+9Ia1fTNt/SvI2+B9cBqAEuD26uz6mTSxH9os/Vp2VVn17bXd4dT89jddh1luu2zVW9usO53a6pmVbyZnRNsuO621fvh9Rdld20XRnshC22UHjeW2yxb9tc1wm/Pa3x4Zo/3vMKyl2y47a63tIfxayptq+9OmrnW/eyU/2nbZktP+/qGr7XdczZnt76MAJa/9djzcPdl2WcdfW7B72mg/7frpYm/bZQtO+/v/32YfbrssQFK32i4b0Z22yw7FV5+LmzkQm2+77KvZkbbLjsSW2i671mN2vJBpv2yx/YeNS+X2z18Apt7+havrtb9Pd8Ta3593J9b2fU+W0m2XNbT2z3fDybW141yhq+2yJvXfCi1c79xxitIZL4QQm61SqfD9738fgP/8n//z1cBUgM7OTv7wD/+Qzs5OLl68yKlTpzh8+PBmNVUIIYQQQgghNtXFP3uAaMXhqdcXUAMwUxrvOzZHZdImP2YT222SHIJz/2WBBVUh80CEyrRDdcohv9mNvw1qWGHoE9f6cd1KvU8vtitE4AcYyWv9pYEbMPblJcyUju8EVGcdVF2hstvESGgopoIRV6k+mCFQwFVVIraD6fk4mopl6IRcj4jtEnE93h7qYqojca0xQcC9/+JNet4XJzJgYuc9zJTWcFAnQMdDUawPdPP2cP1ZgmKvLmPmFRJ2ld2lHJ21KnpQf6TuKgqL4SjjyRRLkRhXxh4Yufa3XQ24oMW5cLkLVXdd+isluitlknaNzlx9UJyl6bw23EcpvPI5jeI1GPDQaAxEg0e4jbZHO59rW5tjMQJl9ULMztXPVOLR1a/l8rFVr/l2g/752g2DCRtst6DBYz5lvZNsNVjXoN3HCf7KNisNuvSDBmMmfXP1Mhs+lmu0K63onleZjSeZCycxXZfDuQW6rDJ7FguwWMDWFb7zyMDVAaxBzVxd4Q1tVm6j+9+Lr/6w4q5eCdVqb0dstO3aal+D75Sgwf7VqBmNvodGx9w6z0lw4+PvRtvNNxrsq42GdjRom9rgcZrW6HtotF6NirVxjDQqM/Evnlr5N3DPV9+g570Jhn+ug7nvF9cty5S4dZI5QQixkXw3qGcYFGILSQ0WQIGxlwbZ+8zEZjdHbAGZB6MYCY1wz+Ugi6zL0mtlKhMOelyl4+Eoif3XxjTOfr+Ib9UvppOHwvR+IEFiX4jz/2f7Y/daqaVUxn4iRMdZl963HeLxHJOjERb7Qvjaze+xqr0qYx8z2PfXDp0nvLsyOPXI2WV6ly0Kpsmru24ta+qdZoV1nr9vkIfPztOfq/LB49O8uaeLfGJtY8m3otHXqug2OGEFr+BSvlhj6dWbj9XsrFQJgG8c2XPnGinWZKIryURHnMFcmY6SRcKyyVRs9p0v8boEpwqxo/meytyJbqCeTX7hRyV8Z2tO5ipuzQsvvEAQBBw4cGDVhHZQD3J97LHH+PrXv87rr78uwanbWebBCJ2P1x/wVSalk14IIYQQG0cLKQRBQLB5k9kIIYS4zLZtfL8+Gm/PntWd8JlMho6ODpaWlnBdOXELIYQQQggh7l6KH7D/YhFfUTi9N8nhc/WQ0+guk+guE8/yKZy2CFwICFh6rf2J67ayKxPNBX6AVwvwqj5O3iPSb6wKgIz01YNQa4suoW6dzvfE6llXO3X0iEp53CY2bJIoValpKpWQQTlkUFYUegsVMtV6tOB8IsLRrhRLycjKxigKdtYje6xKZMDEq/i4Ooz92TJdT8ZJ37Oy/IWuFOMdjSdUVH2fB6bn6S5V0IOAAHAUldlwnLF0mmJo/QfpubrORDLNeDpdf8H3UQFfVfFCMtBCbA22rnM63cm8FaXXKtNtVTC2aFZnIa5XeLeGNe8x9NMpen8iQbjfYOH59icyF+tPMicIITaSW/SJDhj1CREkiY3YIqKZGnvfO8H5Hw3TuSdHeldxs5skNtn4V7JEh0xiI/W+IzOj0/NMgtqiS3nCZvmtCrkTVcJ9Bp7lXw1MBSicsoiNmMRHQox+pgNrwcWvXXdvptT/C3fp1JY9iqctvJqP7wYEToBT8uEmk/LU0iozj5pk9/qk3/Y5dLyEe7LMQp/J7GCYYloHpcHJVVUpDqkkx306jzosPbC2hC/bWSZvMTRboRzWeGFocNtlH31zfw9HLi0zMl/k6VNz+IpCJaRTDBtEbJeE5XBiqIOprkTryrYIhfpkVO98OEr842MtyxtegAI8dWGSk72dZGORlp8Rm0BVmepIXJ2w8GNHL6K7kgBFiJ1OM3ze87ljXHpxEOikdL5G+dJ6zy4pNlOx2PreKAjq17qW1X7SuO1mxwenxveF6Hw8hmcFTHw1i1uQH3EhhBBCbBw1tL066IQQO48fKPgNUxpsb7eyTul0mqGhISYmJnjxxRf5yEc+suL906dPs7S0RDqdZv/+/evVVCGEEEIIIYTYdg6fy9O9ZHHiYJpCwuDd/SkOvZtDNRRmv1vYeRnaVEjfFyE+GsL3AlRNQY8o6BEV36kPdkSpj1V08h6+Vx8QOfj301er8Go+9pKLHqn3B0Z3GWSPVnj104dw9ZVZz3oKFR4dm2M+HuG10b6mTXOL9WeZkf76IMie9yUoXazh1wI6Ho4C8G5/J2NdqYaf11yfD56/hOH71FSN6UiM8XgaS69ng/Tv1NhKVb3ZOFEhNkXaqvDg0gxGcG3As6sqvDOS3nYDb8XdyV50ufgnSwx9IkP6SIRwt87E3+RWZfa9HTu1b3k9rXX7SOYEIcStqM7Y9Wv/WQ361/FEL8RtGnrPDAvnM5z+9iiPfub4ZjdHbDLfDiidr1E6X0PRIDZsYqR1In31Cb26n4zjlj0qUw521iU2YmLnPJyCBz7MfLNAuE8nPhLCzGgYyct9KZcn2QKwFlyigwaJvSv7QHwvwF52sV638XVQvPp/ql+fgM0zFTxTYWokwrkjMXpmavRO1eifrFGJacwOhpgfCGOHV94Lzj2qEVnw6Tjjk7xUY/E+De69Axtzkx05lwPglfu7Ib8974/f3d3Buf4kB6dydBZrxGoOccu5+v79l5ZYjoeohs1NbGX7pu4JsfutGrtO2OTaKP/y7n7un14gbdV44tIMtqZxoTPJxY6U9HlsUZliFTWApc7tsU8KIW5POGWz6z2zLJzq3OymrCB9gY2tdZtcGXd65swZJiYmVvUBFgoFXnvtNQAOHDiwPo3cgnZ0cGrnY1EyD0UJ3IBLf76Ev3ODjIUQQgixRYS7dXxHZloXQoit4l/9q3/FL/7iL/K5z32Of//v/z0f+MAH0HWdl19+md/4jd9AURT+3b/7d4TD6581RgghhBBCCCG2AyOtsWumgg8cOZtH9+p9W67ts/hyZUcFpioqJPaH6P3gzTOdqYZK4bSFHlOvZv4AWHqjTGJvCDNd/1vRFHLH61lOAcb+dBm35ON+RltV53wyyncPDWHrq9+7UW3JZfa7BTofj2HENZIHwyQPXrtn9ao+E5mbZ3p4dHIaw/d5p7eTWS3TcnlC3C3uX55FCwImowmWQ1GyoQjlUQn2ENuLb8OlL2fp+3CC+N4Qez7bycRfZ3HyMh3AViWZE4QQt0KPqgRBgBJvfn5Phlvfq6lK87ELmtp6bMPzU3ubvm/qza+pNLX179SiHW++DNVtWUfCaH4evT8+2bKOEXOh6fsXar0t6zhW2tX0/beXmr8P0BGuNH2/7LYOZCm4zZ999pitf6NSWnXVax0fWGLsy7t557XRlp8Xd4/Ag9JFG7DJAooG4T6D2JBJuN8gtttEuzzZf+AFOAUP3w1QjUYD/6+9pkdVfCeol9Wvva5qCuFug/BY8/NPJ/X9/NJXlplY8ogMGiQPhRnJu4yeKpN/1yL3/4mDerluDaZ+SqXj9YDEWEDf6x7esTBLRzTy+28+3L4Wbj4U/52F5hOVAdTKLY7rNoIkVL35+db3GtcRq7qUogaWbkBHi0xupeaznvl2674vy2keLKkarX83Ep3lhq+P9UcYI0IsZINfryea9Tn04wrvOzvNiQ/F8c368hezK/vXuhermI7PVG8EVJVguvUYEr/Tafp+T6LUsg7XX709Sns03BPQOe6gPByhOu1gzd78t3Dgn73FIrAcgq4nEyT2hTg8n+XgzDLlCzXmXyi2jKE4/6WHmr6vlprv59OXWgdc6Ynm20tTWn/3QatjwW0jGDfU/NwRMVpfdxT7V/9GXk+diDZ9//6JJQLgbF8Ku9Z423o3OWav5/vNy8woN+8Hh9bXigBBi2UslZuvK1x/Zm/MdVqHNLVaTmes+fUTgGU3P4elYs2/V4CiFWpeR6T1vf2uaK7p+07Qej+eovHklVfUqs3XtdX7ANF48/uN07WelnXUbrJ/X/FKZaRlHUqL/bRRQvQbhc3m55/ZcvNjBSCsNT83vPhA89/yng/Eie7yKE9I1tSd5tlnn6Wrq4vFxUU+9alP8aUvfYmRkREA5ufn+ZVf+RUWFxcJh8N88pOf3NzGbqA1B6fqsfrJzi1vbue2HleJDhoohoKiXfkPVA30hEZ0V/1mxi17THw1J4GpQgghhNhwXU9G0cIqueOtb3SFEGKjBIHSujN2G7qyToVCYcXroVCIUOjmHX+f/exnicfj/Mt/+S9X3dzff//9fP3rX+cnf/In17/BQgghhBBCCLENhHp0hj9RD2BUgepYjdm3KtjLLp61cyZgU02F3g8miI82HzgCkI2GePWTQ6RKLk9cnGEmGeNkfyfWfTqP/Ie3rwa2qrqCoivMfLuAmdJwS/Vnp2rgk6zaFMMmnnZtEIkVav1Y9sx/emzF35rvM7Rc5MBsFsOvfx9aROXDJ8c4MdDNVPraILrQkkpftUCmWmPZiDAXdECDr1BtNLHeDf0Igb66TNBgbGHDPaTBi5rVoJ+inREjN9FOt0cb46puXlejDzcoF6irX3QaDLapGasH+gSNBpe1MeAsiKwePOc1+HJUu73t6zUYL9NoHGAbsQA35Rsrt2fQ4DBs/D3c+jIb0YKAqqFzfOjaoCkl23rQLFA/QV6n0e7VxvjJukYDIBuMdw0aDJZrtIy2l7tqAeu7gRtVdztLaFTfqszPDc5VjTTaRo3OS8pt7OfrKWjwczH2r59c+TcwVMhxML/I7k93shCO8k6mh12/+drtLXuH9i2vp7VuH8mcIIS4FWZGxyn4mImdc08mdo5Qp03qcJ7c8TQouZvcGIq7XeBBdcqhOnUtEESLqphpDTOj1Sf+UiHY4Mn/zQ4dRQOvUr8puNKmBbNE8nCYrsdj6K/4LD6uXgtQVVWWH4Plh30yxwIS5wJ63vboPOGRPaSRPajuuEyUSgClyA7MdXX5e6p0qkwdDjF4ssb93y4xcU+IpeFrN5iq6/PosUXSpfr+Ojhb5tWHWgdcbbS5+w0G3nDoeixOEASMfXkZt8XERH4N5n9QZP4HRVL3hsk8GCW+L0R8X4jaokvuRBVrzsGzfHwbkHmONsWuQo6Y4zDfEcZuo89YCLH9KYZCYl+Y5dfLW+rcK32Bja11m8Tjcf74j/+YT3ziE7z44ovs27ePPXv2YBgG586dw7ZtdF3n93//9xkcHNygVm++Nf2ijX62k1C0/oTKtwOqUw5zzxc2PPBT0SG+N0RsyCTUY2DEVBTt5l94EAR4VkDueIWFFxrPjiKEEEIIsZ66noiSvj+KU/Tk+kMIITbQjYN3fvM3f5Pf+q3fumn5IAi4cOECS0tLaJrG6Ogopmly7tw5Tpw4wRe+8AUee+wxOjo6NrjlQgghhBBCCLH1KJqCU/SoLbpUphwKp6oEWyQ4Zz2FuvRVgal23sUt+wRuQGy4/t537tlFzaw/Pl2OGzx3ZARXUwnbDkemFul6amU2n94PJnDLPk7RozeVQIso7D9+CYBLnQlO7Oq6rXZ7qspYV4qxziRdpSqjCwV6SlW0AI7MLK4ITlV9j0PFeXwUjqUGbmu5QuxEtq4RciVTqtg5JpJpcqEw9y3P0W1V+MDMGM6nMuTfscgdb53pQ9wZkjlBiO1BMRQCN9g6QXYqEGyVxgixWupIgfw7aSL9BtXp5lmoxNYW7tNJ7A9jZrR64iK/PjbcznlY8w6eFRB4AeWx28/w5VV8qhV/S+wzvh2QO1rFLfn0PZuEwGfxiesCVAF0lezDMH+fQse7HpkzPl0nPDpOeiw8oFHYu7MCynR3C0XKbIC5AyE8A4aO1xg5WmP30RoBpRWTKs1nQhiuT7rocOhcjpPhnk0NRM6NGJR6NIb+S4HoYOuM2TfKn7DIn7AI9+p0PRUn3KPT98GVmQEDL2Dx5bLcQ94huuuyP7vEULGIqyi8fUDGKQlxt4gOGqi6QulC82y0Yvv62Mc+xtGjR/md3/kdvve97zE+Pk4QBPT39/PMM8/wG7/xGzz88MOb3cwNtaarY9VQIIDShRqRAYPYqMme0S4qEza5E1Uq4/WbBj2p4rvgV27jYlWD7qfjJPeF6tlRFYUgCAjcADvrUp1zqUzZ+Hb9tcCDwPXry61dntFDCCGEEGKDaZbP7h/XiDwYwyl6jH9lebObJIS4y/mBgr8DZ7S6sk4TExMkk9c6zJtlTQX4/Oc/zxe+8AWeeuopnn/++VUDf7761a9y/vx53nzzTTStzWwZQgghhBBCCLFDWDMOY1/a+f1Z1WmH6W/mSd8fITpQH8xlpnTM1MpyH35nEoBX9/SwGIvTUa4yspino2LhqCr5dyyK5y06Ho4R222i6gpGQsNIrL6fHMyWUAJYSESYS0YbZtlsm6KwmIiymIiiBAGhmk9NX7nMh3LTqAQcT/bh77AMHkKsB+82svUKsVUVQ2Fe7N9NyqqwL79MJlGl++k4XU/GsOZd5t/Iw3j79e3UvuX1tNbtI5kThNj6up6Ikb4vgp31mP5WHre4+cE5igJqSK7pxdYV7rVQTY9wrwSnblfhfoOhn04DYOc9agsOtfn6bGVmh0byYJjkwfDV8tPfzK9LgOpWUzpfY+Fple4XffTveuTuU4lOB+QPq3iR6zKp3quyfMQnc8an412Pnjc9zHzA4sNG8wVsE46ukqzs/GN5cTTE4pBB9yWH5LyLb9X71hxDZbIvymJnBNX3ee9r8+yeLjOojHGuI8NYJrNpbfZ1iPQZeLbfMmvqzVhzLpNfzYEKif0hjKSGaiiopkp81KTrqRiV6Z13fG81puvy/vExVMBWVV4a2IWvb/51pxDizoiPhLBzLk5hax330hfY2K1ukwMHDvAHf/AH69ya7WNNwanWgoMxYBAbCTH7vQJexaf3/QmiQyax4RDB5Rm7rgSSlsdsZr5VWFVPdNig64k4Ts6jOuNQGqtd7dhRw9Dz3gTxPSEUVcGteFTHbcrjNqULtR05W7MQQgghtqfud2y6T7v1yTvGasx8c/V1jxBCiPWVTCZXBKc2c/ToUb74xS9iGAZf/vKXV2Rd7enp4Utf+hJ79+7l2LFj/MVf/AWf/vSnN6rZQgghhBBCCCE2mRZSrgamXi/wA5QbAkcfGF+kbBboqFgsxcIUQyYpy0Y/Eibcpzes50a6HzC8XGR4uchsMsrxXV3Yxu1PihQoCjVj5SPewVyRlGuRNSIshBM3+aQQdzdXVdGCgIhtUzXXnnFEiK0sH47yRjjKyL94ieThEOn7ooR7dfo/koT/utmtE5I5QYitK7rLIPNglOzbFeJ7Q/T9RJLJv81tbqNUiO8NUzpXI725LRHiphQFwj01wt07K3Pk3US9rnsif6K6KmtidMhAC6v0faj+XN7OeneyeW3peX+c1OEIhdMWiy+X8Kq3lnG6sktl9oMKXa969P3g8jh222fxCQ3VDkAJ6hlVVZXsIZXsPpXdzzlkzvvotsPsE9s/QLUQNegs1MD3QdnhkyPoKgt7QyzsDbGYXd2H5qsqzz/aw+hkiT2XShxaWmZPNscb/X3kI5E73tyR52ugwty3i7dfmQ/F0ysz9i2/qTLy6Q56nklw8vaXIJo4sriAArzV28t87Mq+Z21mk4QQd0jmwQjJQ2EWXy5tdlOE2FBrujsMdekoioKiw8CzKeZ+VOTSn2dRw5A6HCE6bBI49cym0UGT+GiI0c904FZ8vIpP/pRF+aJNdNAg1KFjZjTie0J0Px0n8AMIgMvXtW7RZ+GlEuWLMhuHEEIIIbYWvewz+sMaZjXANWH8CRPv9xc2u1lCCCFu8MILLxAEAQcOHFgRmHpFMpnkscce4+tf/zqvv/66BKcKIYQQQgghxA5ldmpEh0MrXsu9UyX7doVIn0HxHw6RsBw6Sham56MEUNM1jg12sZiI8hOn6mnntLCKmWn9eHUqHQOgL19GC6CvUCF9Zorv3jO87uumuT73Ti/go3A0NbDu9QuxU5zs6eLJ8Sn2LuU40d+z2c0RYsMUTtYonKyBDsn7JWBkq7jbMycIsZ5UUwEF/NqtBSFdr+upONUZh6U3KkQGDJTbn0vmtsVHTPSoSv5klfTahnYKcUeFui1C3anNboa4RZVJh5lvF+j/SJLYqEnuRBWzQyPSaxDuNQj36ZgpncqUzey3C3jW7Z9z11t12iF1OELyYJjYiEl53EZR6n03WlhFiygEHrgVH7fs41U87KxHedzGLa3MWlbrVpj+qEZ0MqD7ZZ/4WEB87EomJY/zP23im5cnNtNVLv2kwfBzDvEJn9B+Hwbv7LrfirDl0r1kkSnaxKoOagBXpmrTXR8F6Fm2mO+MbmYztwZV5eJwkgtqF/uXs4zmcjwxNc3FdIozXV13pg2+z/CLNpF8QPF8bcMyF7sFH6fgE+qUa44N4/s8NDdLd7VCRdevC0wVQtwN1JBC52MxsscqZN+utv6AENvYmq4mSmM16NYwEiqqoZLYG6LwjoVvQfatKtm3rj9gKvR/LEmk18Ds0FG6ILY7RP6UhW/VZ9Epna9RPGsR2WXWA19VBbfkkTtexZqVFKlCCCGE2IJ8n73ft9BqsLRXY/Z+A1QVmWddCLFVBIFCECitC24zt7JOxWLr2SODoP4gzbJkRkIhhBBCCCGE2Im0qMrun+tY8Zpb9YkNmaQOh1FUha4Ly9hZj+KsQ2Xcxlpwmfm3D/HA9Dz3Ty1e/Vz+ZJX8uxapw2Hcio8WVonfF0UPAk71dhC1HfrzZSY6EiwlIhiux2C2xNBykbN9mWuj/gDFbXCf22isZ4Ni4dnLo+Z9n0cL06gBHE/24qsrs1sojepr4/5aqTUo0yBxRqOqArXBQht9tsHA/3aHurbVQ9BmN0LDbdTmhxuWmgmteqnG6te0drfdDRvZi63OVuOb/qrXgjYjK26nB6nh999g9MGqcpvUbZUPh3FVhYFiiTNdHdi6TtBuQpgbd5QGm1ex2zumleLqjRTEV3+vW7p3r8GB44dXv6Zaq9dC8ds8vhodmzfs6srqXR+1wTAT1WnzfHsH3LjP+ebqhjQ8jtqsf+xfP7myfsuCN77c5qd3bt/yepLtI8Sdp0UUet6fINJngAKqUQ82mvlWnsqkc1t1OzmP6C6D3T+XQQ0rTP1dfp1afWvMTo3up+OUJ2zsZY81Du0U4o4K99QwEhpqWMHfgoGLorXE/vq9anTAZP//0g1A4AXUllwq4zZL02VKY/amXTu3Ujxbo+9Dl/99rkaoUyfwAryqj53z8CwfRVXQYypaVMXMmKSOaPQ8o1BbdClfqlG6ZOMHASgKga5QHlGITQREp66tdH5Uxb/xdKyqTD9jMPI/HPpedij97J1b7zXzfR48naVvqYpC/esMlMtf6+UX1Mu5pQyvwU3W3UxVOdvVyUQywRNT0+zJ5ekuV3hlcABX34DfaN9nz/dqhIoBgQKaB+UOhdnvrEPW1CbKYxaZB2Jk8hb5mEnPcpXldAjblOuQ22W6Lu+dHEf3fQpmiNf7+je7SUKIO0xRQFEVrJnbu3fdKNIX2Jhsk1uzpiuH+e+VWFZqrQteNvONwool7f2lLlKHwkB9AHD+pEV1yqF8aWsebEIIIYQQN0pM+eg1WNyrMffg6kFFQgghto79+/cDcObMGSYmJlZlTy0UCrz22mtAfeZ6IYQQQgghhBA7j1fxmXkuT2TAJPADjLiG7wa4ZR8n51IasxtmXToyu0jKWpmVIL4nROpw5Orf5/7rIi9+6p4VZY4PX8ug4OgaY90pxnrWP5tMwqnyQHEaM/CZM+MshGXWfSFaOdHbzYMz8zw6OcMLI0OtPyCEEEKITZd5IEp00GT5rQqBF+DXAuJ7Qwx+PE1l2mbqa7ceUDr3/SKdj0VRdIXc8erlgNDNER816ftIEjvnMfe9QusPCLHJooMVAj8gPhqicFImAd6O5r5XpDRcQ4uq+HaAnfeoLTgEG5hXKNSjM/yJDFAPhHUKHr4bUDxXo3i2hle5eXCkooEaVtFCClpIRQ0pFM5YJPaFSB4KU5t3cXIevlPv41F1hYD6BGVOvp4x1Sl4RIdMYrtNUvdE6Hgkhvc3HpUBheqgQrVfYf5pFdWB1EmfxNmA7AEN1NUBCm5UpTikkpjw0afBHdiQTXbbHj++SEfRphDVObMrxVI6jKc3mKnJ90FVt2ww8mayTJMf7B7m/vl5+ktlPnjpEsd7ephNrG9f3K6X65lS7YiC4gdkR3XmHjAx/7d1Xcwqy0ct0vdHefT4Yj1YmfrcUD96Tx/ViASorpVu+9xzJksqN0fIq19bnu7o5FI6s8ktE0JsBs8KcEoekQGT0sWNyYItxFaxpquGZ14uE44bt7yw8lkfez5MeKhKaMBi+Nfqr8/b7V+g7Y/MtV12xkm3XTaqru1gPxxZbrts0Qu3XXbRXdvF6tHqcNtl+41s22WfTp5tu+wZa20zeSy7sbbLnqhu3EPBg+GZtsu+UNzfdtmCHWld6DJ/jXPe9obbnwFnoRrfkLIAw/H29yVXa7+3ImG031H10tJo22XXaiiWa7usv8aZEZxGU4HfRHIN22MtZTfSYLT9Tn+10XTGTcS1jdke09X2BwUtWe2fvwB0tf11rDjt/77GQmv7zao57f/cm/rGPGxZ67aLm+1PhvF4x1jbZRNr2I8AnvdWn//1dP17jbgeKfNafdVVJYUQYnMEgbLma5Tt4FZmpHr22Wfp6upicXGRT33qU3zpS19iZGQEgPn5eX7lV36FxcVFwuEwn/zkJ9e5xUIIIYQQQgghtorSBZvShdX9qkZKIz5SH8Sox1TsrEttyaV4tsZYZwpfUegpX+v500IrB+/1P5vkzOUMG9dT/ICw6xJ2PMJO/f/xmgNBwKmBDhy9/WcFq/g+R4oL9Nr1Z0YXIxkuRrtafEgIEbFt+gslAKKOTJ4tRCM7tW95PUnmBCHuPEVXcEse2TcrV18rnLLY94+7MBK3cV0N+E7Awgvl223iulFUhbkfFPGq9cig80/bhLrq4z0CP8CrBjj5a2M6TC61rLPzheaBEJlQpen7APOV5uMZvRbnxu5I6208VuxoUUepZR2tfsNecve2rGMq0nx7qQ3Tu690ONZ8TOIbc7ta1lGqmU3f9/wGgWU32Nux2PT9PrN1EHRKa/LdJeHYpE3yYFiCU7cp364Hhd5J8T3XkgAomoKZ0XFN6Owx6H4yjpVQsFIa1aRKgXpZ1Q/ILNl0LtgNR9sGfoCqKYR7dUJdOoEfoKjgWT7B5VOmFlbpfCxGddahOuOw/EaFue8XCffq2P/XYXpmq/RcdLEMlYsDCS71xVFS8JQ5x+BfWcw+V8CaXz0OtjBokPypNNnTSc74Nx+D6NRaj93TzObjDH2v9XVoKLzyXjdacskUbXIpgzcf7cB1VRR8dG62LB9VbX6e6+rNNX1/sdB6jGAt13xMvRJqPX4xtA5jHHs6mp8Hi9GVx8e5AxGWZ1WOHCvy4Nw8wdw83kXwVQU7pDLXF2JiJFoP8r3s/FT3TevXbZfH310kka+gaAqKqlBbdBj/y9zVMs1/DdaHX/GZ/W6RzE9m8FSFqXSC/fNZHjyxzAv7r/1mtRzu28a9km7c/veWjDT/zSkprfdBfb75ll2Y7m1Zh9PbuG/p6WOTRG0P11AoxXQuHoiS71KIkltVttVY3f2ZhZbtaHVtMl5sfm0TjrYe9Ro2m/ejFSqt42R0rfkOFLQRGO84za/9lyut4zfcFnW0c401mllq+r4ftK7jZL75PlZzW/9u5MrN11dp0QxVa308um7z7eXYrdvZ8vfLb33uUM3mbTXaOLe0GkevtHGdfyZ783M6QKbBcQ5QulAjsTfEwgstF3HHSV9gY9L/d2vu6JQWsf1VYvsldEMIIYQQ25ebATcC0UugV3yyj4Kban1DKYQQ4s6Lx+P88R//MZ/4xCd48cUX2bdvH3v27MEwDM6dO4dt2+i6zu///u8zODi42c0VQgghhBBCCLHBwr06kX6DcK9BuM9Aj6zs1zOSGrHdIToejuFWLGZS8avBqa8O9zH0X8+ghRVCnTqpIxEC91pgarTm0FsssytXJGHdfMCO5ge8PdLTfqN9n4jj0lW26CmU6S5VUYGyavB2YoCafieGqQmx/b1/bAIFsFWV013Ngx+E2DH8tU0WLIQQW1F53CZ9b4TUvWHyJ64FI9SyLnj1QdfBDjjdlcbqGf3S90ZYfrNC/7NJQh2rh3b6tk9t0aU8blM8V8Mt7YCVF9tW4ZRF/7MpjLSGk9u8zMNi+1h6uUxl3Kbz8RiR3noih5l7QhQGdBKzLtGsTyTvkZh16XPrk4wFCpQSOucOxqlGNRxDxTUUHEOl99MnQYFQp06kzyDcp2NmdBStnl117oUi5TEbFEjsDREbMUkeCpN5IELhtMXyGxVOj6Q5PZImVnEYnS5ycDzP0HyZo/s7efWeHp76H5cY+kQG3/ZxqwF2zkWPaegRBS2qEgQBxdjWzC65/0x9YrN370luckt2juW+EC92GOy+UCGVddHtAM3ziZY99p6rMHq+wvhIlLG9K4NUG3n/23OYro9T9vHtgPKEzfJrrSeN2AilczXeOrz76t+7l/KEXDmvr1WmWCVme0x2RLn4WHSzmyOE2CLKl2wy90cxMxp2Vs6tYufamlfEQgghhBBblaoy+3Gfnu+AuQC9X4flJ3zJnCqE2DIC2ptRbru51VX62Mc+xtGjR/md3/kdvve97zE+Pk4QBPT39/PMM8/wG7/xGzz88MPr2lYhhBBCCCGEEFtL8mCIjkdjGHEN3wmw5h2KZy2sORe37DH48TSqvnIm5L1L+RV/PzY+Cx+pD+bznYDADzCSGk+fmyRh2TQabmbpGrOpGIWIgaup+IpCNnbzmeRV3+fRSzMkLQc18LmSrOJKy4LLdY6ZncxEbp6RQwix0oNz0yhAwTR5YWRos5sjxB0Rdm2OLExxYQ2f2al9y+tJNo8Qd15lvB6cFO42yHMtODV/3KL3gwlC3TrW3OpsdttOANmjFXrelyC220QLqRTOWGTfquC7AYqmYMRVQl064V6DjvfE6HoiTnXWoXDaonDKkpOUuOPKYzae5ZM8FGbp5a2ThVhsXeF+g13/IH3171KXRqCB6gTkhnRyw9f6ZpbLqwO7jJpPx5JNMu+guT6xDydxSx52zsNadCmes/CsgFCXztDPpBn4yRR2zmXmWwWK52oUz9VQNEgdiZB5OEriQBguZpntjFKK6JzY18HFgQSPnF7kkVOLnNiTYfJrOToeimKkNZL7wpipa1nkKjM2cz8osvB/9NEzX8UKaRQSesugxDtF9es/DLa5NdqzU/imysVD8fq/r2RZ9H36p2rsOVti5GKFoUsV5vvCvDOQwTZXh2pk8hYh1+dSbwz798fuYOvb46qqBKfeggPTeQLg5K4MYe5sZmohxNblFOrnUz2mbrngVOkLbEw2ya2R4FQhhBBCiLXSVeZ/EvSsT+9zkH4Llje7TUIIIW7qwIED/MEf/MFmN0MIIYQQQgghxB1W/dYoetWn95vXsg6ohkJ00CQ62DjjqK9wNSj0ZlSjPljS6NIp6crVwNS5VITZRIxcNEQpZFzNqqoEKwNfFQ9okODoqTMzJLwaNUXDUk0cVcNWNGqqTlEPsWjE8e/EAEelwWsNtonS8LUGH24w3iJoED8QaI0qbNCWBgLthr8bfYdt1nVHNFpVr3UD9aLWsgyAb7TXjIZLbPCi32hUQYNdsdHXvxmu37xhx6a7WsFSNV7u2YVWCTAvZ5N0lNUrZnev3mEV+4YVa/D9BQ22h9LgOFdvrAtg+Q4M22jjy2l0TDfixlavmNFhrS63FFn1mlpZ3Y6Gy22w7TT7hs81OGYabfPNGk3U6Dj0zZWNafeYaVRs9J+/1LCsGoK+n0gSHTaxHbthGSGE2DZU6L88QUx11lnxllOq/2Z7tZ0zbDT/joWiK8RHQ1QmqmTfrhBcd2ni5Dwqkw5QRTEU4iMm8b0hep6JE91lMvvtwqa1XdydAh+KZ2sk94dYeqUso7hFS7UFh+L5Gom9IQCMqs/w6/UALl+DWkylFleoxVUMQ8E1VEI1n3DVI7NskyjUOxPKMQ3HVNFCCqFOk/R9Gopav2oOggBFuXYFbaZ1Mg9Gmft+PYto4EHueJX8ySrp+6PsMlVGZ0r19hkq2USI+UyE0eki7zm1iP9LXVf7gQKvPlnAFYs/LpO5P8rIC3MrJhYrRzTyKZNk0UHzAl4+0oMVvvPD9ceHo6Rzee45kef4g5k7vvy7iqoyMxRhZjDE0KUqwxcr9E1b9E3PUAlpvHa4i0r0Wl9ksly/V+vJVlkeMqhMODereVOUQwZRxyVRsShGbz7RnriO79NRqlEJ6dimLsGpQoirtFC943gn3bsK0YgEpwohhBBC3CI3o+KkfYzsZrdECCGEEEIIIYQQQoi7g6JBdMgkNmxidujk36lSPLt6sI+eUInPu3iGwvgjIYbfaD0gaLHb5J2Hkjz9vSV0tz5QwFfgwu44rq7iGgqerqA7Pp3LNn3zFp2la/VOdsaYjSduab32zWdJejUWzBjHkwPX3pDxCkLcFkvT8RWFkO/xocmLqARXBw17KFR1HVvVqWkaU9EEc8igS7FNadD7/gSJfSFQwF72mPhObrNbJYQQtyW+J0R8NMT0N/KUL60MuK8t1QOUQl06Tm5rZZ+5HbmjVXJHqy3LBU5A8WyN4tkaHY9E6Xw0xuKLKm650UwNQmycwmmL9H0RYkMm5XGZGEM0F7gw++0Cs9+G6jdHQFHQagHRrEeo5BMq+ZilgMyES2/1cjCpArWQSj5tMDkcIdtpYofqEzcN/pvpesUqGEkNM62hRVScgoeT9wjcgOguk8rk6n0zcCH7ZoXX/28HiVUd4lWXeMWhf6lC73KV5x/sQ/d87vvLcbSwQvmSTbjXILE/hKIqBH7A8M/VAz59BbIpE0+FkO0TL7vEq9WrXTqPvbvA8w/3b/TmXWWpJ0wpXqZr0aZjscZ8evUEQmKdqSoTozEmRmMkcjbDp6t05Wu87+gc33p88GpW3UsDSWJVl91zZQb+XopLf76Mk9s6v+Hne9J0lao8fX6ahUQET1WZj8SYSd5av+d2F7Vr7C0sE/I8bE1jORRhMhOqZ8X1ffpzVQ5M5VADONeX3OzmCiG2GC1c7432qlvnPC/ERpDgVCGEEEKI21DrBnMZosMGlfGtNYuZEOLu5KOgbKlUIOvD34HrJIQQQgghhBCifaqpkDwcJvNAFD16LUVhpM+geH7hapY9s0Oj/6NJzJQOL6zO5Aers2hcMbEnCnA1MHViIMrEQJRSvJ7+Tr0uperMQBT7TIHhyWtZWXPx0C2v3+hyjgCYDd2dg7yE2DCqyvODu7l3cZ6w51JTNcqGiRb4ZKwqEdclhoMC9FVLPNc/hKvLMAqxvXQ9FSN9TwRUcIo+8z8oUJ12cYO1BWvt1L7l9ST91EJsDreyehCvbwU4BY9wt07p3PbLTBXu1el6Io5b8Vl4oYTXYB3bFRkwsLOuDHYWm6K26FJbdEkeCktwqliby/0yXkih2KdTvOHtXCGC7vrYpnq17E359ezSjSYrKLb4jfBVhWLMpBirZ7UsxAweOb3EyEyR2c4ocz8sXu1zyr9rsfhKmciAQXTQIHW4HuypBtCRs/FU+N4zfaAo6LaPr8JTry4QcjZvEoW3Hs7w3h8tcPBUgfknJDj1TiqmTV67J8Ghi1n2zJSIV11KsWvZU9/d20E1rHP4Up6OR2LMfffGo2DzZGMRXtw7wOMXZ+kp1ifNGMiXObiwxOnuTubiMXxVbVHL9tZbLnAgtwRAyK8fwwGgAL3VMody9eB5Jai/FgDTmSiT3dK3K4RYSQ3Xz5e+vfVmIpW+wMak/+/WyFMVIYQQQojbkL8X4qeh9wMJLv1lDv82HhoJIYQQQgghhBBCCCEa2/u5roavL75SvjpIEKD/I5cDU4FTH4miugG6HaB4MPrytWDV0oUa1TkHJ+8x9m/34JjXBlS99nSGUmDgmFrTNp3dlyCW865mT33szDwv7h3A1dY+OOvoYA8PTcxzb3GWhVqRE/G+q9kUhBC3x9Z13uoZWPW6ct344Mfnxkm4Nq4cd2IbyTwcoePhGKqu4FY85n9conxBgkKEEDuECol9IXw3uOkgXmveIdxj3OGGrQMV+j6SxLcDommD/o8mmfxq7parU3SF6qxDIEMVxCYpnLboeiKGGlbwra036F5sT76mYGvN+2U2QjYZYrw3Rm/WYvdcGf+XOqlMOdQWXZyCh533KJ2vUTpXI3esSmJfiPgTcUwnQPNh78Ui50cTuJf7mQJFQfV9VN/flGC+RNFBCcBw5NjcLJpf3/a+Avg+8arLroUyvUtVojUP3wlYerW8uY1soBAN8+17Rup/+D73TC4znC/w4Oz81azA2XCIV4Z3bVYTN0x/qcA92fp6uopKVdN5q2uAimmi+j5d1TIdSolkxcYyNJaSYS51J/BvoU9YCLHzpY+EATDTGta8u8mtEWLjSHCqEEIIIcTtMFWKh3wSJ1X2/KMOlt+usPxapfXnhBBigwSBQhDsvNmbduI6CSGEEEIIIYRo3/yPSyT2hqhM2dg5rz4gcMnlSlK46C6DjvfEMDM6dt5j9rkC9v8UX1HHxSfDJH53kdKYvSKbxvWBqQCVuI5Taz0AMlAVXt3fw7NvT+BqKgnL4cj0Eu8OdK45QHU+EeOFjhEeyk/RY5d5b/Yib6Z2UdFuPRurEKJ9Yc9FAfbP5Tnbn9ns5gjR1GAhx55f7kQLqXi2z9zzRQrv3n7WwJ3at7yeZPsIceck94eJj4RYeKmEk2+ccc6ad+l8NHQtXdUmU3Tq9yfXtSV5MIxqXs4OWPMpnq3R8VAUI65x6c+X6XkmgdmhoWiwxoTXV2lhlcDdAhtA3LUKZ+vBqcn9YXLHq5vdHCFui21onNjbAUFAouJw+AsXiA4ZpO6JoEfrfT1u2aN4oUZ5zCb3jsWb//e9HDqTZ9dMlT2XyuSTJotd9UCUicEoB84XefroHD96oPfOTkTm+zzwdo5AgdOHJJvjHeP7RMs+iYJDaLnCwEKFAHj62Dy6H1zNxeYpsJwwKfznGdzSFp9hQlV5t7ebM50ZBoolMlWLrkqVDqu2aYHXG6G/WODw0gJGEOAqCi/2DVPTV06E4qsq87EEk73hTWqlEGI70RMqkQGTpdfLWzIwVfoCG5NtcmskOFUIIYQQ4jYVHlIp/PYy/c8m6XwkRub+CMtvVMi+LZ3uQgghhBBCCCGEEEKsh/yJKvkT9f626rdGr74eznv0nHZIT7lUZx2m/nuOyqQDQDJkraxkNw377EJln8yyTcjyiBddOhZtKimNd59KEKjXHkJHDGfVZ6fdFG/d08n9p5YBGMqWGMqWuNQX4919Nw9w853Vg7ZKqYAf0cu+iTz7Jws8nhvnYqSDsVjninJBo7jZ9XxW3qiuRmPdb2OZSoP6FHd1he2OAVC8lRUGDcbENdpuDeu/E+MOGiyj9/65Va8Z2soIhYm3G2T/bDR+sc11aBjCsMHr7xurl6o2+O7bDTDxQ6sL+ubqjWLkV+8Adnd9+0YtG9tUMWs+yWpt9Q6q3tC+Btu80T7XaFs23Oe0BivbaP0bvra6QqVBYIsS3PDhhots78vXKqtX1vUjq5fZ4Hv1I6s3XqP6Gp0j/BsT4zXYlxodD6rTYL0alGu0zHbPfY32a99sr7obqQ2+v5F/8RIAoR6dgY8m0WMavqaw+FqZ7BsyYaoQYmcqXayRPBym48EopQs13OLqk7df81GNzR00Gh0ySN8XJdyro4VUfNuneK5GZdImsT9MfHTlZDPpe+vZXrPHKthZDyOtUThp3VJgqhZRGPypNGZKY+5848zZS09nm9bx4RPFlst5TRlp+v7Jhd6m7xvq7QfcFOzWASCD0XzT98fLtz8BidHoh/oGWoPrneu5fusAnpDefDm1BveTN1qsxpu+X0u1HjqsNbxAuuazpyeu/vv032nE+kL8g7+89tofHxxquQxx94p89GLT960vPXRH2rH/s29iJFX0uEZ11ll1r/Dq7z1x9d+a75OwbPqLJfpTJTL31Y/V3c9N1/ui9tbP+Q+8uczsdwrERkxUQ8E5HCFRdfnIG9OUkjqzgyEWB1ae1+Lh259sxr/x/tD3UQLI9utY+0Avtz4fq2rz43440fx3ZVVfXAPn/K7bagNA1W6VOb11ZvVUtPm4vv6fOdmyjut1Px0jNhpCj6koyrXvIggCAh+Cgkcl71FbdChfsrFmt1aQ0v5/8krT98/+x8dxQhqXYikukeKh8Tn68mW8UABqgOK1viazJ2JN3z+dbf17n+wpNS/QoE/oRnpldVtTdoX7svP4KIx1xTk52IGvKsBNvqdGfTnXv93G9c/T/Reavv/3Ukdb1mE26gS6zql0f9P3vzz5aMtllKzmkyemY63HyFZqDTpJrqO1uPYBUFrsYsk2zqOu23xCynypjX0wvLoP7Hoxo/F1+fUWSs2PBcdpfZ2mt9hm0Vjz8/G+jsWWy/AbdnheczHb0bIO17v94HWzxbr2Jlrf07SitrjuBXD8tWd09yo+nr3FJyAQYp1IcKoQQgghxDqoTjlc+P8tkX4gQucjUbqeiBPfE2Lir3Ob3TQhxF3GDxSUHTh706oHKUIIIYQQQggh7mpazWf4tRqJBQ9Pg/kfFSldtFFUiAwYRPoNEt9wMfMw/VENIxfQ/YoPn++mOuNczUzkWT6jLy+j35BpKJb32g6MXOwIc/xghkfeWb7WPv/WMxedG0ox2xHh8XcX2FNdptsu8VZqEFeVR7tCrAvf557lBbomy5iefzXWsGJqvDXavalNE+JmjLTKrp9OoyiQO15h4YXyui9jp/YtryfppxbizvHtgOlv5Nn9Cx2k742w+NLq854e1/Bq/qZlTU3sD9H3oSTVOYfs0Spu0cNIaSQPhkkduTZo/ewfLBDu1un/aBIzozP3wyKFk/XB4n7Nx0iufZAzQGJfmFBH/R6h67EolWmH6rSDNefcchZWIW5Vzz1LnPrbfRRnoiT6ZfIMcXsUHRIlG9PxsQ0Vy9RwDLV1ZNIaaGGF3g8lCXXqVzOiAmSPVShdtAncgMAPUIKA4PJyPVUlFw2Ti4Y52dNJzHaI2Q6jf32e2O5rgVeqoTDwsRRO0cMpelyJUTOcgMySQ2bJoXq2wtHHUzjhW/sNaIuq4hmQWnDBl8CYjTTw95PEhkL4tk91xsGadbAWXWrz7tbPinqLOkpVPEW5s9mAN5B2eVKvohHinaHmAdRCCNGuwIPKJZvoLpPl17feNbL0BTYm/X+3Rp5gCiGEEEKso9zRKrmjVQY+liS2O0TmwYhkUBVCCCGEEEIIIYQQYh2N/rhKYuHaaGvNg573Jeh53w0FLyfOSb3jE5u8NmLdzGiULtRQNAUtorDYbTI7EOHBN3JXy/gq7HuzjOpDZu5axtR8n4ZvKLimghNR8LwqVkgjlzQ5PxTHtH2W0mFmuprPoN5KKWby3Uf6ec9bebrtEk8vj/FOopfFUOK26hVCwO5insFyEVtTycZC5CIm86koS4noTdJnCrF5TNdl6JNpQp314T0z3yxQvtQ6C4cQQuwEvh1AEKDcmMX8svje0KaeExMHwlSnbSa/tjJj5/LrFdSwgqIq+FY9eNZacJn7fhE77+EWfcJ9Oul7I5hpncVXbm3CgdzxKpVJm8igQXTAJH1vhM73xPDdAGvOoTrlUJ60qc1vrcxsYmdKjxSIdFaZeGGAI588t9nNEdtYx8NROh+Lse+t+RWvewrMdkc5cSBzNVj0diiaQmxodSa/zP1RMvdHr/7dfX6csY4US9EIFdPAuxKIpyiUQyblkEnqzQrLb1bQYirDn8ygR1Sqsw4z38zjWQGLf3GQ4fMVBi/VJyaY7zPpnrV57Pksx96TpNjRPKPg7ZgfNRk4YzNwyia/u3mmPnFzekql7yeSGHEVO+9RPF+j8M61rIThbgO34nHxj5eb1LJzpMoWpuczlW6epXs7WQ7FKGkmKcciVrUpRzbuuBRC3F1qSy7RYTmniJ1vTcGp5/71APP/vXXE9vuONU8DfaOQ2n4HyICRbbvsU9HzbZdNKGvrhEmvYaYPK2h/1pPKGp91WUH7s+bMeu1fBE44nW2XTWhr+76X3fZvcBad9tvsrGFbAOTd9gcFHM8NrKnudnkt0p3faKKcbrus5bZ/eHcnSmtqxxPJ9o+tlwt72y6bd25voEYzlmu0XdZQ258+cLG2thv284X2Z9TpCLff+awq7Z9nknqt7bIAx/KDbZf9e93H2y676K5tAM1ajvHeUKHtsudL7c+AvZbjCmAokWu7rOu3fz6ouGu7SC2qobbLZsLtB1H2R9rfzu4az3feGmYdGa92tF1WvYODSqa/UWDvr3SSvl+CU4UQQqx07NgxXnnlFWZnZ5mfn0dRFLq7u+nr6+Pxxx/n/vvv3+wmCiGEEEIIIcSWVu7WSCx4LA/rlLs0AhX0fz1PqEMnNmwS7l35TOD6wFQAt+ITGw2hR+r9ltGZGvHiymcDmgedMw43Ss2uLDfAykFnngpDcxUePA0/eqiXUqz95xOrqConkv101YrcU5zjvuIsk06VM6meW69TCEHUrQex5KIhXtvbt8mtEeLmessF7l2eR+nUqU47zP2wiFvYmVl3xJ0lfdRiO1E0hcBf/Zzf7NAIdegsvbz+maTb5eQ84ntDmBkNO7vyPiHcbdD5WJTShRrx0RDhnvp9ge8G5I5X6XioHvhUmbQpX7z1AFs762FnPfIn6uP3zE6N6KBJZMAg/UCEzsdi1JZdCqcsCqesesCvEBtAUWH46WlOf20v+fEEqeHiZjdJbFOdj9XHY053R7k0UP93yPbpXaoyOF9hbDBOMX77AR5u2efSXyzTdzl7qm/7KIaCcjnwNfADnLxHNANH5paufs4HJtMJznR34mgqpnvt/O+Vfea+XyR9T5iFF0p4Vv2c65oqFw7HMeyArtka1ZjGuSMx9p4s88CrBSZHwizer21IBsqZgybdYw59Z21mEjVyHe2PIxR1XU/FSN9XH9vs1wIi/fVJIbqfiFOZsHGrPmpIwc7dPfdq+xayKMDp3vbHbW4Hx9L9PLV0iafOzvKjg/1Yodvo1xVCiMsCf12TvwvRtjvd/7emKJvAk84JIYQQQoh2lS/ZxPeG0KIqXuXu6YASQmyuoD6J9I6z3dfpBz/4AV/84hf51re+RTbbfNKlTCbDRz/6Uf7xP/7HfOADH7gzDRRCCCGEEEKILS51T5jEvjC5d6osjhrYUQWjGpCccfE1BQYMMvdFb/r54h4Fu0Mh+E9F9KhK+t5rE2YqQCmhMTcQJmR59M5YGM7qG1HXBP2GceMLmRCduRrq5eLadd2A73trjm8+PXjbGT0WQwleMCI8uXyJAasgwalC3KbeSj2IZT65cRPnCnFbfJ/7l+foqZbxUZj+7zmqU6snTFhvO7VveT1t5+0jfdRiq9ATKpkHo5gZDVVX8GoBbtmjNu9izbvUFlcmmPAsHz22OlgnsS+MZ/mUJzcvc2r2WIXoLoPdv9CBW/UJ3IDACwh8MBIaqqEQ6tSpTNTbWLpQw855dDwcJXu0gh5XiY+GMFIaTr79ifSbsZc87KUquWNVUCAyYJA6HKbr8RiZByJMf6sgmVTFhsnsyRPvL3HpxwPc9+nTm90csU0tvVam89EYibLNk0cr2LpKIW6QLDmUwxqVyNqSSzRjL3uMfyVLqFvHLXl4tYBQh06oWyfcoxPuMQio9xtdoQLDuSLDuWsB2KWfTJI7VqU641AZt6mMN/5tOnNfHNtU2DVWRfWgHFeJlXyGxiwGJmF+r8nsQWN9g1RVlVPPxLjnuyUefCvHy092YkXXbxvudFpUJX1fBK/qM/m1HM7lANTMgxHSD0SJjZooioJb9Zn+H/kWte0cXaX6pBgfODMBBAQoeKqKravUdI2qoVMMm0xm4rj69tnfLN3kbLyL/aVFPnByim8+OLLZTRJCiA0lfYGNbedtspn9f2v6xV94vgSsLTulEEIIIcTdylpwSewLY6ZVqhKcKoQQd6U//MM/5N/9u3/H6dP1B7DBDb0XV2deve715eVlvvzlL/PlL3+ZAwcO8M//+T/nF3/xF+9co4UQQgghhBBik5z9D48DsHchi+H7TKYS9P+zt+h6Kkbm/nrgqVv26P5GBf3G7ElNAlMBvGWdY3sz6P/vDtILNuk3Clffm9wXZuJA+PL01QYT94WxajpKAJGKR/d8jWTeIXaijNat1x/YOwFaRGUik+DVvX0QBIRcn7hTI2a5JCoOtqHiewpKgyeymrm6v7DRA+/qrmsDx/08+IqyclTkGgW3+NlGH2u3LqXRg/w2H+43+mzQaIzmDY1RGoztVxuMwW+4Dg0W6jdIlNCwHe1qc/2DGxroJVavmOKsXgmtsv7ZVtZLw/3hdupr8L2qNFj/6zaTevlgS5Yc1CgrBv764QZ9+bd43DTav4JQg/pD6xOMcnUZDRfcxgfd1Z9TnNXbUq2tLqdW29vnAmN1QwJt9WteZPVrqrVyGUqjxy4NVt1TN340UaPzQTvniL3/9KVVr+kplaGfTqNHNawFh8m/zRFIDJG4DdJHLbaS6C6Dvo8kCdyA6rSDc/maOtSpk9wfRtEU7LzH4kslymM2qSNhzLTO7PdWZ2BM7AtRulCrp7DbJG7RZ/yvskR3mYQ6dRQV0JT6/xXIn7BwSx6BB6qpXM1aqsdUMg9cu3+J9BvrFpy6QgDVKYfqlIMeK9P3kSRDP50md6LK4kubl3FW7FyKArvfO807XznA/PGuzW6O2KaW36ygaKB8IMPYQJxE2SFc85jtjnB+KImnrf/9bm3h2gV3bbE+UULhZP3vC//fx0hZNVKWRbpao6NiEfJWnrPjIyHiIyGCICD7dpWlV8sN78ECVeHi4Tjj+6N0zdr0TVgo+Di6ghoE9J+26T1rszBqMH2PuW5BqnZM5dwTEfa/VOWJl5Y4cV+KxZ7wutS902mRejZda8G9GpgKkH27SvbtKugQ6TOoTjubek1yp720p5/981mitouvKGh+gOF5RG2XeM25emt+eHaZyXSc40PbZ6K9qrZ9gmmFEFuAH9DztktkyYdPpAk8cCs+TtHDK/soGiQPh69mUxdio2yF/r81/YK6JR9dkeBUIYQQQoh2mJn6pdZ2nkVFCLH9BIHSeADaNrfd1uk73/kO//Sf/lOOHTt29aZeUZRVN/o36wi48t7p06f53Oc+x+/93u/x27/923zoQx+6Q2sghBBCCCGEEHee6boMZYscXKjP5rtnKY/3y51oofpgPK/m47sBuh8w1hunEtE5MpYD4MyeBLPdYXxVufqfFvJIFFwefCOHct39V77TYGI0wtDFKgC7zlmUkxrL/ea1xigKgQKVuM6leL2fb9e/mmLXT6eJ9Bug1+/f5lORq+VrhoYdDbOcunHN1qGD0PcxPZ+luAweFOJ2vdo3yEPzswzni/SUKjw/Moynb92AXnH3SN0bpvupOCiw+FqZ7BuVO7r8ndq3vJ620/aRPmqx1aTvi9D1ZIzKpMPsdwpXAzWvUDQI9xhkHozQ/2yShRdKdD8VJ3eiuirTp2oqGEmN6szGZ5VuJXChPGZTHmuewfX69Z1/vkhlyiaxP4xv+xTPWRvdTNyyz9TXcmQeidL5SIzSRRtrdvO3n9h5krtK9Ny7yKUfDWKk8hsTeC12tgCWXq1w/tcPbnZLAPA0leVYhOVY5OprpuuSrtZIWTXSVYuOpTJaWEVRFDoeiqKFFeZ/WLp5nbrK3K4wc4Mh+iZrjJ4q46ugeaD60Hveofuiw+KowdQ6BakWewzefCTMg29lue9YnjcfUclnzNYfvMvZSx61JZf47hDDP59h8m+z+LXrCrhQnbz7fk8L0TBvjPTf9H3V9+kuVDg4t8xQrkTEcXl1pA/Q0F2X4XwB0/MpmiZz8eiWya6q+y735ufwFfjBkV2b3RwhxDaQGvNIn/cojGiw6KJoCnpMJdQVQo+qBF6A7wQUTm38Pd+tkL7AxrbTNtlK/X9r+jUf+vkMs18tyayMQgghhBAtRAZ0kgdDOEUPa0YunoQQ4m7z7LPPoigKQRBc/f+Vm/yRkREeeOABurq66OzsJAgClpeXWVhY4OjRo1y6dOlqPVc6At5++20++tGP4rrymyKEEEIIIYTYuR4dnyVl1Qd1L0dClEImse/M0vmeGACqrpA6VB8MODK3cpBfrOxyoFikZqosdoZZ6gihKQrFlMFL7+tcER4aqApjB2NM7okwdL5KouBQi7aZ9e+GjK3PvjXBNx4Zvpx1deN0FasowKIEpwpx20qhMD8aGuHI8iy7CiV25/Nc6MxsdrPE3UyFwY+niPQb+HbA5N/lsRelH1DcHumjFltJfG+I7qfjZN+usPjKTbLJeVCdcajOOgz/XIae9yWozjosvLg6uEc16vvlds0+E3hQPFOjeKbWuvB6LteH5dcqpA6FSR0OS3Cq2DC7n5mkOB1n4GNJJr6aw69tz2NViJuxdZ35hM58ot5ftf93XsZIqoR6DJIHw1jzbV4vKQqzQ2GynQa7p0t0jLsYlyczCBToOe/QddFhccRg6t7bD1LNZ0xeeaKTJ19cYu+5Im8+2nlb9d0txr+Spe9DCeL7Quz5bBez3ytSOn9nf8O3G19VmUvHmUtGefTSLN0liw+fGsdDIex5XN+LGsxDLhzi1V0Dm558dm9xCY2At4c6scytETArhNjaYrM+dlJh9hEd9Z/ffGIKITbKVur/W9MvpxFXGf1MJ+N/lcUtbPYlgBBCCCHE1hTq1hn8eBp8mP56brObI4QQYpOFQiE+/vGP86lPfYr3ve99dHd3Ny0/Pz/Pj370I/7sz/6Mr3/961hWffa0G2ewEkIIIYQQQoid5t3eTh6cmifieqSrNTqqNYoZnfKlGtEhE0W7eQDo4Fz16r93T1V46ZEurI76oD3XaDx4zzVULh6KoWvtZ3KZ+rs84V6dyKBJfNRk8r6NHcgXtWyGlkrsXi4SAFOZOGQ3dJFC3DXe6e1moFBi/+Iy2XCY7HWZcIS4U+rPlFKopkJ1ymHq63k2fUSu2HGkj1rccQoYCRUjrRPu0UkeClNbdll8udz6swEs/LhE8mC4Hsja6Jx4+fJeNda11XeN3DsWXY/FCHXrFE9A/HARRdvsVomdRA/5HPrpc7z+n47Q/2ySqf8h1zdi53MKPk6hRunc2oMWa1GN6XvDTN8L93yrhFkNcEMKuU6N9LRLzwWHrjGHpd0Gk/fdXpCqFdWxwirx0s7Patw7WWXXeAXXUDl3IE45desXDrPfLRI9a9H/bIq+Dye4tOjg5OXE1pKq8troAAdnlhheLmAEAYvRCGPpFGXTIG3V2J3Lk7FqHF5Y5HhycwOmy/rlbMLbJ2GeEGIzBAFGOSA+7ZOYqv8WDP3AZmqTmyXEZvf/rSk4deGFEoMf7GDkFzqY+nqe6pTMniWEEEIIcaOe98dBgfG/ymJnpSNKCHFnBYFCEOy8ntLtuE5DQ0P8s3/2z/jMZz5DIpFo+3M9PT387M/+LD/7sz9LsVjkj/7oj/jt3/5tJicnN7C1QgghhBBCCLE5IgMGkQEDLaTgWjUirkdAPZlSNhIis3dl+dzxCi/+Xw6ueC1RtumwLGIVl5HJMrauYIU1GqZkWgfWnIs155J9s8KZj+1b9/pV12f/eIFdc2VMr74OngJne9NYIQPJnSrE+vBVldd29fPo5AyPT06TDYeY7YhysTN52xlphGhH5uEInY/GIID5H5covGNtant2at/yetpu20f6qMWdosVUkvtDhLp0zIyOkdJQ9cvZTW2f8gWb7NFK2/VVpx2q0zcflxjdVQ8c6H82xdifLuHc4SQb47/5VMsyw//ri3egJbcm+2YFa8YhfX+Epe93MfvVDDPPFbCzjQOVyt9MNa1PUZrfdxWsUMs2DSQLTd+P6nbLOnS1eaBVd7h1JqO0UW36/mOJ8y3rmLSbB9Z0RJsvA2CpHG36fjTUetzufD7e9P3ZTLJlHXHtNq5NYnDksxc481d7ePL3VHZ/eBKlwc/onx0auPVliB1t7z96a7ObAMD+X3/5tuvo+5mTbZedyWj0/kSCUKdOZ+Vyn5Dto5kq3RfrQar5UY25BzTQV963LleaT7g0lMkBoKs+6nV/X6/qNg/gPDrb/Jgd7Vxu+j7A0yMXm74/U2l9fpop3LyMYXnc+0qBeNW73DPo8cgrWX70WC9W+FrYRFVvnhHsxrNoZdyhOm0THTLRIupdF5y6/5+8csuf9YEx4PyfPrji1UVbpfecAhak3Cr3HZxoWde5ha7mBazWM2448cbXLrFyjQBYikbBb37v1+g37XrDqVzLdmT05tfHOb/59QBAUm3+W73oNr8PrDitg7Zd9/ZnMTH02w+I11vUETdbTw7gxZp/caU2rls9v3mfYVxv3Y7OWPPv3vFab3PvNvsnzDYm7Ey02EfD3a2vSU8u9DZ9329jPVqt6+5469+e3eHmZU4UW1+TLj2dJfNQhI6Hoqimiu8FlCdtPDsg/9XW1/hbkfQFNrbdtslW6f9bU3Bq8XSNyWKOXR9PM/jxFIsvl8kd3Z4HkhBCCCHERjHTOm7Jx17a+bPMCSGEaOy//Jf/wmc/+1l0fU233askEgl+7dd+jc9//vP8yZ/8yTq1TgghhBBCCCE21pn/8z2rXjNj9cHE/TMV9lwqUYwbqF5A9/K1wRrpuWUCwFMVTg+luefSyhShy7EQr/7Pw1Baea9VxKCoxSEBF/c6WIZOsKxAocFAo8TqARNGaPVgNKe6emDOmf+6er1uHKgU1FYPHAkaDWZqMH6t55LDvvIiaddCAVwUpsMJpsMp8mYEAghPr/4c0HhG/wavtRg3Xm9vg881eq2dum6q3Wf7DZZxW8tta5mrG6d4bS600bZrs9zc0QYDdW4op2kNamsxWG7D3OJ3qLhtfrDRYWOsXn+lzW54L9xo28FyNMrzI0M8Mj1LxqrRMV1jdKHAj/YN4l7u1wn0lQes0mgQWps7ZqP1D4wG+1yj77phhY3KNXitnQE1DZYZmKtPVl6kQV3O6m2i2A3KNfi+fLPBcht81/6NJ85G54cGx4PiNDqmV3+23X260X7Y8HzbYBl7/x/XBrabGZXOn+/AswImvprFvcOBVWLnkz5qsZGMpIoe09BjKokDIaK7TAIPrHmH6qxD/qSFk3Oxcx5uaf3Pb5VxG9/2UU2VkX/YycU/WcIt39nz6GAlh6NqzIfbH/i5lVRnHKozDmaHxsDHUnQ9GWPmuQJB8zgdIdYkMVhm94cnGXtumPS+POnR4mY3SYgtz856TPxVDkUFLaISGTBI3xtB663fcykBpC94pC541FIK5T6V3B4NN66C77ecaCl9ykWvQLVrewVdtCuWd3jglTyqD9PdEY4fTJMqOjx+dJEH3l3mlYd7brluI60SHTJxiz7WrPxgrocn314gZnlYpsqJAxmGaB1gtpG6qhU8RcEyb+8eSgixMxlJla7H4+RPVildtLFmHHxnox9WCNHcVur/W3MLrBmXsT9bZviTGbqeiBHfE2Lya7mGDxGEEEIIIe5GTsHDzGh0PRFl8eX2Z4AVQoj14AcKyjabvakd7cyUtpV87nOfW9f6dF3nl3/5l9e1TiGEEEIIIYTYKIofsHu+yMBSGdO9PEhcDQgUiFfqDxUDoBpeHci5kA4z3hNnviPKYjpM96KFrWtYhsZSIgyKgtJk3HnVbD3b+1bTky9z79QSYbe+bcqayYVoB4vhRFvxZEKI21M1TX48Mgy+z6HsEiNLBT54eoJXRvspRCVXsdgY/R+tZ6Gb+OssbnFrBKbu1L7l9bSd+qmlj1psGAVG/uG1zJDVOYf5H5UonavdsYG5btmnPOGQ2FvPbDT6mU7O/9fFO7b8wUqOQ8UFAH5gRvHU288mtVnsZY/c8SpdT8To+3CSmW82z2AqxFp1Hcky/3YX0y/2Ee+voIdloLEQ7Qj8+u9d8WyN4tka2t8OYpQCUmMeyQkfOwGhQkA479Fx+spxZTG1N8TEodXZFrsmaoyerqHVwDdg5smdF3wXLrs8+HIeJYC3j3Qw31XPJJtPhShFdZKl1hn+mul5b31Ciulv5G63qQLIZC2ilkcxqvPCe5pnVrwTdNcl5HksRlpnKxVC3J38y/MSVCZsKuP25jZmnUhfYGPS/3dr/X+3dHXplnwu/OESAx9LEh022ftLnYz9WRavsjU6zIUQQgghNtPMt/Ls+gdpMg/GSD8Qxav62MselSmb4tnahswOK4QQQgghhBBCCCHEVnH/xSV2LZVXvDY2FEMBFjshnzSY7w4ToBCpuLzv1frA7uOjHUz0xq9+phwxKPWG7mTT76h41eaRS3PEbJcAmAvFORfrxtZ23gBBIbYFVeXkQBflkME900s8fX6a+USE1/d0t8w+I8RamBkVM61TGqttmcBUIYS4md4PJlBNhfJYjdJFG9WsD9IsnLFYfLGEZ21OppilV0rER0wUrd6e4V/IMPbfNj7bVmzEZOByYCpAr1ViOpra8OVupNyxKm7Jo//ZFOE+A2v29oJ3hLjR7g9Pcvav93DqL/ax/2cuEErKPibEWjlxFScOZjEgOeEz/qEQvqEQXvRJjXmoTkB4PmDwfA3dDpjbHcKKqRiWT8+UzeC5GgqQH1GZf0Tbkfe4975eQAng+KNJ5iORFe9pfoAKqK6Pr9/auqumAj7YWbmHWw/DM2UUYLYr0rLsnTBQKqEAc1EJThVCXOaBUgMUQAXf9rGzLon9YUoXdkZwqhDr6baebE5/o0DyYIjeDybJPBhh8cVy6w8JIYQQQuxwTt7n4p8sk34gQmzExEzrRAYNortMOh+L4eQ8sscrFN6tbXZThRA7UBDU/9tpdtI6WZbF+Pg4uVwORVFIpVIMDQ0RiWyNTnchhBBCCCGEuF1TXTFM16McNojWXHpzVXoWLE4dSLLUeV0WwgCqUZ3nPtAPgGttv6ynt2p4scC900sAzCajvL2rm9CCucmtEkIAjHemmE/EeOTSLL3FKk+fneWFgwOb3SyxgzhFn8APCHdvrckIdmrf8nraKdtH+qjFWiQP1q/f46MhOp/wUVRwih4LPy7h25t3UDgFn9nvF+l+Ko4eVTHiGuFeHWvO3dDlVmcc5kJx0k4VS9VZCu2MAIbSBRtrwWHXT9UDbYvnasx9v7jJrRI7RaynyqGfP8eZvxnl1J/vZ//PXCDabW12s4TYliq9Kp4Ou563WXjAoNqlYnXVgy1zhRAP/rBA34RN34RNQD2e5ooAdmxgqur6hKs+2U6DfKcJlWvv6a5PxPJwNGXtgakq9L4/QbhXR9EV2HmbbtOUo/X74Zq5NTaqo6kEwJGlRYJQwHh3crObJITYLD5EjqmEziiotWu/pJlf7QbAzOgYSRWnsP0nK5C+wMZ2yja50/1/t93TXThdo+eZgEj/tYfFKa26pjqGzcW2y+41ltouu1tvP52uh9Z2WQB/DXvcWuZ5WusllhO0/4mi3/5OtOzGWxe6LO+ubedctmNtly267c+GHdPWNgPBmWpP22VNzWu7bFhr/xtfa8rnZ7vebbts3mv/e3krP7ymdpyq9rdddi3rmNDbD9LSlbX9oC/X2u8M1pX2v++1tBlgnkTbZeNG+3WXnPaPFX8N5w1Y2/YYWcP5PK1VWhe6TrdeaL/uWPu/Q98x72m77KlQX9tlAcZLmbbLRvT2zx1d4bVNBjEUy7VddmkNx0rZbX+glK62vx8BRNZwLg2p7T9cGi93rKkdptZ+3Yvf3LPqtRXflO8TX/TpPWMTVxR6n0nS8wzYIZVKVCOfMZjaFcEJr7wmGfzEO2tqsxBCiK1pfn6eL37xi3zlK1/h3XffxfNW/jZqmsaRI0f4+Z//eX71V3+Vnp7271eEEEIIIYQQYqtZTEVYTEUgCAjbHkqwRE/e4uFjWcpRjem+KJODURxVAWVtz0q2Pd/n4UsL9OUruKrCS3v6KUZ3bnZYIbYry9R5Yf8uHro0S3+hwgNjCxwd6d7sZokdInAhf9IifU+E/meTzDzX/nNQIW6V9FGLW6FcfnRdW3aZ+Wae1L0RAjcgd7y6qYGpV5TO1Sidq2F2agx/IlPP+rnBwal+LeBEuv1xU9vJzDcLdDwcxezSSewPkT9pSRZVsW7CHTUO/8I5zv7tKKe+so99Hx8jOVza7GYJse3YSZWp95n0vuEw/H2bSrfC0mGdSo+Kr6u8+aE06VmbeN4jteiQzHlMjZgEmgID3o4MTAXom7BQgMXe1eMZO3L1rLFnRtcWbKiasPvTHegRjcAPUNR6H6YWVfEq2z8gaTOFLZc9EyVcVWGyb2tM9DGTSGLpOg/PzHDv9BJD2SJvjPRgmXfPZIpCiLrwOwrhEwq1gwFOv1+f3cGH0v+rjGoqhHt1fGfz74eFaGQz+//WZRpGp+xjptcW3CmEEEIIcVdRVUo9KqUenXwhxNClCt3zNuGqRzrrkMk67L5QoRZWOXMowXKPDEgTQoid4o//+I/59V//dQqFAsFNJjpyXZdjx45x/Phxfvu3f5v/8B/+A5/5zGfucEuFEEIIIYQQYn3smcuxZ7pIyFk9UCtW8dh/ocj+C6uz8PgKPP9oL1b42iNMX119HxU0eA2zQZBro1uw6upnmo3GEQReg/oavXYjf3WZyFR9fXTf5dHsFBHfpaCHeKNjF35JJXx5PG6wRR63NpwfdLNiiBstt9H3emO5RmUavNYwNrrRrtTosw3mZFTd1R9utL82mke00fd/4xywyhonvl354TbLtbN9gUBrsF4Nyik3Fmv43azvDtawulUNoeHM0YFx7QDQXRfdr/89mC1zcnca29Sh0ZzJbW63huWcBg1pc/JkzVh9wPoNzkPBjcXaHD/V7jGCvjoQKAhWD0dRGhwjjRe8uoH6Ddm1PGf1QRMUVg9EDozVdSnO6nZcnwlhrRodD2qD7/XC//7ktX/7Ph948zTxPSH2/HIn09/IY81ubECVuHtJH7W4Fal7w3Q+Vk9AYM05OAWfxRfXNpH2nWIvefhOcNfNe7Pe3LLP/I9KoMLg30/R/9Ekl/50ebObJXYQI+Zy8JPnOf8/dnP2b/Yw8pHxzW6SENtStUtl7FmT+LRPx0mXoecdqhmFYI9Ottcg12eS6wNfh2TOI99tkO8x6YquLZnIdqC6PkfeKpJecvBUmNu1erydZdbvHdMFm8mBm9dlVn0U38fTVGIFl92f7kQLKyy+XCL7dpXeD8VJ7Asz+pkOnJzH4qtlyhfXllRJAL7PU2/OowTw5r0dWypgOhuJ8t2RUR5anKGnWOUnTk4y1png3V1dm900IcSd4kP4pErtQEDl0ZUdqqXz9aRjhZOb0TAhWtvs/r91CU6tzTsYe0OgAWtLjCaEEEIIcdcJdJXxvXHG915+wfdJZx12jVfpXLC57+08y50Gxx9pP/uuEEJcEQQQrPOAvq3gJvfLW94Xv/hFPv/5z1+94VdajIwIgoB8Ps8v/dIvUavV+NVf/dU70UwhhBBCCCGEWDd6XGX/pfwtfVYNIFF2VgSn7hSZWpn7CzOoBIyHU5xNSzYyIbayRKXGE2fnMD0fT1GohDRsfesMmBQ7gKoy/pc50g9E6Ho8xq6fTlM8W2Pue6snb7hTdmrf8nrajv3U0kctboXZqdHz3gT5d6vk37GoLW/94HlFVyR7zXrxYfGlMsOfzGBktsgMOmLH0Eyfff/gIpe+O8TFb+0m82A96EsIsUaKQmlQozSgEp3z6TzpcuiNMpWEyuTeCEsDBpFiPagm37Hz+tmuuPeNAsmsSzmucfKhRMNAx0LSpBrSGJivcn7YoRpdmQkzlnU5+HaJUNVfMRdTEFZYfKlM7lj9HDX33RLZoxbdT8aI9Bv0P5tk+Y0Ky6/vvKDfjfTE24sYbsCZ3QmWM+HNbs5qqsrre/pIVGo8OjbHyFKRfDTEVEdis1smhNhgSg2MGQW1pmCP3B1BcdIX2Jj0/92adbni1ONafWbNu+MYFEIIIYRYX6pKrjNErjOEZvs88GaOziWH/e8WkO4rIYTYvsbHx/n1X/91giC4esN/s1mprri+3K//+q/z0Y9+lKGhoQ1vqxBCCCGEEEK0S9EhfV8E1VQJnADfDfCdgOC6/79xsJNHTi+1XefRR9JkO00sy2hdeBvaU1pkdzVLABxL9rMUim92k4QQLdw3vozp+bw7mOHiYHKzmyN2sNzRKsWzNXb9VIrkgTDRIZPpr+epLWz9QDCx9UkftbhVib31rGP5kxa1pe1xPlJ1ZXWm8A0y/L++eGcWtIkC/8qAVoj95IWmZWv//UDT980GGdZv5PrNJwGxvNb3iodjM03fz7vRlnVU/NVZ2K/3emm0ZR0htfn6fqz/nZZ1PDd3uOn7h1NzLevoCzWfNOrl5dbrcjLb1/T9x7vHmr7/QPgmmVF1GPxYltOpEWCE9/wvee790DlUdfVv1O/su6dlO4W4G6gfmrjpexYwBYT7dDoejnGg6GP/0K3/hu8Js+efT1A4XSP1487mCwlg/+sliPjwZK1hkXNG8wyScaPx5653X3yqZZlWTl/qI1Wskcy6FKIGP76nH2zq/wFYKydXeGuwmycvzPK+1+eZS0Y415Mm7Krsn80TtxwAZlMRKiED1Q+omRqLu3WsD/WvWvZZ6hlb3//jeToeiVI4Y+EW7tBFyDamhuG9r84Rt1xmM2HO92eufV+XXVzuaFlPdaH577mebz2xRmA0vyeKdFdwgZeGOvjA9xfYv5Rl+eDKekNG89/7S7nWSUmKzupMv9f7rnewZR3pcPMJHuJ682My3MZ1mhduXkfJar4e0Hp7xaOtzx1ei+vFitP8Og7AsptfU1bKrdelWmlexm8j0O/RrktN3y95rdtxodj8fFysNa/j7HLrjMD7Oxabvt/qGh6g3Gp7Oa3rULTmx+xYscXvG62v0ZdLUXZ/y8aoQC2pMJeIgnXjd5ltuRwhNsNW6f9bl+DUULeOU5ILKyGEEEKI2+WZKmcOx3nklRzxoivBqUKINQsCZUfOaLUd1+k//sf/iGVZKIpy9eb/wQcf5N5776Wnp4doNEoQBFSrVebm5jh+/DjHjh27evNvWRb/6T/9J/7Nv/k3m7wmQgghhBBCCHFN8mCYrsebB1cOrCEwFaAa3ZnZeFTf54lzs2SqNSxF4/X0ELa+MwNwhdhpcjGTTKXGYmILZvEQO45X8bn051kyD0fpfE+UoU+kyZ+0WHi+dEfbsVP7ltfTdts+0kctbpVzOdNa+r7IpmZ0Xgu36qNFJMv5eonuMgm8ADsv2UrExlAUOPT0GJFEjWPfPkBuLsGDP3mKZJeMkhHiVlmzLtNfzxPq0un/aJLYUD0gqPeDSXy3QPgCKA74EfAi9f/7l295tRJE31XgogFqcNPg1K0iXHN54tQ8AK/v725ZPpuI8KMDAzx8aZ7eQpW+Qj2gLwCW4mGODndihVf22YUi1k3r83WVV97TyZOvLNL/bJKJv8zd8rrcDcyMytDPdqBYLuPdMU6Mtg7c3BJUFU9V0LxtmEJPCLEmugXG5cvQwqgKikLqnEco50MAVpeKv8cktjtEddqmcHpr/062S/oCG9tu22Sr9P/ddnBqqFtH1RRK525+ESaEEEIIIdqXKHgowORwhNbzOQkhhNiqnnvuuav/vv/++/nKV77C/v37m37m1KlT/PzP/zwnTpwA4Jvf/KYM/BFCCCGEEEJsGT3vj5M6HMEpeBjJmweUXnlsWzU1lKCebSDseIRsnzfu68A2VAJFwU8GuMbOHEAeq9o8dW4Gw/NZMKMcT/SDujPXVYidyL88MEOR8YfiDsq+WaF4xmLwp9Kkj0RQFJj/4Z0NUBU7i/RRi1ulXL5sXX5j+wSJ1RZckvtDZN+ugOTYWLOe98VJHAzj5D3srEtsd4jiuRq+JRdDYmPtvn+GRFeZt795kOf/5D0ceHKMfY9OoLbIkCWEuLnaosvMcwV6358g1FUPE+j/SBJaJP4OlADCPngKVBSIbs3j0HhN44PvTKMAb+/txAq3FwpRjIT44aEhEtUaffkKrq4w0ZnA1W+tv64SN6hM2ESHTNL3Rcgdb57B8m7W96EUigZvHOhivqN1JvOtIlxx0b2AXEYmGxRip3Ni1/7dfdQjOucTm732O5ga8+HZFFCfwLVweqH+IGxr/lSKu8xW6f+77eBUNVR/KBMZNEFyewkhhBBC3LZ8ut6hkSi47Iz5dYQQd1LAzuz32I7rND4+fvXfv/u7v9vyph/g0KFD/O7v/i4f+chHCIKAS5cubWQThRBCCCGEEKJtqqmQOhwBuGlgqqOpGN61keDne1LUDA3VD1AJKEZM8oZZT5ECULlh1Hij2YgbRIapoQbZe25jImOlwWd9ZfWI9kBpMFjNWvlaeE6nv5rncKGeveFsvIuJ+CZlA2j3ZvrG9W+0LW+1rjVodzLqhs1TWpe5nbZ5jZJnNto3S6sXovgNFtxgeyqNklLdsIygwaHnNzocbycOep2//1Ufbfg9tLmARsdqo/GBbUaUNvxuqvUNumuphA8UCaOUbyjXqPqGO3CjL7rBS97qF4NGH1Ub7HPa6nNVf+fqDHddkZUBjtna6sGgkwurz1V+o7a1G/CjN1iJRtu8QX2Ks3ondkqtp/Ns9NUHDQIbglCDbWk3OJga1Kc6DdbBbe84v/H7v/Bvn1xVZM//8yUu/dkyuz+VIXkojLXoUnjnzkwWv1P7ltfTdts+0kct1iqxL0Rif4hwj4GddXG2UdbM6oxDdCiKZip4ElC5JrERk9Q9EZbfLKNFVYyERuGMxeJLJTofixHpN0ABJ+9RmbSpTNp41fo2VjTqFy6NbqqEaFPHQIH3f/YNTr+4m9MvjDJxoo/9j4+z68jcZjdNiG2rtuAy/pdZtLBCbE+I3mcSTcv7RkB1P8T2V+CbUXgjBO/bekmrjFd0zJM6NV3l7b2dLKYja66jGAlRjIRgHYLgZ79TYOQfddL1VAzf9ndMJr31poYV/FqwrQJTAfadrfelXNgb3+SWCCE2nKLgmaDZsHxII3HJY+kejdxeDdUF1Q0IfnmOxL4QnY/Grk7kmjteoXC6Rm3R3ew1uCXSF9jYdtsmW6X/77aDU6uTDoEXEOk1CPfpWLPb88ASQgghhNgqKjGVAIiVJDhVCCG2s0rl2gROAwMDbX9ucHDw6r+rVZldUwghhBBCCLE1+HbAN46McmR2kd3LqwOfqobGO7s6efDSArpff3R77+TyqnKnBtKc709vdHM3RaZY5b7FZeKejacovJneRdFsFNUohNjqApR69lRVZfsNRxE7wcRXs4z8o0563hvHtwJK5+WJkVg76aMWbVMgdThMzzMJrDmH4rka+Xe313cf6dOpTjkSmHodLawQBODXmm8T7/L7Tt5n6dVr543EgRAdD0cpnrMIXDA7NZIHk0A9K9+VbHwjz+VZGDIZPxQBVYJUxa3RdJ8jz1xk8NA8p18a4e1vHeLMS7tJHnYpnLLkklyIW+RZAYV3LVRDofvJeoBdoAUonkKgBOR+IsBYAmNeIXIGeDcGKDBz2+EF68uH0PcNtAkVP+7zncO7Lt+vb3KzbFh6rUzPexOEeg2Q4NSG3LJPuHuL7VNN9E1VGZiukMq7VMMq5YRkThXibnDx75noNXDiCkv3XTtn+SEABfIe2aMVQp060cH6JHrp+6JEBk3G/yK7OY0Wgq3T/7cuV2ZO2cd3fAlMFUIIIYRYD6qKr0K42u7040IIIbai7u7uq//+y7/8y7Y/95WvfKVhHUIIIYQQQgixGRQdjLQGCigEVwNTL3SlONOTYT4ZIRsN4SsK77k4fzUwFcBRFS51xnlnMMPx4Q7O9yaZ6txhM837PsOLBX7i3XGevDhL3LPJGhF+1LVHAlOF2IZils09M/OYntd2Nl8hNoJfg4t/vARA7wfiRHbJYFixdtJHLVpRdBj+uQy7fyFDzzMJPMtn4m9yLLxQws5un6ypAGZGx1qQsYtXaGGFkc90sueXOsk83DxLmTXjUDhj0fvBBKO/2EnyUBgjpdH5aIzqjMPsd4rM/aDIxF/luPCHi8x+p0Bt0cUtewRegBVT6b9Q45Fv59l9vEKkIN+DuHWpnjKP/fQ7fOAXXyPdX6TnmThDn0gT6tw+QU1CbEW5o1WyH6qPQys+GmANByiBQvJlBacLio8FBAbA5Rvhfc6mtXUVF8JfM9EnNPyugOon7C0RmHpFbKgeoKQa0onQSHTYINShE2zypaXq+5hu62uU+2dmOXKyUA9Mjai89UjmDrROCLEVBIaCE29+Lg9cmHmuwNifLjP3w8uTuMokKmKTbZX+v3W5YzNiKk5xe3VICSGEEEJsZY6hErIlOFUIsXZBoBDswJFz23Gd3vOe9zA5OUkQBPzmb/4m58+f55Of/CT33HMPPT09RCIRgiCgWq0yPz/PO++8w1e+8hX+23/7byhKfX0feeSRTV4LIYQQQgghxN2o49EonY/EcKs+eqQ+2MspeSQn5q+W2bOYb1mP4QfsXioBcKY/zaldHRvT4E2g+j6HJnIMzZfQgwBfgel0jHNGD64qg2aF2G5SlSoj2Tz9xTIK4CoKJ3olIEtsrsCFue8X6X1/gsG/n6I8ZjPz7QJs0OOjndq3vJ622/aRPmrRipHQCHXquBWf7LEKtQUXRYFgmw6uVbbwIaqGlJYZTNdT34eTqJpC6WKNrsdieBW/nn3yJua+V6RwyiJ5MEzvBxJXX5/8Wm5FOc8KKJ6rUTx3LTPc8t/tJ5bzyMw5dE/U6LtUo5TWWO4zKaU1nE7wJWBHrFGyu8x7fupdXv7fHqhfC/10ismv5rZd4LwQW4nTD/P/c/1mwtobUJ0NiB9VyHznukDPARemdRjZOsGpoe8YqDkFZ4+L/czWmwBh9nsFhj7RQXJ/mNL5GuUxe7ObtOm6noqR2BtCi6ooikLgB8z/sAjv25z2DBbyHFleQAFe6x1g2Yg0LBet2fSXypSjGq880bGlgqCFEFtP6XyN3vcnVtwbbTfSF9jYdtsmW6X/77aejMb2mPQ8HUfRFHInbj+NqxBCCCGEqCvHNTqWHNAA6VsXQoht6ed+7uf4m7/5GxRFwfd9/uiP/og/+qM/avm54PKoD0VR+NSnPrXRzRRCCCGEEEKIVRL76hk/rwSmWvMOds7D6PHxgeuH5bw22outq6hBgBJAIWKiBT4D2TK7lkskrPpgtpH5Amf7U1t7xHibRmYKHJ7IogK2pnK6M8W5nhSoKuE5CUwVYjtJVC0emJknYdfPVY6q8NZAL4uJ2Ca3TIi64pka5Us1Bj+eJjZisueXOhn70yX8m8cXCXGV9FGLVpx8/UG0HlXJ3H85u+aH4NKfL2+7ADBrziE6bMLL5c1uyipdT8ZI3xdh+ut5KpN3JtinMu0Q3WXiFD2K52t0PhqlcMZqOsFBddqhOu1QulhDNRR8J8AttjEjgqJQzuiUMzpTB8KkLwepDp6tonngq7Cw12T2gClBqmLNagsuE3+TZeh/ytD/kykm/jp7RwO9hdixlHqwarYnIDQZgA+KB8lBC/4qDq+F4SOVlZ2Am8EGbVbF7wq2ZGAqgF+DxReLDHwsjZHSNrs5m27X/5Qm0mvg2T7WnEN5wiH/TuXW72F9n56ZGrobMDsYbvtjqWqVkWKOTquK7vsE1PMCD5SKLCcbB6feO78AwNEH0hKYKoRoyXcC3LJHdMjAKYQwUhpuyaN4ZvsGq4rtaav0/93S01E9oTL0M2n0mEbgB2SPVcifkJ5vIYQQQoj1MjMYoXPJYddPpZn8m9xmN0cIsZ0El//babbhOn3605/m937v93j11Vfrs0G2OdX4lRmpHnvsMX7hF35hI5sohBBCCCGEECiGQuVfHiBuOURrLqbjMx/S8L4wSahDJzpgkjwYJtxjQMVivCfO8Hzp6ucfvTgHQD5m8sJ9fUA94+DFZJyLu+PXlqP4qMrKAe7KDWN8ujsKq9qnKqvvpeaWUre8vu1StdXL9f36a735Cirw1r5Olkv1bLDhxXqZYJ3HLTVY/TV8uMFrjcaW37iMRuvQqK5GbbuN9rY7TL2dSavXe2JrvdKowtWv3c5ygwb7XDv1N9pHNi3b2S0uNzAafLDRujqNXmxzGdHVATb3XFhieLl+PvMUeP7gIFUtdOUTN6+swTESaLeRyrLBd98ojl83V69DNLw6I0uj86Z/w8nJ9lYPmNX01fV7jrG6IQ0o6uplarHVwTeu1mCIittgZf3Vrym1G9rcIGZKafS5RvU3Om4a7UuNfgsa7a+Nxh/f4jny7P/x+KrX9v/aK0z8VY7UvWG6n47T+0ySmedW/2betp3at7yettn2kT5q0Urg1yeiMRIa5Us2yUP1Af+hbn3bBafm3qky9DMZYiPmlstYFhsJoagKkQHjjgWnZt+s4Nd8up+qJx4BSOwPUTzdeqD07Wy/QFXI9ptk+00IAiJFn+45i95zNh0TDtNHQiwP6Tti0iJx5wQuTH8zz/DPZuj/SP06yLe32Y+yEFuVBrXd1/5Mhnx43IJXwnBJh9HNDQhV51QUFLzerRmYekVlyiHwAzrfEyU2bIICiqqAAvayy+JLJfytdXmyYcLdOrVll/G/yN52XfG8w71v5gldPufvO1UmHylytifNfDKyMoDU9+krVBiZK5GuWWhBQADYqspMLM47nT08MznGYLlIYrzGbCxGsmaTsG2UIEAPfEzPJx8KYcVk8kEhRBsCmP1Okd4PJej/SPLqy8UzC5vYqDWSvsDGttk22Sr9f2v+9VR0GP5kBtVUyJ2osPBiedVDzA691PjDN3HInFlrM9rirWGvKPpr61Bby+RL5aD9zXy8NrimdhhK+xfc006m7bLnqj1tl52tJtouC6sffDXjrqFswW5/RhRo/FDuZuJ6+zMYLFntz6LbHVnbsTJitP9jNau0PzCj5IZaF7rOO/n+tst2hdtfx+U1bLvh2NpuXCyv/ePw2HL7x2HcXNvsFj3RYttll2vtb4/FSvtlE6G1tbk/mm+77LtW+9vOCdY2S1RYbb+D3lDaP6dbfnsP1QFMdW2dHBG9/TZ3r+FY6TDWNtPnWs53aaPSdtnQGrbHXC3ZutAtOlfsbrvsgeT8mup+J9f++W4tHh0Yb11oANxlgwgGgz+dYurv8k1nMRVCCLE1/d3f/R3vf//7OXXq1NUb+laCIODw4cN87Wtf2+DWCSGEEEIIIQRkHoywb2x5xWsdJbhQ8iku1Cidr5E8eO0ZzEI6THeuSsRe2Q873hOnqR00+Hi6M0pXoUas6rDcurgQYosaWi7hKQo/PDSIFao/L1LuTLyIELckf8Ki45EYkYH2n28KIX3UopWJv84BkHnoWgap+J4QTsHDmt3agSDXs2ZdqrMOyUPhLRecuvCjItHdJoU7nEEn/46FteDS9VgMt+JTvrgx26Xj42eavl8CrLhK1xMxdlsBPV93WHihRG3h2v41+HLz+8nxcutxj2NWV9P3M3rr8TAJrXmClpRWbVlH3mucje2KN/LDLeso22bT9+drLe6/gYjW/PuOG7e/P7Yaj3TCGmpZR6jFeLBPn5q++u/CRJbzfzdK+jcS7PnYOPH++nf6Z4cG2mitECL/3qXWZQDUGrt+SiP0XITsWxWyb1UIfECFyPeca+PXtNXXlpbb+l7l5dxo0/dPLdbHr5sVl8d+nMNX4O2ObqzZa2OAzWjzc4ft3f7MZkEbM5Cd/aOHr/7bmSpwYCJPZNC8Fr2gQLjXIHE4wkRflJP7Uqsycu79h2+3bus2cO5PHgJg9KUpjE6F6T+4l0p05f5w7/DUTT9vLPmEf2yQqtirJmK72JMgHzMZnSuQqtg8emkeH3AMFVdV0T0fw/VRqccT1cIqM70hJkcj2OH6OOUQBV47kObeNwqksjap2rXfSVdT8BWY6wzz9uEMvfHWY3lNrfkY5bl869iKTKj5tclsufWY24vLHU3fj4eb/95b9u33LyRaLAPgcGau6fuG2nrMd8FpHifyeOpiyzreLja/NjkfaX49CZCtNL/Wc/zWsS8nC31N31+uRlvW0SoWQFebDzYuVlvHjrw1uav5MhpMdHcj324eKxA0mlTuxjJ+82vOs1Ot457OzzYfZx60MTZb+7POhq+/GwSYjs/7fzyLoimEenRq89vnXlrsDFuh/+//z95/R8uR3Qee5zdMev+8h0cBhbIoXySLRVJFkZRISjQttUSxJXX3SjOa7ume3W0zvaOWpvfstFp9Vmdn9kxrRjvUSK3WSCNKLYoUva1iee+AKnjzvEvvwty7fyQKwEMGXuYDHvAMfp9z8gAvMiLyRmRmZMQvfr9711ycuuPv9GCGDeafLFM6KkMOCyGEEELcKM2fcGn+G4/4WJjdf6+XM3+6hJLTLyFEJ9roKki+5WzRberv7+fll1/mN3/zN/lf/9f/lXJ59c5KUqkUv/Zrv8Zv//ZvE4utHtAUQgghhBBCiPUQybXfLpzJxfHrrRv+dtxk5jslBj+UwrQNiokwPzjc6qgw2vRwQhbK3JrXbNdqsj/BobN5dsxVON83uNHNEUJco3IsTLrukG44F4tThdjs6lMOyT0RYiM29el1TnTbrrHl9bQF94/EqEW38q/XaS75hHMW2TtijP9Mjsa8y/Q3ihevDTa7+qxLavfaOui/GWqT7k0bMfVKzXmPqa913yn9jeJVFLPfLVM80qD/0SQTn81RPFpn4ekKWvK2RZfS41Vu/8VjnPrGBO/+xV5GHp1h6L4tNDKVEFuFgqmvFei5L0HP4Tjx8TDNBZf0gRjmn2m02ZqnPqFZfsSAGxAXND3Ffc8WMRS8dTi1JUayPD2a5vToymJCM6ToW65zx7ECO2ZrjM3XODGR4vTEjRvoY6O9fKCXB48s8r7X5/nB/cN4odUL9WLnFdnXNK1x0RwqUZtKNAQG+IbBu6NZGtFWzGaqL4mtfXbNlBgo1Ik1fSKuj28alBIhZnviLN5moezg11S2yRsPZWlUQuTyTe5+N0/I05ycSHJ6fPu+J0KIG8wwGJ+uggH512s0F7fQBY7EAoNtwX2yGeJ/azpbG/6pNKG0Rf71qhSmCiGEEELcBNN/WyJ7Z4y+RxOM/0yOs3++tpGjhRBCbLxYLMbv/u7v8tu//dt885vf5MUXX+T06dMUi0W01mSzWXbt2sUDDzzAxz72MeLxzj3gCSGEEEIIIcS6MCA6uPJ24Ww2xrHRDPd9LE1y56XEbrfk89p9gzQirflNpXn81WlM4PmDA2ijNW0xE4V1uG9r+Jp40cdJGviRzr2N31SmyVRvgomFKrlmlXwksdEtEkJcgxd2D/ITb59nJF9lPiPfY7E1zD9VJrk7wvBHM5z646VLoxYJsQqJUYuuKPDKPmbIoPRug977E0QHQoRzNvX61hha3LBAeVujkPZWVZ92OfeXeTIHo/Q9nMCOm0x/s7TRzRJbSCTjcNvnTzD97DBTPx6hfC6FFWtumSJ6IbYK7cPSC1XqMy6jP5Uh0mfTnHcJ7w5T2W+gLci8qokPQ233Or+4Uhx+poDtak4eSJAf2HwdT6zFYk+MHz4cY2y6woHTJW47U2bXZIUje7PMDmy/8+7lXJQ39+a480Sew+8s8cKdwaMVJo8qMkc0ltOqAaqPwjN9ozTDq5e2+LbJifEsJ8azwevtYqR0ZZos9cb40YMRHntxjv2nWwU8UqAqhLhWgwsNKiebLD5b3eimiFvYRsf/1lScGh8KUz3XZPHZzj/cQgghhBBifRTerJPYESY2GgIL8De6RUIIIa5FPB7nM5/5DJ/5zGc2uilCCCGEEEKIW9jxPz588f+G0hSKDYb+X8dJ3xbFTlpUv7TIqDpH8h+0Eofqsy5+XZHcFWFirsxsX5SQp+gtNnmvZPSho/MrXqN8sknhrTqNme6T2M2wgfrfxolUFfGCIjfpYnnQTBq8+8TKojF9PTmnXS4b1Ft05NSlZLjTeoBxTrOrusxShxu4RtBrBqw/aL6gDpoD19clbXWxvm4LnYKKkG9Ch9Jd7adud+YmogNqsPW1DgwS+JlrnxS4R4J2XUDb/Fj7B8VQAZ9rb+W0wLchaNvN9oZoq32a4QesMOgz7La/SLpWB8AzjYvbraMB2xVeGZQ3AtoRNFCM8ton6mbAlzBgv+mA7bJD7TcHHK99fWenetuntb9qGyNgGwKPtwFvYtCIZyrovQlan93lh7O58j00Au6VdHt8DPy+hQIWDvosBX2IVXfbYPc1Vvzt++0NUeX2UXyP/c8Prvi7OV/g4MwyO36uh7N/viwFqqJrEqMWVzIs6HkgQShlYcdNYsOtY5DfUJRPNCi906A+vTUKUwGssIlypEBt09NQPNLALfmMfDxD7wPSSYhYG9OCsffPkBovc/pbE0x8PsHc90sbNkKxENtZ7bzDmT9bRrsar6qI/XDg4sVj/IwmMq+p7V7feMsdL5eJ1xTT4xGmd67PSF6bweRIksmhOPvOlNk1VeHud/LsmK6yuNENuw7Zu2Pk7omjHM3IyzPYvmYpEyHa9DGA3lKT9706i6FBGwbmtE+z1yB5UhPJg7KgvBfy9xpgmzRP3NwRcn3b5KkHBvnAC60CVY3BmfHUTW2DEGJ7WMpF2LHPw29qFn5c2ejmiFvcRsX/1vQr3sx7zH5dqrmFEEIIIW42I3QhOUYKU4UQHWh9nUm6m9R23CYhhBBCCCGE2EjRpsf+c0XGFmrwsznqsy6Lz1UuJnOf+4s8fY8mCPfY2IlW8Uxfqcknnp3suO7UngipPREqZ5por3Uz3m9owjmLwQ+ncEuK6ukmXk3h1xWJnWF67k9gPl1vW1d58OYmJXVLYeJjkHCdjW6KEOIaJZsuBtC0N+dxRoirOT2QZfg7U2TviLHj53s4/+Vl1Dr8HG3X2PJ6kv0jtpv4WJiee1odrTQWXWa+XaQ25aKaW/PDboYNKU7dQmqTLksv1+i9P05zsYnuk/dOrE1mR4VDv3iMZ35zH6M/naXwVp38qzW8qvTcIcR6cguXJatd1qtRcwASp6C6qHH61qdANfkCxJdc8j0hThzahkWCpsnx3RlOTqQ4fGSZ3kKT5Bd6OPOnW6fTob5H4iR3R1GeJpJrxVN0VBNu+GhgeLEV321aBpbWJBqt3qwMDcZpSJ7WaKA2AosfMMAM6D3qJvJsk6ceHOSxF2a57XRrNPd6z4Y2SQixBb27J83EZIXsHTHQmqWXa6jG5r++kVhgMNkn12ZNd1km/6qAbbT30iiEEEIIIW6scMbCMA0iAzbN+YAuyIUQQmwb1WqVv/zLv7z49xe/+MUNbI0QQgghhBBiO9p/tsDeqTIAi5kI1o/ypA9G6XsoyeRXCgA0lzymvloEwAwZDH88TXwkvGI91aiNY5v4pgEGpKouEe9SJlVyZ2uk0ehgiPq0S/q2aOvv/lYB6+XKJ5voR+Kk532cmEFp0KYwbFMb3NgEpcsl3Abj9QK9Tp2I8jCAgh3uuJwQYnM605vmttkCuxaLHB/MbHhCpBBrsfh0FTRk74yx64t9TH+9QH1a7h+J9SEx6ltH9bxD8WidzMEYbt6ncmprd7xihg382hap7BAA5F+rkdodIfx0mOYnmyCnY2KNQgmP6b8tkr0rRs/hOJmDUapnHSpnm9TOOvhboChAiK2qdIdBZF4z8B1NbYemcK+Bil1jkaqC9I8hcs6gHjN58/5tWJh6GWWbvHRXH/tOFdl9vszEZ7Kc+3LhprcjsStMc9HDK3d3/jT80TTJ3RGUq7Avi6Gc/bNlzv3OQaqJ1eOkd/ZPEVkCNw1eevP86Hu2yZMPDl0sUG0smZx6IIqTsja6aUKIrcIwOPWHS2TviJG9O0ZkIMTUVwtoCdWJTWy943/SBagQQgghxCZnp0zMsIH2NW5BrlaEEKvT2kDr9emVcjPZjtt0NYuLi/zyL/8yxoVeRyXxRwghhBBCCHE9wj0WPffGqZ51KJ9ogtaMzVcBcC0DzzJJjYWxIiZOvrli2VDWIr0/Smp/BCtscG4wgW8apKsuvaUmiYZHoos2hFIWodvak3m8qo+daE1P7YnAvM/s/jAzB8MXR2KwjI1LJDU9xdh8hdHFOumag6VAAz4GBTvKTCzFVHJ7J8sJsa2ZJqf70uybL3Ln1BJvjvdvdIuEWJPFZ6rUZ12GP5Jm9JNZCm/UWHy2ds3r266x5fV0q+wfiVHfQhQsv1wjczBGbGTrD1hhhg3cghSibSkK5n5YZrw/i/2WjXeX5EOIa1N4o07xaIPMwSjJ3REGH29dq7slhVvyKR9vUD7W7LAWIcRa6LDB/Echfhoyr2sGv6mZfwL85NrPmVPPQPSciZvTvHxf9pbpPOr47gyDTy6R2BUmdVuE8rs35ziVvTNG70MJTNtAa41b8Jn5dhEnf/Ui1b6H4yR2hWnMu5z/qwIA0UEbrcAtqo6FqQAqZlIfW6+tWF+ebfLDB4e49+gyffkmt3+/xhsfT6DCt8ZnUQhx/ZSjWX6lRnXSYfSnM0x8voeFpyvUzm3eTqAkFhjsVtkn6x3/k+JUIYQQQohNbviJNBgw+ZUCavNepwghhFhnWuuLF/9CCCGEEEIIsRbRoRB9DyeIDV1KME/ti6K8IhgGPzw8TLzhsf98iYjj4zuKmW8VqZy+FHwKZSx2/nzPxb+1r5mYq654Hcc2yafCNEMWrm1Si9oMLdXpLzba2tSYcymfbNL/aPLitOaST+ndBl5F4VYUxf/3CM3kxib8ZMpNJmaq9BUaRFyFQasgtRaxWDYTnI/lqF8+Wqopye9CbGXHhnsYKVQZX67QU2kwm4uTT0ZYTsbwbElAFJtf9ZTD6dllxn82S+7uBPGxCFN/W5SRA8W6kBj1rSHS20oftBMWmdujFI+0n8tvFWbIQHlyfr7VNBc9vEMe9ms2/i4fnZL3UFwb7WoKb9QpvFHHihrEJ8KEe2wivTZDH05jGCVKN6nwS4hbhmlQ2wONURj4lqb3KU3hPnAG1nYOaZUMNJryAxp1ixSmvmfmuyX2/EofA+9PUT7ehBt5KWfC2CczRIdCKEez+GqNaL9NYkeYib/TQ+VEk9nvldsWSx+MkL07jldRFwtTARpz26tTCWWbvHxnH/saS+x5ocHYm03O3Rfb6GYJIbaY5rzH+b8ssPPv9jD6iQyn/mgRvy7XOGLzWq/435qLU80oZG6PUZ9xacxsr5MKIYQQQojNJpwzifTbrXOvbRbQEUIIIYQQQgghhBA3xvjPZAOn2z8/iK7a+ECZMC+Px1tPHFBEPuYRc3yirkfE9bFdF2YqF5c1rEs3Jqf7Y5wfTLCciWCYK29Y+mEjsDg1OhgiOrhyNKbq3WlePtR38W9VNqE9/6kr8WORlROUImR7RJRPWHmElU9I+YS0T0grbKWwL/xraYWpNWHlY6Fbo6MaBsvhGDPxFDOx5BUjNqwtkSCwk+WAEWGD1ho0cGzg+rrtyTnwdVcu2+0taB2QK+hH2tdvN7pbY9AmaLu7fa2vGJhXtQ/Ui6Ha1xU4MG+X04yAZMGgaSrgjrwKX2MyStCuVO0TdcD6VTigcQHvoeEGvREBr2sFfJYC3i9tX7G+bpMsA5phpdy2acoP2H43YMMCCsnfy7d46q4h7j2xSH+hwd65Esy1NtmzDF7a3081s3J9KmCfB32Afb99BDo72b4NvtP+gdWN9mn1fEBCpNfd+2Vc2b7AA07ApKD3K/BzGDBbwHvT7euu8TB7abEuD2AqFtDggNc0G+2fJcMPWDTgI6cDviOx2MoeSIM2s1wJGLkwYMZj//ODK/4+qhSP/fW7JPdE2PVLPZTebTL9o+Ubm9gshNgWIv2XTlb0Fj9mOAWfaL+M1bEVnf0nBXZ9oZfav/JZeqF9FPC7Xu48MnjSXr3osMeurvo8wO7I3KrPp8zOxdvn3d5Vny970Y7rCGcDTjgu4wWdfFyhL1RZ9XnVxYnTnJFe9fm4uXrv6l+dubPjaxzKzq76fG949e0AePj19nPsllb7nrs7xMjH06Rui0pxqhDXqf7Bqx8nZ4dDjHw+Q99TmuoDGm1rnFHgisvbfCPevt77FRPfccl92+D9u2fgA41VKxzMDheN3zl126rPA/j+6sdSp9p5JFDDXv3kabw/33EdKJh/qszgh1IMfTjF7HfXHhwdfHaV47UC71SE2GmIzrb+bg7B8mMG2AkcoFKCgad8UvuiJO8K43yyAYkLy5cg/JcxrLDirl9/hwf/H8HbvOj9uGM7Z5zMqs9PDaz+uwNgdvj5itid8yttc/X37ZSVYyQ6R895j6mUxdxgezzGKUYClrwkO9j5fez0W1x3O5/XNhsBMYTLn29e/7lxT3r187Bu9nnHc5curkN6wqufy+0IL3Rcx5nQ6udpEavztvQkOuyPLtYxHCut+nzN7WIk4g6fn5qz+mejUe/8Gtcan1uxik7r8LrokKDDLt336y90XMWx/+WBzq/TSWL1hhz/48Mr/m5OlrjtXJGJX+nnhUP9FFIR9n3xletvhxCb1Jp+cUY/lSE1Er9YFdtc9jj3f3Zx4iSEEEIIIa5Jz+FWpGfuB9eYlSeEuPVoo/ssrK1kC27Tk08+eU3Lzc6ufhNWCCGEEEIIIVYT7rFYfL5CfDRMfGxlgsFAocFArsZ8Ok7I8xks1kg3HPoqdVKNS8mcvgHNsEU+GSbe9Cgmw0wOJCilQtSjq99enO2Pc9TxOXiqCEAzZDLfGwNDY/maUipEouYxsNSgkO4iAWIN7ixP0+u1klQ6XUXqy/5VhoHCoGnZLETinE9kqYdXT94QQmwfyjZ5+cAAKEWy7tFTapCrOAwv1XjwnXmezvXhdDj2CbHhTJPZ75aJvF5n6Ik0mQNRQoM5+LM1rGO7xpbX0xbbPxKjFt0ovlUn0muT3BVh8PEUuXvjlI83WH6ltuUK3LWrIXZrjba2XWgP6tMuiZ0Rll+poaXfbrHOGose6ds6FwYLIa5dfcal+JOKzLdMUk+3fo8buxSVh3XHagUnY3L2oyFGfuwSOmXDmST6ribcd7Xi8+2lfKxJ7wMJkrsiXHPPfe9RYJ83sU+b2PMmRr0VJ9WAikHpTqjvvWKRNLifaWK9FMJ60yb8lRjO36mDDWbexMCg99AydnSLnRxehxfu7eX9zy9y55ECo9M13jiUxQsH9IYnhBBXcXIszdmhJA8cWeCuE8s8fdfgRjepncQCg22xfbJZ4n9ruoMS6bNXDNe69GLn3qSEEEIIIcS1i42GUI7GK986wR0hhNguHn/88RXX0GthGAa6Y/dxQgghhBBCCHFJbDTE2CezK6adHUhyZjDFQ+/MEXVb8aXDZ+Y5n0swVqhiKU01bJNPRTg+kqESDeGbBpmaw0C5RthVPL1/kMaFoiwjYOTBINWYjTKgmAzz+sEeGhEb84oe6Y/SeYSCtbK0jwEs2zEapo1rW7iGiWNauKaFY9rUbRvHtK4YCTWIXJMJccsxTSqJMJVEmHPAdF+N+99d5KGXlnn64T6ULcUuYvNrLnic/dNleh+MkzgkRdW3OolRi274Dc3Md0okd4YxIyaRPpuee+Mkd0bAhMacy/yTlU1/emxGDaKDIWpTq4/kKDav5VdrjH0qy8jHMkz9bXHTf+bE1uIWfEJJCytm4NflwyXEjeJnYflzCkNB+KxB6lmT0KIm/0nVNoLqldy0ydlPRNgzX8B4NoL5WhS1bMETnUet3g5Kxxr03pcgOmTTmF1bLw3WpEHopIU9b2DUDAwMNBpC4A9qqiMG1T1Ah34C/ftddEhjvxIi9K0I7oebqHGFRlOfbx89dDtzojZPPjrA4deX6Ck4PP70PLMDUY7clpH4kBBbhJ0xiWQt6nMb19GBZ5u8ubeH970xx4denqF8OE7hrTrKkfNRsX42S/xvTZHo8V86h3s+R/7Z1pDWj/7nRcyANbh6bT1DLPipruc119Alm7+G3kPGrbWdKNTW8Aa82Rztet7XqhNrakfOXn1o8MvlvXjX86bs7k/mC9baTjjn6t2/352GHL9c2PTX1I5stPvi6rW0OROudz1vx2Hqr/AnC490PW/D775H77q3tt6/PdV9uwtO95+7/mil63kr3tp6U1/L52Mitdz1vPsT82tqx0Co1PW8b1W7P3aMxgtdz+upG9d7z4n6QNfzJqzmmtY94xzoet6M3f33cLaZ7nresru2HvQGo93/DsWs7k9+ZxqZNbWjJ9z9b8XHc693Pe++0FLX877j9Hc9L8CXF+/vet5kqPvP0lp+VwD2pRe6nnexmeh63rW834QjOAXpFlQI0T2tW4/tZitv07VcwF9rwEAIIYQQQghx6+q5b2U8vnK6SSId4dEjs4R8TT4ZppgIM7RYY+dyKx4/nU2ggajjs3emSNj1iXor78WFfMVaU8AWe2J8+32jcJOvbc7EeshVpqlaYU7EB1ABtxLWeGtGCHELW8jFOT6aZt9UiQ89Oc+J3UnO7kxudLOE6MrSCzUiO9b2ed2useX1tFX3j8SoRUcKKqcuFXU2Fz1SeyN4VUX6QBRn2afwZvd5GDdbdCjE8BMpDMug8MbmbadYXXPBY/obRUY/mWHw8RTzT5bRa0sHFOKqqucclKfpfzTJ8is1nKK/5UaHFmLLsEBb0NyriZ7QWBVgLfG4vR56twd/msA4Z98yfRU0l1r5gaG01VVxqhmGoSfSxEfDGN+7UIxqg9+vccc93H0KLqS7Vt1I1+1Qd3voKQtzziLyZ3G0oS8Uu956vJDJC/f3k8k3ueOdIkPzDQYXGkwPx3i7rw/PlpFUhdgIYcdj33yBsKfIJ1qdKq04r7Ngx+dzhLOXCt12vnaG+XSct8Z6cMI3tzO3SjzEk/cMsWu6zMRhn+xdMc79ZX5TDFgkscBgW3WfbHT8b03frOkvj2KrViFi6o5SYGGqEEIIIYRYP4YJ2t2iZ7pCCCEASeIRQgghhBBC3HgTfydHpGfljbtIr03FMpnuiaMNg1TNYWK+wqm+DDsWi4Q0DJRqGBpMrTGAWvhSQs3p4SRnh5LUYmvr4PKiDbgWKoQSeBgMOmVOxLvvTFEIIa7mxHiWaq/JoSNF9p6qMDMUpRG+xuOiEDdZ/s3uO7AV25vEqMValY42KB1tdVGjXE3vA3G8mqJycm2dkN8MdtJk5ONpmkses98t49c2PsFXXLv6tMv8jyr0vy+JYcHsd7vvFF6I1aimZv7JMgOPpUjti+I3FcW3Gyy/UkVLf/FC3DCN/ZrU0yapH5pUHlbobsdCKpjQNCBzC/2uX9hUI9T53N2Mws6/24sZNnCLPupxjbNPQfdjCa3K/UQT87SJMW1hFky0CyOPzq7PyregYi7C048MMDBf58CxEmPTdUanz1OJhjjfm2Q+HaMaW9uAS0KIazO8XObec4sYgAZGClX0P+ijes7Bqym8kk/27hhW1KR8skFt2iXaZxO6K8lQscZgscab471M9nU/cN16qEdtjuzOof7dWcY+nWXXL/Yy/Y0i1bNO54WF6NJGx//WVF6qPYP43gq5BwpE+uWLIIQQQghxQz0TwTANmnnpDlQIsQb6wmO72cLbtNG9UgkhhBBCCCG2P7fkE+q1ObkvSSVlU0nZDMw22fNKETtu4jcVVqQ1RMHeheLF5Wy18nol7lyKQ6n/4QyjjZXP17+1q+21Z5YyXbXRc9t7ktfeFcMmBOWbXTkPgNV+nVWbaGWTzuo4o4UqVl8Vr9ZdRpYOqDMzgpJTN+DaVHd7eWh017huZtMBnf4HLWe6ga/QVTuCqFD7i6hIwAsHbUMXLxs0aq4KGrkjYP1d7t7A90vFAj7YZtB2BSx8xQsbkYB1BTTOCFi/FfC9GesrtE2L2u1v7MnZ/rZpvtu+88xQe/v8+hUpCV7AdgZsuxFtj4sP9hbbprl++wc2X0y0TVN++2vooNcN2HfOhMGxVJJDT5e561iB5Y+0L7dcbz/e+Kn2fVSqRtvbZgfsk/bZ0I2AL2e3x6Ur5jMC3ocuPoIAqFh39yyMWtDBpHPbrqqbkXaC1hUwzaoGrCzoaxmQUaMCv4cdW3a1lwh4gYDVq+5e4Pj/96GVq6rW4J91tWjLdo0tr6ctun8kRi2ux9LzVVJ7Iww/keb0/NKmGN3lIgMGHkuhXM3MN0soZ4t+ScUKpXcaKEcx/NEM1fMO1dMOum60fiO1AXGFsZYR+IS4oHysSeW0Q7TPJr4jTPbOGKl9EZZeqFI53ZQiVSFugOZujQ75JJ8zyX3VpPKIgvYQQ7uXWoV++olbp8Od2qSD1pr0/iiltxurzjv0kTRm2GD+yTKlo00G/+v0urdH7VKwS/FeBCCZltHp5wdizA/E6FlqsOtEjVytye1TeW6fylOJ2OQTESylcS2T6Z4QKiQnLEKsp3jD4Z7ziyjD4Nm9QxRjYcbyFQ69M09y58oRopdfqbL0Qus3pAQc+4WD5Mp1Hjw1z13nl7B9xZnB7u5trSe/ppj6mwK7fqmX1P4o1fNO8H2xm0VigcG26D7Z6PjfmopTd/zqOaJJGS5VCCGEEOKGeyuEeTSMW/ZZfKay0a0RQghxDdLpNKVSCcMw+L3f+z3uvvvurpabmZnhF37hF25w64QQQgghhBDbycw3S0z+5aGLf/fNN7ntnTKlcw7Fdxo05l0GH0+R3r+y2kkZK2vkFJdqf3Z8Pkdz2ccrtVKQKmeabIUUpHeHcowWquyfzfNmep2GCxBC3PKqORvfNkgWfZbXlmYhxMYxJRH2VicxanE97KRJ5vYYiYkwVsTEq/qbrviz//1J4mMhpqUwddupnHKonGoy9KE0fAicP7nsybjCOlTHuqOBIadlYo20q6nPuNRnXIpv1xl4f5Khj6RRrqYx5+KWfdySj1tSOMsejnQmL8R1c8Yh369I/dgk+YzJ3Kc7L2MUzVaFw82vG9ow2oPGvEd0wMbOmHjFq1crxUfCuEWf0tHNN6r9rWC5N8qsnQGlGCjV2bFQob9cJ9n00LT6rxp4xqSWtCj0hpjd2e2QwUKIIKaneN+JaVKNVqeKL+7qp5ho3eua7E0T/4/vgAWmBZGBEGbYoHqqfSDGfCrGdw6N85Ejk9w+nacWtZnPtHdyeKN5VcXicxX6Hk5iGGlmvl266W0Q28tmif/J5bkQQgghxGZ0zkajOfOflje6JUIIIa7Rfffdxw9+8AMATNPkgx/8YFfLnT179kY2SwghhBBCCLGN2Y5i7/EKw9MNyimbhacr2EmTwcdTpPZG8JsKP2ER9jSODbODceb7ozRNm3jDI1122DFdxfY1dsLCTrRGvfObitT+KPVFn1pfwEh4m0gjEqIRsuivNGD9Bw0QQtwAiYbLYLFKORZmMRVDb9LR+mppk/Syz/D3XWY+HDDkcpcsT9GTd4g4PpOjNz8BSghx65AYtbhWsZEQY5/K4jcUtSmXxecr1CbdTTV6SM8DcbKHYsz9sEztXHvisdj6Fp6uUD3voJqK8d81LvakpM6G8V+Oo45FsZ8oY+akeFBcG6+smP5GiVDaJLknQqTPJtJrk9wVwYq2PnBeXVE902TxuSqquYkOgkJsMTraGkU1PGNieBptd7jut2j1ond5T3q3gNnvl9j58z0MfTjN5H8uBM4T7rUwLIOqnP9sPNNkPptgPpsApS5Oe/jdGXqrTaI1Re+8S6ShOHtA4j9CrNmF79V7han5eIQ3xvuoxsLt8/qgfKhPuquv0jZ56sAIjx+Z5L5TCzyzz6KYjK66zI2Qf71O7p44yd0RDLvVQYEQ12qzxP+kOFUIIYQQYhMyfFrdaAkhxBppbaD19juAbMVteuCBBy5e+L/44otrXt7YpImYQgghhBBCiM3r0JtFepZbN99TZY/U3+8DwK34LDxTJTZiE90f4/VDWRb6omizdd2hfJNKMsR8X4xzo0kGlhr0/cF5In022TtiWJFWFtjwkSYnPxCDTX69cr4nxf65AgO1MvPx1EY3RwihNRHXx9TQNCzUFaM57lwssnOxDEDDtpjOJZgailNOBCQabaCjDyc58HyVzIJH9m2fwqG1FevbTcWHfzSDddngJ1KcKjaT7RpbXk9bbf9IjFpcq57DcQCmv1GkMbf5smSzd8bovS/B4nMVSu80Nro54gbxqorS0db7e/Szlz/TJJyrMfREmsiXs3hVn8pph7d+fPUR5gB+8Z1qx9f8iVh51edtOp//vWlMr/p8IRHvuI5zzd5Vn3+3NNhxHfPO6tfCBbdzOxbqyVWfX26uvg5fda4oO1HuW/X5M2ZPx3XYxurv/eCz9Y7rGIysfO9100At2tjTIexslPQjEbyP1SF+9QLV56Z3rvoaQz9ztGM7il/fu+rzqotzkYl0ftXnlxqdr0HCT0hHFeLa5N939UEYkrvCpH4yQ9hReOGrf5aPFgbpG3IYzHsUvp9l+v5I2zyJ0OqFmbbdueMCt9mhhKKLenTtrn6cm1rqPPTrrsv+7xUVjVmX6FAIO2XilduPb+nbWkVUpaOXjm3D0dVH3TurOh9LE/bqo7BGzdULvswOx2KAE+X+VZ8Pd/G+Od71d5y4M7v6YCFnjVzndoSvfo78Vn+aTK1BM27ywLeL9E83OX/72kdP7eb6c7x/9WN+udn+/blcody5Xa6/+uc8X+u8juXq6ucM3fy+eR3a8WJ8ouM6emO1VZ+vup1jkeXG6vt0V67zYDQdv2/26t83AF+vvj8sc/WDWDjS+TrPc1f/vu38uTc6rqOT5N4IZoiLI0HnDsdJ7mq9D5G+1nHaMAzKJxosfXeBUSav6XX2/9rKmMhUv834z2Z537szzP+4TOnIOo1EbcLuL/ZiRi58phW4VUXp3QbVUw1CO0LYKYvmgsfMt0qMfTpLuMemOb8x190SCwy21fbJZon/SXGqEEIIIcRmo4BlC8LS66IQQmxlDzzwAABaa1566aU1L6+1luQfIYQQQgghxJqc3pNksd9l/7uVi9PmflCmdLxBYkeY1O4kS6kQnn31xAUnbDE5nCB8Icm7fKJB5vYY6f1REkuKxKJPtX9z32I8OZBh31yBXeW8FKcKscFSNYe7Ty+Rqa1MHP3OHeM4oVaC09GRHpRhsHuhRCkWZjRfYfdCiXfHM5wc7ZzICWD4Gm0AZkAsRWvSZRcnbNKIrDx+mUoTbXoo06AR7pDgaJq881CC+79TJPeWwvAgf3d3SZHhuuKuHxYvFqaeHUtwfqxzQYAQQlwPiVGLbpkRg94HEtgJEytqEh208ao+zaVNWJh6V4z+R5Msv1oj/1rngjOxPTl5n/P/uUByZ5j4WJjsHTHqMy6Vk+uUVC5ueUZEY426rce+Bo2vZbG/FkPd7qL2eBCTfB4h1sq4UJCaOaZYutdctfO7ek8rdpmcvfVGx158rsr4z+bI3B5l6fn2QrpQ2kJrjZPvXAwqNk493Yo/FXttsoseobrCjd1CwwALAWTuiJLeHwWjNWK9U/BoLHo05zwMG0Y+niGcbX1Xeh9UoDV23EIrDQY4BR+36NOY98i/snph8Vo1FzzO/cUyYz+bY/CxND33+iy/Ur1YJHs1ZhgSOyLEx8KEe1pxYb+hyb9apT7tERsJYUVNvKpPY8HDTpiEczZ9DyToeyC4gxC3eOv91on1tVnif5v7zrEQQgghxPVqQOwE2GVQfhyGPNjlYHboCFDNWDAAbERM4EdRDM9APSA3ToQQ10juhW0Kjz32GP/6X/9rAEyz+x+Uvr4+/vAP//BGNUsIIYQQQgixTY199u2L/z9+4d9jf/AA3Nf6/6FzS7BQpjfv0Jtf5uxonHf3Xb3oa/4rB1b8nZtz6C01qKZt/Mt6DVZ++w1LrQKmBY0k4KycZgTME9jpfsA9UmNF3rxJzbZJ+AE9jAfVrQW8hA4FLBqQIxA0ravXDNgdXQwwcGHhLufrdnVX9KJuBKxfB21EwJ3moGWNgJqGDh27r66Le+QqGtCQgP1ruOtbcKPtgNe1gnZK0MKd39hIon1kkFCofQfXqtG2aWbAmxMPGGmkL1ppm9YMKEgPGqXEfXymbdrOX+whlGol6kx9rUDmjhjJnRGeeOs8098s0pj3OPb/fIBTmR52LZSYjyd5ZXiYB/70TW4Dsv9xksaci19XnPvT29vWP/qZt4mPhRj5eAbta4pHG5SPNUkfiJI5FGX+yQqp/RHiI60e9wtv1tAKtAKn4NH3UBI73vpANhc9zn+lgHY1ZthAOa19ZoYNrKhBz+EEzSWPJaUZ+ECKzNs+5X+zxMTncwycnqdyukn1rINqtpbb/8MweAY4BvqHSbhwvDz90TBOxqef1uhMJ84NtG0XHUZfuSjoMxd4nFs5nw4a5CHoC1xvL741A6YF6vbrFdTeLpbVofYvtRG0oBfwmxTYjvapRsBvXNC0wO9+gPLsFR0mBC0WtD+CjiNBrpjtyuP7taxDbG0SoxbdMkMGqX0RrIhJbdJh6YUqpXcb6E1Wm5rcHb5YmLr0fOdRMMX2pl1N+XiT8skmdsJk+Ik01QMOi89UcPKS4C3Wj5lVeJ+oYz0fwXw5jPlKGHWng7rDhYDYwaakwGyCWYdkyUdZ0MiYqFVGrxRivZXfbRIbrJMhRvE2E2+V3L3x51oxh/yuW6/MoTHnoX1NYkcksDjVK/sYhkGk36a5sMlO1kSb/GCI3KJHsuiRj3UelVOIbcGGiZ/NEem1W4WmGiJ9kDRWBiS11pSONfAqPtm74hiGQf71KovPrm8h6tU4ecWp/32JoQ+lSO6OMPjBNP2PasonGsw/XYHLDrHpQ1H6H05i2K1RJrXWl+43mJAYz+HVFV7lwnWIaTDzzUujWid2hIkO2rgVH6+siA6FiA2HiI+EifTZ1Kc6j5Z7w0gscMvbLPG/W++sTQghhBC3jNjbkHzNuCwZIQRnwvBcrJWc9MkKZqZ1haCWTHANiGg4EoajURh34aONm9voJRPjlI1O+3D7pQsOMwrqJjdFCCHE9env77944b8WiUSCv/f3/t4NaJEQQgghhBDiVpWtNEjVVxaS9ebbC8tWkx8M05xYz1bdOKZShJWSm+pCbBAzYoAG5eiLham1SYfapEtt0iV9IMrg4ylGPtYqkN917BRL8Ri+YZBpNGjYFsuv1AilLAYfbxXzKU9jnKxS6AnhhE2aEQtlt2L/4R4bwzIwLIPc3XFyd8db85sGA48lMS6MplqfcYmNhjEMsOImVsSkPuMy+70SVtRk8PEUe361F63AtAzmnywTHQiRPtBe7KtchWEbDH641b7krgjJXRH8uqL4TqM1ksmftVeAnvp4GDcpI2UIIW4OiVGLbnkVxeRXCox9Ootb9leMSGrYkNoXJbk7ghUxqM+4LD5X3ZBz7XBPa0RXKUwVKyiY+lqRxI4wfY8mmfh8jsLbdZZfrF3sbESI65bW+E80oAnm6+HW480wetBHZxRENBPlC4UUl3U85EZMakmbarLLDl60xm5qIjVFpKYI1y/kNFkGyjLwLvyrrNY03zYwtCbU1ISailBTk9JgNlqFqGYDrAYYTTAu9ILSx6WO8p24QSNrUusxqQxaNDPGqqNZCnG98q/XSR+KMfhjj+q4SXm3iR9t/8ypUKvfnoVDt14xX3TIBhP8RnAvdvnX62TuiJG7O8bsd8s3uXVircq5VqlOdsElP3TrfZ7FrSc6bDP6iQyGbVA63mDue5eOU+GcSWQgRKS39b0oHWviLLYqQJdeuDkFqW0UzH6vDN8rk7svTvZQlPSBKKl9Uc7/dYHERJjMwejFGHf1fJPyiSbVM03UhVMqMwx9jyRJ7Y0Q7W/1XKKaK4/h1bMO1bOX7snVzrdyw3f9Ug+JifDGFqeKLW+zxP+kOFUIIYQQ21LkFCRfNdAhKD2saA7DQLwE5+1WgerJEHw5hUoqqJoQMJqDcd5Gn7Fg583rVdP4TgwA/ZOXLrYGP5wivT9KY8GlfKJJY9alseCt6OnfsKHv4QQYBgtPVwJHARBC3Bq0NtDdDC2wxWzHbRJCCCGEEEKIG62n3CBddzh0fhmAl3f3kx+1GJmtUY1vz9uEplI8dvYctlKcSuU2ujlCbG0aWGN4PJSx2Pl3e4BWIqVb8gmlLRrzl7qaby57NJc8qmebrRFBfm6U0VJrxNZU02G8WMb9hR5mvlki/0aNzIEYsRGbidNVdp1srcOzDd6+K01qb4TMwUvFo/NPlmnmfdyiT3JXa3Q1gMmvFKjPXEryMexWgUsobTH0kTT1GQe/rjBDBstv1MgejDHwWKvwdPnVGs6yhxkxKb3bwDBahbfxiTC998Wpnm0y94MyGND7YIL0/ghmxMR4sA79Xmvk1O8kMR6u4SbbC12F2Cy2a2x5Pcn+EduZV1FYEZPMwRhmyMAMm1gRg3CvjWFCbdLFWfbJ3hnDipjMP1VG3+TBKQ3TuOmvKbaO6lmH2vllsnfF6DkcJ703ytKLVYpHrq0XcMczKZUi9PXUO88sbh0RUA86qEMu5nEbY9HCnLbBgSH/ss+aAWgIOYr3BrP3fqkHJ+/TXPbwawqtWvOFUhahlImdsrC/XsK67DjnhUAbBqavV0y/Gi9kQAxUFPwoeNnW/1sPjYrCkhHD9CFaUEQLilheMfi2y9BbLvmdFtP3tXeyI8R6cYs+Mx+0yBxXZI8qcm8pmjmDxoBBfcCg0WeAAXYT3Nitd+6d2B1m+Ik0aFYUdF3Oq7SSAq2YdHy1FdQyNr4FfdMup+/c6NYIceMNfjCFGTIpvF1n4anKiuecvMLJNylf1lHGZpJ/uUb+5VrrWPwTaSY+m8W40GlHY9El/1qdyon2tisH5n9UYf5HFUIZE8NsbWs3alMu6dta1y16AwbDllhgMNkn12Z73nUWQgghxC0v+WorWLX4WX3xjMe0gV0e7PJQ+y34cRwaJqQVjLkQ1eACMd1KGPnbFMb3YmC2pul9LtzrtP6+EV4JYVRN1EEHksAPouz51QRmuPWCkT77Ys86Wmu8quLM/7EMPuz8xV7sC0GnUMpk+uulG9RIIYQQQgghhBBCCHGjmCGDSL9NpM/Gips0512UB41Zd00jviR2hum9P8G+Y7Mrpu+eKzFrRTg/mljvpm8OSvGBc+eI+D6nsllOJXo3ukVCbGn2lEn8eyF29TSYuTtEo6fzaD9u0ad0rEF6fxQramJdqMU0Llu0Oe9x7i/yF/8+NdjPcixGPhbhkXPTAISSFn2PJii8Xid7Z6tTRxQs9oc5vyPObUfK3P1KEX4iTWPBZe5HZRpzraKZ9xTfblB6p4EZMfFrKxOCtNdqx9CHUthxk9SeS0WjpaMNCq/WsVMmdsKkMbsyM+i9o3HtnEPt3MpRqOd/dCHpyoDbfv29eD7Q76FfjdJT8aj3mdR7DTAlyUUIIcTmoZVGuRozZGDFTPyGxq8pyiebVE41LxZCRPps0geiFI/Waczd3OxZK27g1aWXZnF1WkH+tTqlY036Hkow8FiKcK/dlhjfjWdfmmBksCTFqSJYQqPucWklGbW8ML2zbTZDaWJVn3jFZ+B/myXSY5OYCGPFzFbBvdJ4lVanPrUph/IHkjhxk2bcxImb+KHLrhm0Bq9VqPpesarpaTBaI7S6YQNtGUyk823tuJzbaOUWNdMmxYkL7fQ0uTMew6+7hCsNlgftm36MF7eOxqBJY9DEdDSJc4rYgiZ5RpF9B5QFy7vBtyFU06SmPcojt06pQ+/9CdBw5s+X8arB5zzZu2IYhkFNRtnbMubGI4ycaZJZcCj2y+ipYnvLv15j8INpQqmtW0BfPeUw9fUioz+VAVrXyue/XOhqWbfY+XrVsKHncIJIn3Uhfm6SvTNG/lW57hBb25rO2O6OniUR63zDqaTW1tvnvJfqet6E6XSe6YJeXe163tAa7/v0mN13wxYyur9Iq/s37qSj5HX/vtwWn+t63rHs6hezV/qBv7/rectu9222zLUFH/si3QedPN39D6RaQ6V8yVnbd6Xpd/+VzUW6H958X3phTe04V+2+p/G6F+p63lSi+57q1BreE4CE3X0vGymr+3YMhwpra4fZfTvSdvftaKruPxuH4lNdzwvwUnlX1/NGzO4vePdE59fUjhdL3bdjIBTca1SQpNX9e7KWYyPAjvBi1/O+XN3Z9bxr2c8AptF90tqzlX1dz7sQTXc9b0N1fywAqHnd/x7mm/G2aSPPN7Hqimq/Sb4WQl0o7lyoJy/NFAc+uvq69/78ItZLIcx5E6NiYr4WQZ0I4X66AVc0sS/S/XnHyQfav99m3GT3F5L4juLUf10kfTDC4AdD6KjG2+/h3t963815E2PewFq0sCdN9v56H0TAqBm4d7n4xyLEdkTQ//NOtGGgDFCWQaHPBnPlsXPg0+903WYhhBBCCCGEEEIIcWMldoQZ/EgKK2yiXI3fUPTc04p9VU43mflWF52RmZC7J07fgwlqkw7P7RukEg2xZ67IrvkyuWqT3PEmpWSIWszGDRlgbJ/iqL56nZjncy6V4nhfL5bcyxfiungDrfuv8WXFnh80WdxnU+8xqWdNWOV24dz3y9hxk/jYpUB67u44pXcbK4pH36NMk8ls657D0YFeJgolkst1nCWPxpyLW/YJpVp5Cn0LDm/dk+HMngS3v1miNukw+70Sfj34Xoj2aStMvdzCMxUGH09hJyzcks/8UxVUo7Uur6zwytdYAHNZcwwD+FgV/UyM3ndMTA9K4yYzD4dBa2JND9tXuJZJI2xtq+Oy2Bi255GtNUnky0xudGOEEFuG9uDs/7mMcvXF38IrRQdbHemUTzY2pGgplLLwyjJ0qujMrynmflCmPuMy+HjqYnH1Wjxy+BzlqhSQiOujTYNayqaWsrFf6pzPWfxXw1d/0jBQduux3rRtsLw3hOHD0FsutcGQFKeKG06FDcp7Lcp7Aa0JlSF5TtF7xKOeM4kvK3KnPKp9FvFFH7sJlWELL7o9r5nNMNjxVuE6F053Bj6YJDoYYvZ7JZwln1DGpO/hBL6jyL/SfY642FilXpuRM036z0txqtj+9IXjV/nk5hwdtVv1SZdTf7hIbCxM9Uz39Wvd6HsoSfr2KLXzDlbcRHkaZ0muc8XWd+t0JyKEEEKIW0a00LpZllhQ3PY3rYucWs7g9Idja1tRBPz3ue/Fe7CeDWG9YxP6TgT3p9b34mnspzNgwPQ3i0Ar4XDgMQ0KjIpx8axNjSgYAR8f84RJ+MUw1GgVsd7jcTLcw6GXyux/Y2WxrAZqSZO3H8jgRrdur0RCiC5oViS/bRvbYJv++//+v1/T/JFIhIGBAR555BEOHDhwg1olhBBCCCGE2AyiQzbDH01TPeuw9GIVp+CDhn2/3g9A9Wznm99n/z+HefTEDDHX4/hAhmN35jASrQTcd3dm2TV/qVO/h15duvj/tydynBlu70i2THsHm6VSe3xNNds7tjVq7dNM1Z44dmV/n133sxeQV2xXTYYKraSsM9Fe7KqJNgNWGDDJDMq3DMpz6yafOWC5oP42dcBdWhXU3gCm2/4i3faV200fq0F9DSq7vW3d9vVpBGx/UH+9OuA1rlmyvZNHwwpY/2IkoCHtk/xYl8nsAe+hEQ5YNuDDbgQsq7zOsVylAuYJWL8OePNPLbSPLnzWWll1mrnf4eDJIrG8pu/45R80jXGoiXl7EyPb2kbrZROtgKaB+1ULXbyiWbbBif94b9tr7v2l51b8vXDh8Z5zf5Gn53Cc3D1xKqeajH72CADH29a0drXzLqf/4zJ20rymooXVvHv/lZ9DBwwY+kiKeD3MwFcrpA9EuS06fXEOv6kovt0g/1oNM2TgNxX6wm4//keHu3pdHXC8bfvyd7upXaxqTbo90HfzIgHHDB30dfMCfn9i7QlfoVT7b623FNDZdNC+iwRM9AO24crj93Xsy8u3q69cZc9igWyhjmkbrWRmwHEcnlrLSrdrbHk9bfH9IzFq0clqnTKEcxZDH2l1JrFRibN20qKxIMVSonuldxrYSZPeB+KUzidJj3c/mEU4rOgNdz+wgBDbwdJtITKTHrGhEIU3pMcvcRMZBm4a8ndYFHtCjD3XystLzSkOfLV+8dJJmVAesXDGNbVhAx3ePoWq45/JYUYMtNbs/IUenIJPpMe++Fz5WIP0/igYMPXVYoe1ic0k32fj2Qb9My76tSon70lsdJOEuGESE2G01lTPbu3iVADltEZRXW+x0RClow0Wfnzh2sRg4+JNEgsMtsX3yUbF/6Q4VQghhBDbzqmfjJKY9ogWNZGiIjOpiOWv/2zRf8TFOmthFNa3uDN7d4xIj035eIPGbOtmmmrAqT9aZOf/rQdr0iL0bAj3kZWJLGqvorF35c2QYn+YV9+fIVHyMWgVt4ZcTd9sk2TR5/BTeV78UA5lS4GqEELcbL/1W7+FcY0jXzz88MP8/u//Pnfeeec6t0oIIYQQQgixGfTen8CwDAwbdvxcD80lj8JbdbSvcfI+pXc6J8Rm6g5x1+NsT4rzPakVI+8pA547OMDEfIWeUoOoeynpvLfcCCxO3YoybgMFOHZAdaUQ4poUc2HOfCRKuKhIzCtS0z6JBQUY6Lej+G9HIaYwdjkw5OK/EkMXrpKGcHm9i9bsmSwzPlulsC9C5WTzqgWTytEsPldl8blq8AzrYL0LU69KQ+WMQ2pvlPTtUUpHGtSmXJSjMCMmseEQuXti9BxujZytPI1X9qmecziutYyqKgLdf24OEyBs0lhwaS56NJc8KnNSUCBWkhi1uB6DH0oRSrc6oSmf2phEYytioJwtniUqbrrll2vEhkOc+s4Ed33xKOZ6doojxDZUHrHpnZW4itg41QGLkz8RZeKZJm7coDRqU+s18cMGudMemfMemWc12oRGv0FtzKA2YuAntvb1shUz8aqK2e+VGH4iTThr0Vz2WHy2wsjHM2QOxlCuYuprRZrSWcfWYpu8+ESaw98v0TfjSHGq2LbCvRbJXRH8ukJJHy9XZVgGWl12TSKXJ2KdbVT8T4pThRBCCLEtVUdsqiNgOor0VBM07HiyQXHMojJs4cWuoTizDNQNdGb9klTMuEnfQwn8pmL2e+UVz6kGOD/tEP2jKMZS9yeK9ZRNPbXyNG96d4zbXinRN+eSW3BZGg4YEUAIsU0YXFeX+5vW9tkmrdceVXr22Wf5wAc+wPe+9z3uu+++G9AqIYQQQgghxEYqHm1ghgysCzGrSK/N4AdT1KYdZr9duupyhgX9jybBhOmQhW8Y7FguM1Ss8t1DOxhaqnHXySVspTk+mua1fX0XR9QLeT6Wr2mE20c53arivkvDktufQtwITsbEyZjk99mgNXd486i3ouiTYaib6CNRvCMBo0xepu/hBLan8GyTnVNl9p0rYQCxj6SpHXSY+ptbY+SPyokmJ88tojzdVpBbO+dQPtYg3GujHE2k1yacscjdHWf3dJnFTBRLKSqxEG5o+xy/xfV5c6SPQzNL2FoT6bMxTIPFZys4zbUmLG/X2PJ62h77R2LUYi2suIkdNykdaxIdaBUrbVRfCW7FJ5SQTpjFGmmYf6pCfLQHdSbC0IGFq8561lt9ZKR4F6PAO6yeizFkdz7ndfXq53m7+q++De8pq9XPzUcjhS7asfr37Z3lwVWfH0t1fo2aF169DX7nc17PWL2dxUqu4zoq7urvW9GJdVzHg8PnVn1+8LXOo04fq+RXfT5quas+D6A6vG++Wv35Ss5iIGoSyli4xY0ZKVtsb/6Hpld9/r2jwuRl0wxaBQ/lC4/o3w4Rn9LEpzQ9ryh6XwYnDbM/YaHCBuO5Qsd2nCe76vP1aufcOsNc/XehJ13ruI7T/8fdAAy+NE+q6nH03x/kqHnpe9r/q2UWHUW4pmhkbfh8pm0dBXdm1dc4me/r2I4zZs+qzz89s3vV5xtu55jsnQOrt3OpHu+4jsHk6qOgh83Ox63JcnbV55tu5wJ9z1v9WOp57b9fswMuO87XiExBvjfCca9/1XUYXZx3lBqr/95b5up5ruFw5/1Vqa3+Gn7Atl5JuavvL7OLdtj26vOUOrQTYGE5vXo7rM7tyKZW7whMdRE3eDM/surz86Vkx3U4zdU/p9kOx594tHOHQ32fP7by70cTpA9c2M8K9Bd70ArQYMfNVtGl1sz9sNy+MnFRc94luTPC8ku1TdD5ksQCg22PfXKz439yd1YIIYQQ25oKmxz/eISJpx0SC4rkgkK/6qJsKA+bTB8Oo7sZRVRB+KutYLP7AQccME9Z4IM66MM13gMb++kMGDD9javcgKgBGgz/Ok92laJnwcU3Id8vPRwKIcRG6qZnKq31ivm01pRKJX7pl36JN954A9uWy3khhBBCCCG2k8rJZmvUQMAwwQgZRAdsalPuVUcSxIBdX+zFipgoT3NoZpln9gzxgRMzOLbF4bNzDBcvJSDsmypxfiBJPdSKDbm2xaWcoY2+AX79bOVhak0p1DkJRQixdtElRXrSp5E1cJMGjCnMD1Xh3jrqRBj9WkCydtynOamJ9LQONvGxMBMzFU6Np0nWvRUpHt2MEL2drJZ45OR9nHwrGa52rlUgoTzNAQBa9xKUATO9cc4MJykmpTPKW91ULs1ULs19/+E1Bh9LE+m1ydwZZ+GlW6PgW6ydxKjFWuz8+Rxm2ERrTW3SIf967eLv1M3mlRR2WjpnEGvnFnxi6QbFuSQjqxSnCiHAi7R+/62ogSunk2KT8hMG5f0G5f1gOpr4OU3fS4rEWU1539YsKMlnIqSrHomaRzW5snBfhU0aYemgY6s7szPBxPkaB98p8sz7Bja6OUJ0zU6ZjP9MFjth4dUVqqkwLKN1L+vCv07Rpz7tUHy7jpNfv8F/tqOll2qMfybLyE9lmPlGEb+x9e/Pic3pZsf/JFIohBBCiG3Pj5ucfiIKTU1yTpGc80lN+2TPK9yYx/ydq/fECGC9bmM0DXREE/5OFJpgXEid8Wc9eGL1HpHamDD6UxkiPTblEw0as8G9V0f/upVM5+1fa+/WK/XNuJgKzuyLobopxhVCbF2a7ZBT3G4bbNPExASGYTA1NYXv+xd7p8pmswAUCgWgFRiIRCL09/czPT2NUgrDaPUu9+677/LXf/3XfO5zn9ugrRBCCCGEEELcaFqBbmpq51cfDcOwjYuFqbPfKTHycaNVmGqZpJouqWb78vceX+SZ24dvVNM31EC9ggEsRBMb3RQhtqXsGY/c6UuFKD5ZMHWrShIgeiHpqHFZ/LlmEelpjXJWOd0klLBYuqsV8z6yK8v4fKuAXvma6tnVR6m61S38uMLrX9iF7St806S/0GDHbJnRxRrTvTHe2t2DJ7H/W5dSPHR2hp4PpNBaUz3jkH+58wg9bbZrbHk9bfH9IzFqcS2aix6xkTCn/mgJtcFJs27ZJ7Gj8719IYKEYy5uU9JlhViV0vQfd1G+xqtIYYnYGvRlg74Z15det2EG5uuMz1TRgCNFqNuWF7aYHYoyPNtg/ztF8gMh8j0hkHiO2ORGP5nFipvkX6uy+Nw1xJvECm7RZ+prRUY+nmHkpzJMfqWA3qjfL4kFBtvi+2Sj4n/yayaEEEKIW4YKm5TGbabvj1AZavWoWhns7nRIpxQaDc0L6xr1cR9totEYpbX1uBYdttnzy73ERkLUph1mv1u++swuqF6Ff3B9ep/V1tbsHU4IIbaDM2fO8E//6T/F8zwikQi/8zu/w/Ly8orHv/23/5ZIJILnefzWb/0W1WqVP/7jPyadTl9cz1e+8pUN3AohhBBCCCHEZrH37/cBYNoGIx/PAHBkd5Z6zMI34fh4itMjSY7syjKfaxWD5SoOP/XCWXYuFzk4s8T+uWUitoMV8dseyrHaH9VQ2wPXbH8E0Eb7w1ArHxdvhF/+6FKvV0MDc+kEKqJbjxBdPbTV5SPU+aHCAY+A1wxiKKPtoWK6/REOerS/rrbbHxgBj7Y3q/1h+u2P4I1of2gz4GHrtkfgdtm0PQLfmyvWb+TDbQ+9FGl/WLqrByHV9jBifncPW7U/LN3+MGl7mCG14uE07bZHoxFqe4TDXttj5+BS22PH33mz7RHk9HQfzw0Oc3I0tfIJZVA+3mDhmQrH/8clFn5Qo3S8gVNYmU0TSloYwNwPy/T/l2+z95deZfevvM7kVwpUz7V61FfuFs/4uAlGfv1NBn7jbYb/izex/+Vxpv7HWd6+PUN/scEjR+eIxBwi8eCODQxLrXyE2h9Bgr6rGAGPLpl9zfZHr9P26IZRt9ofTbPtEbisY7Y93Eq47YGi/RH0gxYkaNmIWvEwXOOaH/v+0fMXHw986S16a00acx6n/miRmW+Vun5PxK1FYtSiW+Fei52/2MP4Z7NEB0NUTjVbhalXO3+8SbQPhin3u8W1SfdXWTybRfnyGRIiSKTks/vHdbKTHnPfL+NVpThVbA2xGU3fiwptQH1k6x3j+xbr3H00jzbglTt6cMPSkcJ2duRgGtc2GJ+qc9erJT7w/SWSxdU7qRTiZumZarLntSqppUufyciATThtUT7elMLUddRc8Jj6WoFwj03mUGyjmyO2mY2K/8kZjBBCCCG2lVBJMfiGS7iqsRoag1YykrIMlAXKgnBVY7vghaHW111xqtqrcHbWW8kDFzpjDX09AoB/2MXqtoHTJmOfzIKG+SfLlI42V5/fBMO7/sDZ4nCIfW/C2Mk60zsiYEofJUIIcbM988wz/Df/zX+DYRj8u3/37/iv/qv/asXz2WyWf/bP/hnRaJR/8k/+Cb/+67/OXXfdxRe+8AWUUvzyL/8yAC+//PIGtF4IIYQQQgix2Sz1h+hdWJm4kk+HOT+Y4IG3FxibqxFzfBphk1pk5S3BQycKF/8fcRRH9mVvQotvrLjrojBQEvcS4obQpsG7O7IspyM8cHSR+rRDbCSMnbIofK9MKGPR/0jy4vzFd+rEx8KEkq3oefbOONk745z50yXcUivJuT7jUp8pbsj2bAsaZodjRJo+e05WsHyNb2+9RFxx/RLjYbTWTP51YaObIjY5iVGLbmXviBFKWYRSrd9xt+Iz8fkckd7WdcXp/7SEV775RUuGCVpJhxbi2uw6PMXkkQGe+4u7GNyzRLq/St9EHkMuIcWt7MJIqb1nXMI1jRMzOPX+GOo/LGx0y4To3oXj+MxHLdzM1rsmPniiiDbgqQcGcKJS1rHtmSZPfqCfvsUmqYbLruM17nqpyDMf6dvololbTM90k75pl0hdYWiN5dH6P9A/5TC5N0IDiA23etqsnGxsaHu3I2fZp3KiSfZQjMIb9S0/WqfYPDYq/idnMUIIIYTYNtJnPUZebCXkaQv8ECjTwPQ1lquxm4BqFasu7LeZP2SvrUjzsjMnY8rEmDPRgwq1Q3VdnGo83Rql4txf5QklLfrel8CKmKimwnc0qqnxmwrVUPgN3brgWI9BU02TyT0xJk7U2f96lWP3pjovI4TYmtY4ssyWsQ226d//+3+PUgrDMPjoRz961fl+8id/EgDf9/m3//bf8uUvf5nPfvaz/Oqv/ipKKWZnZ29Wk4UQQgghhBCbVGwkRLzio4Hl/jBzIxGmYik8uxXrmumPc/vJAgBRRxF1Vo5Cd3xHilIyjDZgORO+ya2/MbbBZaMQN51htxKMBj+cxo61jh/xIyWiDUXvksNyT4hq0qZKk0TDYyBfx7xQEBIbCaOVJv9qq8d8v65wK/7FYtT3ilcuV59x8Woy+s56G5ptoEzwra2XhCvWh9+48L0yaXWyeq22a2x5PW3x/SMxatGt+R9VyL9WZ/STGUJJi9TeKLXzDmbYIJSySOwI41Va97Obiy7a67zOdWGCllMJcY3SA1Ue+uxbHH1qJ8ee2YHvWqQHKgzuWWLs0ByJrCTci1uL4Wl2vNAgNeezvNOmNGRTGbDQloGM3yW2EjfVuhY2tujgkyFXU49YUph6KzFNFgdiFOwwuSWX7PIW/fCKrcdTDJ1tMnjWIVpTrTCQ0XpgQKnH4sTdCe54pszYiSbuz+VwSq3k5aGfSOMWFc0lj/mnyjfvGnCbK7xVJ31blNw9MfKv1m9+AyQWGGyL75ONiv/JmYwQQgghtjyzoRh42yN72kdbcPrDEZxMe9Gp0uuXmGGesDAwcB7vMPLplWomhmmw4/M9FydprTGMq7RNgYqszx228/vi9Mw59M06hJ4vshw38SURSAghbppnnnnm4v9nZ2fZv39/4Hxnz569+P+nn34agEQiQW9vLwsLC1QqlRvbUCGEEEIIIcSmFu6xGPtUFuoKJ2Tw9n1pALyKCVrTW2wSafpcHm3yTIOpgThjc1UsDfvOlnntQI7ZgfiGbMON4FgWKdfpPKMQt6jEtM/Y0y5z99gUd1sYHuz9B/1t841OXUrKNzT0LjgMuk0aYYtq1CbkKZZiIer/0yTa1a1OFgHlaM786TJ23CTSY+PVFE7ewwwbaB+Up6+vaE60Gf5omn3fayWIzAxFN7g1YiM1lz1Se6NE+20ac5IdKK5OYtRiLdyiz5k/WV5R+B5Kmwz9RJr+9yUv3t/WSuPkfZy8h/I0i89WUc31z+SM9Nuk9kRwK3JCIa5d344CH9jxGlrD8lSaUy+Oc+bVEU6+MM7+R8+y89E8prnFM5GF6EIs7zP2apNwRXH6fVEqA5JKLrYu/0I1tdXQwNbrtMmzDUKenN/ckpQiVXTxux0VRYjrdPePykTrraLU+dEwp++Ioez2POtXPpzmwEtVskoTzrXOEQzbIJS1CPdaJPdEKL5Vo3LGoTErcajr0VzwWH65St9DSSK9NrPfL0sMXVy3jYr/yRWFEEIIIbak0CzEj0PfbB3LaYWW3Cic+XAEL76G0VCvVbp1QyL857HWGVVGoQ83YWKVYU7fCmF4Bs0ll+aiT2PBpXrWwSsrzAhYMbP1iJpYUQMrYpL5BxG829bvAu71R9Pc9VyJzLJH5pd68OuKpRerlI6uschWCLF5XezSbJvZBttULBYvJmv8q3/1r/j6179OKrVyJOt6vc6//tf/Gmh1XlAoFC4+p3XrtyeTydycBgshhBBCCCE2neTuMMMfvXRNUE3bJIsu4aaip+QxMl+jp9ReoGkrzY7Z6sppfnvCbcj1GVxsMDMQQ7G1smIcy2qlnykF5k2IDwqxRRhK88jTi0SbrayWwdc8eo96qNClWMvs90tgtEZRfedXRqnHrQs95rfmqVcjbevdVz7X/mIKvIrCq1w6Dvl1Se6/US4fhfb8eOLi+yVuXWbkOj8D2zW2vJ62+P6RGLW4Jpclxrolxfm/KmCYYIYNrLhJdCBE74MJUr2tjhLyr9ZRzVXumV8DO2Ey8dkcANPfKK3rusWtyTCgd6xE79jb+K7JsWd28M6Pd1I4meGJn36ZXG+180qE2Go02HMG40caZCc9GhmTU4/FqGe3VvxHiCvZ5Y1uwfVxQiaJmhR33YrufKWE7cOpfdunA0mxeZmOIlJXFHttjj2QwLNWuYdimrzzYIq+Tx5reyqxO8zQh9Pk7kmQuyeBVhq36DP51aIMlHONll6s0Vz2GX4iTXPJJ/9q7ea9uMQCg23xfbJR8b81FadGDY+o0fmgUTXCa2qEq7tvxlkn3fW8Bb/7H+uqXtuQs7vt7quAh+xi1/Mm7LUVhsw3U51nusDu4r17z1Qz2/W8prG2G4r7Ugvdt6PefTvWOhreaKTQ9bxVr/2G69XknVjX88bttfXgXfdCXc/rqe6DBnW/+/UCVN3uv+O+6j4BZLbR/fc7bK4tkF1aw3u4aCS7nrcRXdu+e6s40vW8g7HuA+rWGr6HL5R3dz0vwHyj+/2xlvfFNtd2EpoKNTrPdMGOyGLX846E813P66zh9woganb/Hffp/rtystLek/lqql7339mlave/nZFQcE8aQT468k7X8wI8kD3bNk05UHkrTe1EAncpDMoANEQU1g4X+/Y6iQmXe1ZZ7/labk3tyIZWOcl/ENxUBHU+jF62UUsWxnfi+DHI321SnWBFEpxdUoy+oFA2RP7vVWIXn7IuPC6nLzwU708fWVObh6NdnHfsAm/OZvq5AZJzBgMfTOP/4xD5vVc/pjlr7KIr+bFTa5pfCCFuBePj45w8eRJo9VA1MTHB5z73Ofbs2YNhGJw5c4Yvf/nLLC8vYxgGWmvGx8cBaDQaF6f396/tXEAIIYQQQgixPdgp82Jh6rm/yjP8RJockHu2FQ/SWqMcDZFLMamp3jinh1JEHZ9kw2XPdImQr3Fsk/O9SbTburcSdn12zZTZM9XK5nIMi5lce6zIcAPuxaibf5PWaqx8TVMpehr1VkQtdA2FqQEh9sDbTt2MoNPl/ghcf0Cs32wEzBjU3oDN1lb7jCoR8BpXvK+G1/6agbcZA7ehfZIKCDuqcMBGdLnPVcB2BX42r5wn6L0JWE6HAtbf6C4+GrTPddDnJmC+oGnGFdOMoPtBAR8m2750v8byFF7IgMtuQ9tN4LIRzYY+fOke3YNPL1E+2aTwRp3mgiRHbmYLP66QvaN1b/rA2CzqQurA6VJP27yZyMr7bPlG+z1tx2v/nOuAz1el2j5Kq1tqvxcV9L3xmwHfpYDXCPraXGtOUOBt1IDjXOBQJV3egzXKXd5DtK9YX8BG6XDAAfcq226GYeiJDPGxENrX1M653bVD3LIkRi3Wi1bgNzR+w8cMGVgRg9qUw8LTFdzi+hamAhgXOtWoTTo0F+X8RFyb39t7cNXno4MFnA+n+aOzP8Hi81WKb9Xb5vmXJ9/o+DoltfqI9lXVOYcn7yVWfX60i1yn/g7VWmW/c47jnvjq+VfpDrmuTdX5HGlPcvXX6CZ/9Lbk3HW347XC2KrPd5N72ykHs5sczaHo6vmC56rt5/ptr/PBlfvDipukb4uQPhAjnLFwCg0W3qxTPNIADd1nuwqxeVzMW9ea/mcVXgIaY5em704tdVzHXHn1/Hs73f47cKVO+dHd5E97cTCrkIzVAjvcW8h3rhOYiq7eVtvqfH42N5dd9XnDWv04qLuIiR4PrX4d0U07m/7qx/TF2uq/oQBWh9zlbLzze19trv57Xg6InVxuaL5Gz5JLIWdzfndwmyeyhY7t6LS9nT6DE7nO5xSTxdWLkxrdhMyD4jCXP+92/q4kUqsX7PXFOxf0TZdWr1Pw/S7aEV49L7yb2pCTi72rPt+odT5fVPVO34WV22p6CihSVSHmF7PkBjpX9hvfH22bVgNOAeG8omfGIfG2QThn0/MHOZwd7esovr/z8ViAW2od/+LjIfKvbnBjxJa3UfE/GTlVCCGEEJuCt2TjnIuAY6DSDlbKQ7kGjdNxGudjqJoFGGBo7IxLdFeN1F0lStGNC5OGDjbhYCvYfnRxgN5XNMmzmv7nFH3PgTYV79U0v1erPPd+k9FNMHCDPehx/tEoKMWBv2kw9KbbXpyqLgRiZKQJIYRYFz/7sz/L7/7u7168qC8Wi3zpS19aMc97PU8BGIbBZz7zGQCef/55lFIYhsHBg6vfPBdCCCGEEEJsT9q7dL3g1xT512oMfKCVnLT8eo2eu+NYV4yYVomFGF6u4dgWzZDFkR05UnWXesTCUBrDgLH5KnecvpSEMp+NMt8TCyyA3GxSzQa35RfJOa2iq7NpGcVLiCv5tskr78+xM5fHcDVWDaLzmp6XLn3JvZDBuYMxiv0hRn97koH3p0juinD6j5ZQ7hY4GNyi7GQrdu/sVBcLU8WtI3dPjN4HE2BAc8Fj5tsykqDoTGLUYj3YKZPeBxN4FUVyZ5hwzsYptI5Dqrl+5w1m2MCMGIQzVut4B9Sm1jYIgBBr0ZjzOPcXefoeSjDw/iTJXWHmflDGq8gIUGJrMkwY+GCK1L4I2ofKqSZzPyjTmJUOTcT20hgySJ3QTPyfivnHTRrDW2u0s1IuRM+CR27eJT/U/SA8YotSive9skCy5qEMeP2wxLPFzaFsE8cyGcrX2TeVpxKHRvLaS8mcnEltEKJnwK5A9BQ4w8DaxjgUF3jV1jWHs7T+nT2JW89Gxf+kOFUIIYQQG0o5UPzP/ahlm/e6fl7Z95TGCGkiYw0SB8vE9tZW1kpulo5RwyZLD8PS/Yr0u5rIMoQq+mJRarMXlu81cfo2WaGnadLIGsSXWiea/W859B3zVnQGrixoJk0qfRb5UZtaj5xCCrGZad16bDfbYZv+2//2v+XP/uzPmJycxDBav3laXzkCyqXp4+Pj/Mt/+S8B+PM///OL83zwgx+8SS0WQgghhBBCbCbhXCsmo1xN//uSxMfD+E2FFTHpuTseuMxtk8Wrru/g2QLNkEXMad3sdi2DV27rYyl7oVf3TX4PfKxU4GChNcJK1Q5xrLeH+aRUZwmxGh0y8DJQyRg0hjTZH0G8rLBdzciJRqu3+7tax5PGnIvytkFAZhtL7m4lrYbPmNQ+4F91dE2x/eyaK9D7UALlaGa+U6I+62JaYEZBNTovfzXbNba8nrb6/pEYtVgPAx9IkpiI4NcV1XMOC89UW0Wj61i/F0qb7PyFlaMJLb1YpfBG51GshLge2oOFp6tUTjsMfijF+GdyTH+jSHNhsySmCNElA4Y+miY+FmbhmSrlYw2Us8VPZIQIYhjkHzCw6j7xKeh5QTH9aWujW7UmcxMRdhyrM3G8LsWpt4DhhTqpmkcpYXPiUALsTZZLKra1F/f188i7c+yfKaFnYGkoxLHD13dPpfChVow5MmXQ/xfQ2K0p3wtEIfoulMOtHHGxOr+mWHyuQt/DSZyCR/Ht6wjwrYHEAoNt9X2yUfE/qSwQQgghxE1XfTpF82QcI6RQJRsUhHY2iN5ZxYwp7JLGq9iYtiYy2iCU3UKBftukdGijG7E2oRpgwOjzDTKTCj8M9ZyJHwJDQaygiZUU8aJi4KSLBtyoQS1rUhyyKYzYqLAESoQQopNMJsP3v/99Pv3pT3PkyBHg0oX+e94LBBw6dIivfOUrZDKtXhLvv/9+fu/3fg+Az33uczex1UIIIYQQQojNwAwZjH0qe/H/sdEQWmvqsy7JHRG8qs/SizUGH29PJDgzmKSQiGApRdT1GczXSddcTM3FwtR3JzKcHk6irK0T47mtsIRvGDwzPE7DDqNCG90iIbYWL2Xw1vtTDJxtsvNInWhN4VsGlTNNapMutXOSNbTZGZfl2xp10MH9FIhtKOa27ptZEZOxn86ueE4rjd9QTP5NAS8fsLC4pUmMWlwvO2GSmIgw/1T5hibL9tyXaJtWfLuO3uQd6Ijtoz7tcu4v84x8PMPYp7LMfKck58diS4kO2iR3Rpj+VpHqafnsiu3NqmniU63/2zUw6xq20PWxHzYp5SzSeZ9oxbuukQzF5teXb6KB5+7uJ5LaQjmxYlsoJqN8895xespN7p5ZpHfWJbXkUu699psrKgPLn9KEz0LqBYPYSZPoyVZcwcBAPZRk4anKem3CtpZ/rY6dMBn4QIrsnTHmn6xQn5YR78XabVT8T85ghBBCCHFT1d+O0XgjBZZCN2yMqCLxSInI/ku9nMb7JTB6MxXHLfqOeWQnFU7c4PgTkbZeuRzfIlr0yE16pBZ9omVFZtYnO+sz8VqzbXRVIcQG0hce28022aY9e/bwyiuv8Ad/8Af8yZ/8Ca+88gqu2wokhUIhDh8+zBe/+EX+/t//+4TD4YvL/eqv/upGNVkIIYQQQgixCShXc/6v8wx8MEUkZ1M77+CWFdk7Yjh5j7kflmnMedgJk94HViZyN0IW6ZpDb6lBprbyRvZiJsJkf4Lp/jgYW2fIvVyjhoXmdDJLww53XkAIEUhbBnO7oxQHQtz2QoVwU7F4tIGTl8qPzS6xK0z6QAyA4mdcKUy9xRwZ68P4n86QvTuOYVzozd/XYBpE+22iAyEyt8eoP91c24q3a2x5PW2D/SMxanE9osOtpOX4ePiGFqf6jdYwrM0lD6/qk5iIEB0IUZXiQHETqYZm6qsFhj6SZuRjaeZ/JEn1YuuIDYVQjqJ6Ro6bYvvY+Qs9hNIWjXkX9aSPHzMwPIjNaPwwVPYZ+DFQ0Y1u6drNTUTJ5Kv0Tzmcv03y7rYzbYABxBse/vUNWCnEtTFNljMx3hpP88D3C4ydrHP0OopT3+PsgKUdGntWk3zNILTYmh4bkl5F12Lh6SrlE016H0ow8okMU39ToDF/AwvZJRYYbBvsk42I/8kZjBBCCCFuKm8qAkDui7OYWzAYtB3N3xmmMGETKSvKIyaYwSNkNDI2MxmbmfcmeIrctEdmxide8FeMrqr+YR9LL1QpvF5vW48ZhuhgCO1rmsse6sbdtxRCiE0pHA7zG7/xG/zGb/wGnuexvLyM1pre3l5sWy7ThRBCCCGE2K6O/+/3XfpDa8KeYs8/fQOvprDCrcJQvxF8x/PE7z1MxPMYP3kWgGc/dhDPNrlrep4xu4z6lR0c29HLQydnoLIy2HJgsti2vlI0zJujfRTjFwJ0ATm2hgqY5ndZwBq0bMC0Nrp9/UZAjdx4uYgGzqazrWwewAjYdQGr6/Zlg6kbXMAb1JCgj4TZPlEHTAti5NoTU/3GymtRs2y1zdOtoPdZhQPa1uUgvYHbFbSpV+66oF3Z5T4KWjboNbUdMNFqn2Y0AjY2YJIOte887a9cX+CmB7SjVm0Pvh+pDrdN2/OLrwKQuydG9OEkANm7YpJ4fwMd+/0H26bt//UX1rSOxK4wIz+ZwSn6DP/8eXb0rex44P7MmbZlZpzsir/P1nra5nH89u9+vtle9RoJtSdEOcn2ZQvF9lHvWO6uQ4Gg76tx5TH4epKEApY1gr6XQQeEoB+cbl3xNQ9cldfdb41bVCw82f5d3fVLrfdWe9sgi0rcMBKjFteqcqJJ4y6X+GiYyICNW/JRV7mGuR6Lz1apnGqSPhAlsSOCW/Kpz8iIMeLm0x7MfLtE//uTDH4oxZFndnHwkdNbqW8ncYuyYiZeTW2LxHoh3lOfdQmlLUJpC0dDZEmjDajtMKjsMnB7ts7B2XQU/VMOybxHvOgTqyo0MD8mnfBtd6fHkozO1bnv7WVeeLw9NnMrMJXiwJkCQ8t1Qp5itjfO63tyV81ZfU9m3qFn1iW76OFGDN55IIkX7jLILNp4URNtQrSmQKmO+7/r9Q5B4WMaGtD/l6CVnIysVWPOY/pvi4z+dJbhn0wz+TdF3KJ0JinW7mbH/ySiKIQQQoibQjWg9nwGd7KVFOPnQ5jDcgNps3AyJk5mjReYtkl+Ikx+4tKkaNEjd96j/+0mfQ8niI+G8JuacNbCTlpYkVb3X8aFuzVaa878p2W8SjfZiUKIrmhjDVm1W8h23CbAtm0GBgY2uhlCCCGEEEKIm8BUih1zFcbnKsSbXqu+8Au9F59XvubUHy6ir6j5sVMmw6Uy98zMX5wW8hW+ZTBWLAOwo1BC2TCZS2IpjaE16boTWP/31kgv53rSW2qk1MuFPI+BehXXNHGkeEKIdZHY0epUsvRug8Ib7R0OinWmNabWWEoT8hWx0RChlIX2NY0FD7ewerJRpKd17AtnLGb+fAw745I8WCZ9TxHj2mvLxRZmhiHcaxPOWVjx1q9/an+UuefbO6hY1XaNLa+nbbh/JEYt1qp0rEnfwzYTn8kBsPxKjaUXquv3AiYkxsMMfjiFamoqp5osv1pDuZLULDaIhoWnKngVxRF24zRs7v7Q8a16SS1uEV5FYSfk4kBsL3PfL2OYkNwdQYUMSrcZNIe25sH4jqfLFwtStQnljMXJOxM0ExLr3O6qiTCubWD52ztXMlr32HWugu1pnLDJUjzKfE+MvkKDe48tYWlwLQPXNhldrDGQr/Pk3UM0I1d8By4UTT701hy95Vani74JkTrc88MSL300e/M3bhvxLYNYTfHgd4u88BOZdStQBeBC34lWRAqIr4X2YebbRcY+lWXiczkWnqlQOnoDRgGSWGCwbbhPbkb8T85ihBBCCHF9lCKRV+SmXVKLPuGawlQXzllN8G2DZQbRdRMwwNSEJuqEpDB1W3pvdNXyv5hm4rM54uMXenRT4DcVjQUfJ+/TXHQJZy2yd8QZ+3SWM/9peWMbLoQQN5lSiu985zs8+eSTTE9PAzA8PMxjjz3GRz/6Ucz1DPgJIYQQQgghNoXbz+SZmK8y1RenkIwwtrgygbt0tLGiMDU6ZJM+GCNzWxQuFKZWQzaTmRTpRoPRksNyLEJPvQnA+HKZXVf0Qj2bjvPuUA+eaeKbJp5pbNmiVIC+apW7F2cxgDd7Bze6OUJseYldYcJZi9hwCIDapIOTl17YbxQ7ZXL75BLjy2Xsy4/Xn8yitb7YqWP5RIPKaQflKAzLoLng4VUvJS0uv1yjfLJJKGly5793ac5GKTzXg1YG2QcKN3mrxEYxozDysSzRARvDXPnbrrVm+dXaBrVMbBUSoxbXqvhWndI7dVJ7ogx+KEXP4Th2ymThqQrKuf4C0tzdMfoeStJYdJn6m+K6rFOI9ZB/tcYT/+o8r373APFUg/0PnN/oJglxVc0lDzNkEBsOycjTYluZ/V6Z7JxHNp1k4Jxm6tMmKrb1Yp2+ZaCBlz6WwTWlkPxWY/uaUiK00c24Ycamqhw8Xrr4twHsoIa+8H9lwKv7epjpSwBwz7FFRpbqfPC1WZyQiWeZRB2fkKcw4OJyhV6bU3fEaCZtJo7UGD3dpP9ck4WJyM3fyG3i9fdn2PV2hd55j/4pl4XxddyXF0KZ73WiJtbOr2vO/WWe/keTDH4wRWIizOJzVRlFVazJzYz/rak49dzxPg4elsIBIYQQYruLVjwmjtVJ5T1sT2N2OJd9L8SjDHCjBk7IwFBgeRrL02CBPegQe6BMeNy54e0Xm4AH5/48j2G3AgR4wbNpX5O9K87E53Oc+4v8zWyhEEJsmCeffJJ/+A//ISdOnGh77nd+53fYu3cvf/AHf8Bjjz22Aa0TQgghhBBC3CgT861i1P5Cg7C3smf0E/+/BbQH0UGbzKEYiZ1hrLCJV10ZmEu4HrcttsdQHNNgsifFdC6Ja5mEPR/fNKmEw1u6GPUipbh3YZb+eiuJ5UhPP0vxxEa3SogtLdbwGPnJzIppVxa4ifWTvStG/6NJnHyFM/1pypEwyjTwTYNdf3KS7F0xQslWQmpqb5TU3uiK5c99OU9z8VKg3S34uAWf1B1lUneUMUxN8fkeDEvTd5/kdGx7SrHz7/Zihg2cJZ/6vItb9HELHs1Ff0UxsxBBJEYtrpf2WiOua6WJ9Npk74qR3helcqrJ0ktVtA9exUdfQ87se8vMfqcshali09lz7xS1cpQ3friPeLrB2G0LG90kIQLVp12aSx4998eZ+lrxQuKOENuAhsKbddRvphn8nsKqg4ptdKPWzvb0dhyUTXRJA6bevgfmWMPDAF65I8tiT4SIo+idddk3WSLiKab64hcLUwHemcgyuFzHUpqQp4g4Pp5lspSO0AhbhD1FIRlm6e5LhdznDkQZOd2kZ86R4tTr4MRMZiei9M5XCDXXOZZkQn2vJn7cJJwzcfISq7oW2oP5JytUzzkMfCDJjp/PUTnlkH+1tiJWLESQmx3/W1Nx6rNfvxvtneL2B8+uy4sLIYQQYnOJVjwOvVAh3GhdCPi2gRMxaUZN3MiliIgBmEbrAlmb0EiYFIZtGpngU4uPjrxzw9suNifd4fpn8dkaVswivT/K6KcyTP1NsW2e6JBNcmcYv6EpHqmjpL5ZiFUZuvXYbrbLNn3729/mU5/6FK7roq8SbD5+/Dgf/ehH+epXv8oTTzxxk1sohBBCCCGE6CQ+FsIwDRrzLn6j+4uV7x4eZTBfI+K2kilsXzPy+6eonGqifUgfjDL4wRTK1eRfrVGbdmnMukT6bDK/OEg+HkNhUAmHuH1uARvwDYPv7duBZ5royKW21CKtntcNtfWznHrqVe6dn8XSmlI4wksDw/jWmm5xCiEuE3J9DpwqMjp/aVTFs3+xjLMkPa7fSHai1QP5KzsHKMYjjC+V6SvXGSjX4dEk9RmXwht1DBPspEU4Z2HFWss4Sx5u6dL7Y8VNYsMhlKNozkWwEh49H1yk8m6SwjO99B5e3hb9EoirGy5VsSImSy9VWX5p/UZI3a6x5fW0HfaPxKjFeiofb1I+3qT4ToP4SIjeBxPs+Ds9AGilaS54FN9p4Ndbo4EndoRZerGKV756YrJfbz2X3BUm/1r9pmyHEN36H/bcBcDQTzR55q/uZOqrBRpza0sK/5V3O+fexs3VkyLerQ11XEfEXL1dFb9zIcfu2OrFtyFj9WuIvBfv+BrLzuodTyXszgkik43cqs83VedRCcMdeu1vdFFF1vBXj1WYXZxI3J84verzZS+66vMAje+PArA0qxh+ymPwfxhk/j4LrNY26A9PdVyHEJvd7qki9Uich/acwggY8Ouh+MmO69gbm1/1+f/l7fd3XIdlrV5stZwPPsZN5jz21soc/naR1z+SxotefdQyw+x87FisrX4srTQ6H/NT2dWvLSOh1X9XemKdr03PLa9+vB5IVzquo9OxtOF2jhuHrNWP+Qd7V/9sANS81Uc+Pa76r/qcNsHWmqF0edV1hDv8lgNYZofPYGn13+JCh+cBQuHV2+GWV36+qjoK1PAaIdxqDBeoRSzO78qRqzfJJ2IYl/Wr1iTMt/ft6dgO662Vv8WKEslFRfWNHMo0qe7p/DnvFC/LJDpff8wVU6s+v1BOdlyH63Y4N+kmrtdpHm/10RAbTusz/MBreTQw3Ren4az8/kSt1d/7Tudpxg4TjoeJj0Vw8nJtdz2qZxzOnFsmdVuU3D1xJj6XozbpsPxKjfq0e83rlVhgsO2wTzYi/remO7ehiMsrPzyA75vc+cjqF0FCCCGE2HqSRZ9IQ+GGDN56OEU9dfVThU4BByG6Nff9MlbMIDEeYfwzWZpLHmbYJDpgYyfMFb319z6QYPqbRWrnr/2CSgghNkq5XOYLX/gCjuNgGAbGKlFPx3H4whe+wMmTJ0kmOwcuhRBCCCGEEOvv/JfvuPj/cMNnYL7J0EyddPlSXOyNQxli/6i9x9nj//t9bdP2/erLhDMWZsSgZySMnTA5/l/sJtb06Sk3GVxuJfDMD8R55R9NEG94hHxF2FWE5ivszLd36nViJI2b1YAPAXkoOiABwfACrkWCcli67L7fCAoTBixrdNExdriwcrk9tQXGmwU08G6yn6l4FpyL+ZQrXzIg10KF2m+46oCQp+4iyas1Yxf7JOiu9XoPhRBQdGwEvW7QW73cnqTT1eYHbULQ+u3u2tEtI2jfBbW3i9cIfJ9jAcloQd8bJ2Ca3/6i2gp4jXR7LDMca58WlNDoeSsTlRKxZvs8qr1twz9z9NJ64ybx0RCGbWCYMPCBVgJV+UQDZ9mnet6RwtSbYPmlGtGBEA/5M3hVRSi98r2NDYdYfL5CY7Z1UG37Hfkl2PfLL2PYsPuLvRcnz/5FFoDIaJ347hq140nqbyfoubOwYvFukthrXrhtmuu3J8tF7fYDvxcwX1DyomO2v8a1juKkYgE/LAGTzGbAD8Tq+XmXdHlM19H275CVav+e+4Urtj+oE4mgw+gV88WbrdfzavLdFWsjMWpxo7gFn2LBp3yySXTARvsQzlok90QY/ODK5O3y8cZVi1NjoyGGPpIGoHJaeiwWm9fcD8qM/rTF8McyFN6okdgRobHgUjrSwMnL77PYHGpDJnMPWgy+6BMuaubvt3By3Z4IC7E5mWGDvkcSVN+J0fOhhcDC1K3g+M4M9YjFHacKHHiuwluPpze6SeIm0oaBobZu5dPYuSo7T1WpJWzeujNNHQg7HvefnMfUkE+24s/JhsdC5rIFTZN8Yv2GOj6XzrCzVODxydM8NzROY93WfAtRCtvTeLZBY5Ui+Wte/YBCa01kQDobXQ9aQelog9I7DZK7I/TcG2fsU1kacy7Lr9aonpFraNGyUfG/NX3Tf/pXnua7f/Y4rz+1H9+zuOcD7TfbhRBCCLF1LQ6H2PNW6/+rFaYKsd6m/7bE2M9kiA6GiA6E0FqjXU1z0aN63qFyokG4N8Tg4ylGPpbhzP+xjFfpIqMxQM/9caL9NhitCzavpmjMuFTPNVHtuV1CbD2aa07o2tS2wTZ96UtfYnFx8eIF/3u9UmWzWQAKhQLAxecXFxf50pe+xD/+x//4prdVCCGEEEKIW1l0yCacsxk9XyPsKLJ5h1whuKOsQ0eKND+VYfnlGvWplfNEHI++YgNDw+7pEsn/S3tv6Q8cW0QBxWSY46NpbE9hK80nnj/fVVtvmyoy1ZugHl29p/atxlSKeyuTpP0mDdPmxew4ji3xSiGuxdBHUsRHWwVxym/FIiqnm8x+d/XRGcT6Uq5m8qsFcvfECWcs/IYiOnDp2O0UfbxqcMzb9hTxpocRuhBT8jWGZVB4q86uf1TFsDXl19I0p2IXXqvzyFBiazvVk2Hf7BJ9DyUpHVnHGxvbNba8nrb4/pEYtbjRVFNf7GS4Pu1SPNogfSBKclcE7WuSuyIM/2SG2jmH2e+X0Bf6MYgO2Ix/pjWSVmPBJf96HbcoBX5i89I+TH+zyNins/Q9lKS55JHaHSF3Z5zKqSbLL9doLkmH72LjVXZYuCmDwec9Jr7jUR4zWcpYcowVW1Lvg3Eyh1rXvT0fXiB1+9aOa0wOJxlbqJEtO5iOQoW3aKWtWDNlQsi9trzHmy3S8BierWJoSFQ9epYdog2FNiBTdHnfj5dYTlbIVZoX+wHL1B00MJ9ev0LUIMdzfWhgd6nAnuIybyOdKq2ZaTI5FmN8ss4jzyzx7PuvPuLvNQmDcjTxse11/2rDaaicbFI52SQ+Hqbn3hgjH8vgFH3y75bh5bWta6vHum6ILb5PNir+t6a7uP/+gTuxQyV2/d0e3np2L0/9h2EWn2sfhj31VN+aGlF2OvfS+Z7BeKnreSdi+a7nXfZXH9L+SrPhxa7nbajuD6hxc20V633hzkPYv0etoVfmZbf7/VEN6EF1NVGr+5HODiRnu553LLzceabL+EFdaF/Fm2q063mXG93vu2ZAD7KrCZndn4zenZ3set6ktbb+Qo4Vuj/5aLjdH2Zm6b73n7t6prueF8Bdw/udDXU/dPyZWm/nmS6zlu9L1WvvvfxqEnb3Nx3PlNfW5rVIhG5cVddAqPtgwulm95/RtRwL4tbatu+Nyt1dz1v11/LZWNtxd196obsZT1vc/kwY37fpvX2Zv7/36KqzR43uj+eLXqrzTJdZy3Hp+fzOruetut1/r9YqqHf6q5lvdr8/ninvW1M7HNX9cXcw3v33KraG32+A8hrOB8fihQv/q6Leuz9jgmlCGEgCg5iAz/kTFkM/UIz+l71Mf2LlttpFRc9rGgzwI1BPmORvs1orumDwRYfsGbXi2sEAuD2GBpqR1gX3uV2rByvGP/dW19snhBDv+frXvw60Lvht2+bf/Jt/w6/92q+tuPD//d//fX7zN38T32/dEPzbv/1bSfwRQgghhBDiJsreFaP/0SRaawbfXT12MjsQpZQOMT6zzOhPZ/DrmtK7DRqzLve9u0B/vt7VwGxOyAQN+6aC74F5psH5gSQnh9O4tkms6RFreuQqDrGmh2tvryKkpNfg3vIkFpqFUII3MkMr4jtCiO713B8nPhqmerbJ9De6v88ubhAF+Vcu5VeEcxba17illfeArajB0FKNXLlBT6lJuuZiAN7P51h4psr5vyrQc1+c9P4I+R/EMGM+2jfo/fg8VsKjd7hwc7dL3HymyfKrNfoeSND/WJKFJ7vPGxG3NolRi5tOXxjZ5Wjr/n8obbLzF3pJ7o6QPB2hfLyVg+E3L9291R5UTkiPwmLzU03N+b/Kk9wdoXKyidaQ3hcldzjOxOdz1CYdnLyH8kB7GuVp/KrCqYQIJ9eWfyHE9Wj2mJz7yRCpM4qeIz47fi5HY9alPutSn2k9tNRSi03MjBiopiZ7Z5z6tMPcD8vs/r9u7cLU98z1RMmVHe77VolK1uLo+xISB70FeCGTiONj1xRefPO+3xOTFQ6cKnJ59YlvwEJ/hLfuTJMqexx6q0RPpYlnGry4u59SLMxQocZcNk4zfOM7mzyTyrKzVGCoVmHo+xUMWvdbpoajTI/Eqcelw8tO5gejjE/WiTZuTMF07bxDck8EO2le82A04upq5x1q5x2iQzbp26Kkb4uurThVbEsbFf9b+xHXg5nvlBj/mRy5exKBxalCCCGE2GQawLQNE95Vf/2NH8XwfYPe+xcZeLT7ThiEWE9mh7PT5qBJfVgTm9FYFYWfNEEp+p7XJM5eumlpACl8+t/2Ke40WbjDJjGnyJxROAk4/YlLnaOYNUVyXhE+ZZJddth7ssrYZJ1XD+eoJyRAIbYgbbQe28022KY333wTaPU69Vu/9Vv883/+z1c8n81m+Rf/4l/g+z7/3X/3361YRgghhBBCCHHjpW+L0v9oq8OqymmHxJ4I5iq942aLDm8dyhB95hwTn8lhxw167o23nsx33wli1FVE3Uudl54bSDKXi7GUjqCsVnKKvqwd1ViIaizEYibe/cZtEWP1PHsbrdjku/F+ZiJZuqrwFUJgO4qhqQa1CzHNcI9F7/2tTnVllNTNyXc02UNRwj02VtjADJuYEYNQyoLji1QjNvl0hDNDKWpRm/uenWH4iTRO3uPcl/NoHx7+iqbyRormVAzD0kQGHYytH0YTXci/XCO9L0LmYBTVUCy9sA65O9s1tryetvj+kRi12Gh+o1Wg15hzaS56GHarGDWUunTSHxuWUXXE1qE9KB+7VExderdB6ViD1N4IqX1RYiNhDNvAtMGwDayIyYv/25307c8z8cg0sawUYoubxDQo77Yo7zBJ/eNl4mNh0gdi9BxO4NUU80+WqZ5Z28A6QtwM6QNRBh9PUTreABPqcx5+fYsPZ3aZ02Np7B6XgbMO6WWfibcbnLtz+8V8xSXxkke86lNJWtdcmGqWIXEcDB8W9ipU5LJz6bxH/ymXUEOjTRjxHZRhoEyDQibE1FCsrQA6U2yy70yJWMO/WNxZj1oMLjbwLIOjh9L4lkE5FcK7bITfcibMc+/ro55fOULquYHuB6q6Xp5t8+ToTvbnF0lYTTJll7Cr2HWuxs5zNYrpEK/ck0PZrXabniJTdAk7ip58k2TZoxG1OLY/RTN2a+aJHjhaQgNv3pW5IevPv14ntTdK5vbo+sSuRKDGrEdjtoLHGjvBkVhgsC2+TzYq/ndNR9HLq9aHP57GK/loDdrXaAXWKWjsvu62CSGEEGI9nLAxno5ieAba0OiP1WDksh5oFPCtGPhghn0pTBWbmllThIoag1aAJXZW0f+iwvTATcLcYyZe2gRPETlj0veWR/a0Inu6FURXJky9b+XowypuUtppMpXJgFLsO1ZhbLLOw88ucXZHnFP71jbyrxBCXM3y8vLF/3/iE5+46nw/9VM/dfHC//JlhBBCCCGEEDeWGb10szGSs1YUppaONSi8Uae56DHx+RyRXptoU/Ghb8xgfSaHV1PY69DL+bGRDMfHspcmvBfG8wJuhF5ZOasC5rmOXC0joBNr0w14jaDOrru8bxsqXZhRKe4uT9Pj1fEMk5ezY9TsSNdtheD2+225NQABAABJREFUWs32huiAe/Mq3D5NBwxIq1erVl6NEbDcddzcVtHuehg3A7bf7CY3IeijFPDx1vaNTwbUVsBrBLwPhtP5+2cEfUdqXd4uD9rUgNUZEb9tmh1uH4LGttvfQ9dt/9DFoyuTg98/cqptnpjVelMb30jjn2t9bxYPx+l7sFWYOvW1AsrdPombW0nkR0Nt087mc6TyLhMna/Qstt67hZ4Irm3i2QaebVJJ2FT6LJrRlZ+JZ35mmP6FBgffLrH3H/YD8O6sSW5eYQEv2aOoRYNkqL3IYamRWPG3r9q/Mw2v/fuwXGpPiu1JtyeSLc63Jx4a9S5H9g46HAYd5q6YZgT9JnX5XQ06tuhQwMIB3+mg31uj0b6tfr19fxr+ymUDfx4CGhz0+3PsPzzICaV4/OgkucMJ1GO9vDY8iGNfel1Vb8A//0r7i4hblsSoxUbTGhqzLrHREDt+rgetNNWzDksvVsm/USN3V5yll6ob3Uwhro+G8vHmxZGBL2dFDT7yhzWmXxnk1T8+xMT7phg9PCedi4ibxzJWjmidteh7KMHIxzI0lzzKJxqUTzTxyjKymdgcGgut6+b0vijFo3UKr2+/wqblsQjLYxHu/1qBzKIMY7zdabMVpsj3hllr8D40D7lnwapeCnXcdaLKiUdieBGYeLVJvLDy+J2mFdcwgNG5OgePl1jsiXByZ5J61Gb3mRI7plrn357VWmvE8UlXXHzT4Ll7+nFzm/tExbFt3uofwtxTaU1QilTZY9/JCrmCw/ufXeSZh/vwQiaPPLtI1GntI00rRJ+qePQvNqnFLfLjNvO7wqjwrdFjZs9ik3jNZ6k3zOJAtPMC16C54KG1Jtxzaxb/3nRyG0CwcfG/ay5Onf5mkYEPJElMhDGuvDp+FhZyGj933e0TQgghxDVKn/YYeN3DdGNoQ6MmXIxJG+ObcfSDTTjgwrSF8WQUmgb0KHZ87OxGN1uIVfU/rwldiDOOfFth+K2gzeJhk8r+y4ICtklpl01pl01s3idzxseLGSzvs1DRVYIHpsnxA2mmR2Pc+0qenWdrDMw1eO1wjkZcLpCFENcnHA7jOK2k0kKhcNX5Ln8uFJIewoUQQgghhLhZCq/XKR1toJVGexDOtQpN3LKPviwvaPIrBVL7I4SzNl5N0Zx30cDYT2evum7la8wLyR3NZY/mokd6f/vN/v3TRdI1h5f3D6znpm1qUc/h/tIkYe2Tt6O8mhlt671dCNGFy2rj3itMrZxuYkVNwjkLp+BLcsoGiU5pBp5sJb6leovkllrJtbOjEeZHo8zGEm3LhAKKmpVlMDcUoxG1uO+lPAB9ryqUBbVBo+uOAcT2oUyTH942xiOnZuitNPjI8bOUImHqIZtaOETddTm/0Y0Um4rEqMVG065m6mtFrKhBKGsT6bXI3Rtn/GdzaKVxKz6F1+sb3Uwhbhi/oRk9PM/QnYucfWaEM0+OU12Ise+Js5hBHfMIcYO5BZ+Zb5VITIRJ7YvQczhB30NJ6rMu5RNNKicb22qUSrH1OEs+80+WGXgsxfyPKhvdnBumZ6qJoaGS7bKTJ7Fl1eMmGkgXXGprKOMJT0PvD1v/b4xC+Y5WJ4Q9P4B9z7TOnzVQ6bM4czh6cVTWhUKytZBS7DhfY2K6Sv9Sk4GlS51oNMImz9/TTyN6WXuUuhijD7HFiqZNk3ImzCuHe9hxtsLekxUefXaBF+/rJeQqPNPgnQNpipkQjbhNouxy27slMiWXxLs+o+82cWIGyyMh5vZE8FbLNd2i4g2HkXNV9pyooA04cmgdR01VwGW7zLjwsdKenE+IW4Pv+3zpS1/iT/7kT3j77bepVCoMDg5y77338iu/8it8+tOfvuFt2Kj43zVn2FfPOJw+swwmmDZgm/Q9ECdzMIY2NX77/RMhhBBC3AhKYToXeve/cEEYLiqGXvLQJqg7mnCfAzboWRPjG3HM56Po5yMYXBhN9b4m3OMSTTirv5YQG6w6bhBZ0mgL/Ag4OYPF+w0IXT0IUB+wqA+sLXhXTYX+/+z9d5Ak2X3geX5dhoeOjIzUqrRoVV3daC2AbmjRIAYAh6AAAXJBEMebW96ajdkcZ7ggZ2g2a3YczB5uwLsZ8pYczlJBkk0ShG6ArXVXd1eX1ql16AiX7/6IqsrKCq/MyKqszMqs9zFr6ywPD4/nHh4unr/f78ezj+TYfaRE71idB56f5eT2OOe2Jq51FSTp+hNszoGGm2Cdurq6KJcbD0z+6I/+iPe85z2h8/2X//JfFr1HkiRJkiRJkqS1EzgLNx/OfEi1tPPzFA7Wm6af/stZot0G0V6D9N7ootdKR+sUj9TJPZAg2mMQyeoEnkDVmyOJtGAT3AC1qMsusrc8iQKcimY5k2hf7yZJ0oYVeW8R+2dJ/BMLge+JrRESWxeqEI/8fZ7aWCvlc6XVdGl1zNR8Y/vPtxscvz3ZmLjCGJxCxuSnj3di1X26uwsIQ0al3swCXeW5XX2kK3XuPDtD0nZI2Q4K4DgOT69kYZu1b3k1bfDtI/uopRuFXxf4Ey71CZfScZvM7VEUTaFwqCYrvks3Bc0I2PbuEZJdVY79cAtO2WTvEyfRw6q2S9IaqJxzqJxzUPQS8S0RktsjdDwQp+PBOLWx84Gqp+xF/WaStFbEJj40Do6V6DlVpW3cJVDh7O3R5d8k3fDMCRg6UyZebiSK80wV11BwTZXUvIsC+NrK+nLiJxv/n/w4BJcMXzz8eIzeww6eqTC508SNX2EMpapydijB2aEEsYpH/3gFzRcU4yYjvSHjITdJ8sizQwkCBXadKPPgSzMAFFI6kz0Lv7VK0uD1d7VDEDBYKtF12iEx79Nz0qH7pIMbUch365TadTxToZi4PhVGVypXqDIwU2Y2ZXGuPXHl7ywIGJwtMzBXIuZ4GH5wMb+dAI7sTeKtUqVY7ZRK5BkDERPY73EIOiB3XxxFUSidspdfgLT2ZF9guKvcJvPz83zkIx/hxRdfRFEUdu3axZYtWxgbG+PJJ59E1/U1CU5dr/6/ay//FED69hjZO6OohooIBNMfB8xrXrIkSZIkScsJAnY86aB5jWuhWrtCtUslc7LRK3P6gyZbe0sL83cHiM+VEcd0GNYRmQBud+DGuF+SpGWVd6iUd6xR54eqcvSWNGN9Ue58I8/2kxUmeiwcS1ZQlSTp6tx7772cPNnoMf7Od77DY489xhe+8AW2b98OwMmTJ/njP/5jnn32WQAUReG+++5bt/ZKkiRJkiRJktQ6Laqw9ZebAyv9ekD5tI0969H1eBIzs9CvUDpe5/RH+3E1FVdv/FeJGAj1JggyCgJun5mip1ImQOGNZC8FM7berZKkDU3RwHpvCW9XnfI3krh5n+kXygz9fPbiPNFeQwanroPU4UbV1Nn7FA5lsqBc+3FeqAq1mC4DU6WLCnGLp3cMNv4RBEQ9D61cXd9GSYvcCJUTZB+1dCMKHMHca60drx5/u7LsPE/dLitqSDe2P9s9tOjf0Z4iPR9K8bN/fxsjT+YRHtz22tJjIg7eHbTwSUsv4/43l//d2cHS1XM0Zel29EXml/2MnLF0JcT6Mm1ohSuWT2Y+rS19n1Tzl29H2Y0s+fo7hZ5ll3G81Lnk64PxuWWXsadjYsnXSweWGyRW5bboMby6xsyJNqaPZIkNJOl+PE52W4HuO6bp3jK75G3N/3fnjmXbKUmt8p3GscZIa7iFxpjIQCx9jJv2UssuN6Iu/bvf2TW97DLOzrct+bpmLB1Zu/dMAVWAb8DkexU6M83XOv3J/LLtGClllnzdri9/DItYS28PVbn26CVlmWWMzy//vYlgmX6QFtrZ3r70OTDvLB8kfHSsOYgnUve4560Z4nWfHLWLsU1hLc7OuWS+5eJrCq6hYEc06pZKNaZTTuiUUjpxy8UoQWwiwBppFPOoRg24ZLfq6Cnjnj+9dNIc/GeoIefqLJQHFEBhqmgtWxm1M7X0ubq7Z2zJ12H5c+SR0e5ll+Ev89WmY+HBj/k9Bm/3JNl6sErMcDHeXeL+eCl03jenepnubHz/yRmHvtN1UnMenWddOs+6CCDaDUe2pQn08OPQQMfy1z8j04uPHboTkCnZuLqKbWpUhU5wWbCpVffoma8QcQO65yrEHB8F6M1X2TFe4Om9PXi6jul4tJfr1C2VrnydwekShi8IAEdXmU+YFOIRat2CclKnntDRCT9W1d49ueR6XJpvL/dQnMxtje9ZKStEv2shhIDbwKv4VE7JwknS5hYEAR//+Md58cUX+eQnP8lXv/pV+vv7L74+MjLCqVOn1qQt69X/d00j6802lf5PtKFFVHw7YPa1CnOvV0l+NnfNDZMkSZIkaXk9L3toHhT7VMySIDoriM36CKCwTcNLhNwAqcAer/GfJElLCwK2nqqgBgIF2HK6wrG96fVulSQtbbNmtNoE6/SLv/iL/PVf/zUAQgiefvppnn66uXaBEAsr+5nPfGbN2idJkiRJkiRJ0jVQFQrHalg5A6/sUz7rYCQ1snfGLlZRLZ+2mX21ipXTUU2F6efKjH4uJCv5Jqd7Hg+MjxDzPMqqyavpfgJ1+YGikiS1xjsUxUhoaKZC30czi15zS5u43MgNRtEheSQgcVxglMFuh8oWBQoymFRaA6pKzTQJoq0Erlxis/Ytr6YNXjlB9lFLkiTdeGrjLiNP5un/RIbOR5NMPhUeLLEUPaGiqCAC8CqBPJ9Lq0K3fLpvm6H7thmcis7MsSwTB3O8851dnMrU6L9jkp7bpjGjcvyZdH3VRl28is+WX8ziOwGBLci/aJC+N4+ywYs7KgLqHTD1Ptk3uhncf2CaiBMw1hFleChKKaGDqqJ6AaYTELF9EiWPiBsQq3pEbZ+IHWA6gmitERyshASYCiAwYfJBuZ9crVpa59BDKW7Ljbf8nlLO5EiuUa0vVvBIFjwGjtUYnKgyMFGlGNd57db2ay500jNZ4faj+aYgZgF4msJYNk7M9sgV64sqno5nYrw9mGXneIGt0yXe/9YItqFhuf6iZXmqwrGeFMf70ouqqyazyyf+aUWkU6f/iTSqoeIUfYa/NQe6SvbOKJGsjlsOmHpm5de30hqRfYHhrmKbXAj2fOyxx/jmN7+JelmAeX9//6Jg1etpvfr/rvpoqKdUBj6dRVFg5uUK86/LjIuSJEmStJb0UkByOMBOKIw/eL5kuRcQnxJUupVFNxKSJF0dNYDcbCNr00RXhFPbk+vcIkmSNrKPfexjPPDAA7zwwgsoirLoBv9Syvk0sw888ABPPPHEWjZRkiRJkiRJkqQWKDrEB028aoAz57P91xeStgYKRLI68cEI80kDSi5zaZPXbmvH/OBlg/X+FzDs5mzRYZUnPKd54IkQi2cUfljAU3MfodBC7kXCMs6HJLIWYXFtLY6JicyotDkVbq+MoyIYNVMcTS3OMB+0+OQytDhL2OqHrGpY8vzQIipht2wi5EPUq31y3+L7Qj5TGC2+1w5pb9g6NM0TMi10w4XN1+K0Fhnp5gFZmt68A9iTLVTeDf1OQ6ZdQ3tFpXkndsOmhXyGlmyuUFGpLq4q8Mzo9qZ5dG3x9uhK1NlCDdVUUc3F8waf7ObY9o6L/971hVebGyJdlY7nMwv/8CD59zrqGwH1bVC5W+D0gqUFeH7zcTlsnw47F7gh54IjZ5urLyUzzWM3Lv9c226xAlXIMWNyItM8Xz3kfBMLGaQecr5RKiEH4ZBJgbl4OylOyEYKO+yFHDNFqxVfws6PIdNCz61uyHO6y2YTLZ5DRKR5H1HDtu9llGp41RBpbd1IlRNkH7UkSdKNyZnzmX62TPfjKcqnbViiglkwq5F9l0Ukq2OkNYy0hqovXJ94FZ/ScZvi8TrOrExOI60OM+7Ru3+KnjunKI0lmHq7nRPPDXLyuUE6d8/Sv2+CdE95yWqqknS1Akdw9hvzxAdNtKiKnlQxXk8jHJW2R5evJnwj81UFvSqjgjaDSN0j4gRMtVu8vTeLpi+cgwNdpa6r1GM6hbaFvj71sj4B1QtIljwSJZdY1SeetnHjUOtSCGJyLPB6qqZ1qmmdyUEL6wxsHS6RKbm855VJXrizg1LSXHYZAHgBmRGf7LlZrLqPa6jk5m0CFY5tSaP5AYYn0G2B4Qa0l+sMTZcbxYpiBkf726hGNKoRHYJG59nhgXbm4xZ7xuYwvYC5eISR9jiRwKcQizCTWb4S8NVQLej7SIZIhw4C5t+qMvP8+YBXJ1j4W5JuEl/96lcB+IM/+IOmwNS1tl79f1cdnBofNFE1Ba/qy8BUSZIkSVoHfc83BqqMPXjJAAJdpdK7Tg2SpE1o66nGTfLxnQmGh+Lr3BpJatFmzWi1SdbpG9/4Bo8//jjHjx+/eIN/OSEEO3fu5Otf//oat06SJEmSJEmSpFb0fTRDtKfRJ+eWFw8YHe6JM9YV44E3pkmXGv132YKDZfsECVACQddonXTeZaLPYip+bVm1N5Lt1WkG7DwCOBjvZsaUScAk6XqYHIrgxFQSsx5WNSA73jgWlSM6R/sycGEgghw1fH34kPixhlqD+Q8JvNzyb5GkG8Zm7VteTRu8cgLIPmrpxhXJNQLtyievHFgfOAr1szG0pEukOySbjiRtYKVjNvEhm+7HU4hiHiW1kJxCeCAmDfy3LYJhk8xtAfVpj9q4S/FIHafgI1yBYijEB02Suy3a7oxhz3mUjtcpHbfxyleuqC4EiLpKUFERdRW9ywVN4Nc01Jgvbx2kixQFUn1lOgfm2fWeM4wd7GT0rS4mDnWQ6KjQe+sU6d4yinaFBGeSdJUCW1A6vnCNsOU36xReaCN1bx7NuvLx7UZXjuuNPmQvAF0GH25kHXONqpZjXS0k0LuCQFcptJkU2hqBjlvaN3bw9WY1lYsylYuSna9zz9uz3H9gmufu6qQab04EpzoB6WGf1JiPlQ/QnEZeNYGLoPF3oMAbt2SZzS4EkXr1hedGyYqNrypUo5dnIVz4cyIbZyJ72dhWfXU7ePS4ipFW0ZMa0W6D1G4LFKhNuEz+tIRX3LjH4pua7AsMt8Jtcvz4cY4cOUI2m+XBBx/kySef5Jvf/Cbj4+N0dHTwvve9j89+9rNEIpHlF7ZK1qP/76qfeBcO1ul4KIEe0+h+f5KJH8lyy5IkSZK0VtoPukSKgnKvipOWHROSdF0EAYPnGklYRvuuTwYpSZLWju/7/Omf/il/8Rd/wTvvvEO5XKarq4v9+/fza7/2a/zcz/3cmrSjr6+PF198kf/1f/1f+e///b9TrS5O9hSNRvn1X/91/sN/+A+0tbWtSZskSZIkSZIkSVqaHldJ7bXI3B6lctYm2mPgFn3csk+sd/GAgMGxCkNjFQQLNUsDBR54fYoj+1L0DNdpn2kMou4es5lpq5Eqe5huQCWq8cK7OhD6Jhv1GQQ8MDJK2naoKzqvpQZw1JsnKFeS1pyikO8yyHcZIAR7ni+TmvNJ2B57R+bpzteomhrvDGZJ7oxgz3o4c3LU8GoxT6roUyqlD3l4Ofn8RpKkG6tyAsg+aunGopoKufviJLZH0KzG76N2u8vc61Wq5y4LPlVg5p86sUejoAo6PjFOUDaIbqughFTclqSNaPKnRYY+k8V7K4rxcAUhwH8xhn/YAl9ByXjoj5U4/pn6FQdMV885TD9fJtZvktoZIXtXnNx9CWpjDsXjNqXjdcT5PFuBrVA/kKB+MI5wLjlH6eeDCzwVo9Mm+/gMZrt7fVde2nDMmMeWe8cYumeM2TMZRg50cfzpIUSgsv3XBbVJl9kXK9SnrlwJWJKuVqTLBqHgF3U0a+MmrBjtiZIpuSROQ3nnerdGuham2zh31k15YXqzmGuzeO22LHcfnOPh16cY7YxRTBjkph0S0z5WQaC6F4JRwY9AuUul2KtxKJoj0FUIAlimn6AUX7tgtivZ+tksenzxvu3VAiZ+VKA2Js/zkvTaa68BsGfPHj772c/yl3/5l4te//rXv85XvvIVvv/97zM0NLQmbVqP/r9revJbOFQnc2uU5HaLiadKcOGZlXN+yevfpypJkiRJG0Md9FMqQQKCwfOdvA5oZ1W0aRWhAYYAHYZO2ESKAs+CsQfkIC5JWg2qE9A2a1NIGwS6SqLgsP+NPArg6kqjM0CSpA1rfn6ej3zkI7z44osoisKuXbvYsmULY2NjPPnkk+i6vmbBqQBtbW187Wtf4z//5//MK6+8wtjYGAC9vb3cc889mKa5zBIkSZIkSZIkSVpLuQfiJHdYAFgdjezXelzFSDUPNFGAmYxJNu+gAGd74gyNV1AF3PZGsXnZ8wuDpyLO5swsHfM8UnZjPXXhs7syxTkrTcGIL/NOSZKumaJw5KEkqiswD2vccbZRcUH3BfecmIb3pvAqPqf/T1mJYbVYbzb6kv12mXJekqQbs3ICyD5q6caRvSdGcmeE/Ns1auMu0T6T5M4IfR9Jc+7b89jTCwOdBz6RwR41SN6Vp/R6htnvdRLUdBJ3RGh7RF7LSJuD8KByxsHIRfCSPmJaJzhtot1VQ93ioGTPVzFd7lIzaASpVs85KEaZxBaT5E6LzkcStO2L4uR9vPkC9bfj2IdiWHdU0Lsd1JiPcFTc0QhqzMeKOxRfSzP5jV7S9+ZJ7i+gyKET0mUUBXJb8+S25gk8hdJMjO9+aSupPRb9n8gwf6DK/IEagSPvkaTVU3wjjRr1Mdo3bmAqwGh3lFuOFUkcEzI4dYMzvAvBqfJEeTOZyUZ5/ZYsdxydZ2CyCpON6QLwLKjkVAr9OsV+dVEQajB9/u8bIIHVslQuJhKaeamMU/Bx5jzc/OZ8niVJlyoWFz/XjUQioX144+PjALzyyis8//zzfOELX+B3f/d36e7u5tlnn+WLX/wiR44c4VOf+hQvv/zymiWvW+v+v2uKaJl+pgwKZG6JsvWXsvg1gZ5SUb8BCHAKPm7ex571sOe8Kx6I5r97fa6oThVyLc9raCvLBttuVVqe9670cMvz7oudW1E7kmqt5Xnfrg+0PK+utn7C6E/OtzwvwFvl/pbnPV1t/TtcqYRWb3neiNp6VofsCvaNeTvW8rwAptr6fjphp1qeV1OSK2pHzGg9E9pK8rt3xlqvwHy02LmCJUPVNVqetyfePEDoSrxgZVlutiRa7xAvuFbL856Z62l53oRptzwvQDZSXX6mC/Oarc/rBSs7sY55mZbnnXFaH9Q0Ump9ub5YWcUCo8VjqeoE3PpPVZTzfXBCafynBFf6DQXQ62E8XmFvC7vJgNX6fjfltn7sqAet/66OFrtanhegPdL6sbQ32vpvVo2t7IboVLn189BKzp2PZ4+0PO+PZ/e2PC9A3W/9e+mIlFuedyXHJFjZOavitf7AfUdyuuV5D9/d2vk792CczO1RFMVBCAEBjSQrAmZeqTD/Ro2Br021/LnX6sRf7G953h2/8sZ1bIm0YV04kWw2V7lOQRDw8Y9/nBdffJFPfvKTfPWrX6W/f+GeZGRkhFOnTq1WK1fENE0eeuihdflsSZIkSZIkSZKWploKWkTFLfjMvFQhucMi8AVnvz5P2/4oufsSFA7XSO+N4qsw02ZRjul0T9fI5RcGRQ2NN/q5BIv7+gIFZroiTGYsynGDSkwn0BpzbLY7uqpp8uxgPzsmCrS7Vdq9CrlyBR+Foh5hzEozaSY2xkAMSdqgAkNhuCNJ71yFXMnG9Bf6s/W4xs4vdTDzcoX511t/ziMtpk0pGOcU1JqCMxiARqOvWZI2ks3at7yaVrh9bsTKCZeSfdTSeot2GZRPOcy+0rgGqY64BHZA7v4Eg59qY+Tv82Ruj4IAs70xzLF0IA1AUNPRMy7OlAymljaXudertH1Qw38tBvEA/d1ltF1XH3wlXEHpuE3puE2kXafnQykSWyKUvptFjQYgFKy9VbS2hfEV5mBjbFlMdYhtr1B4uY3CSxlqp2O0f3AKPbmysbbSzUPVBenuCoV36hQO1cneFaNtf4z0LVEKh+tURxzqk+7F6r2SdDWy98Son4mS++jUxq+erqrUu8CaBGssoN4r+0c3KuN85VRHBqfedKZzUX6Si2LVPJIVl7aOCrWssnmedwTgVgKMhMr8mzXZ37nZyL7AcOe3ycDA4vi73/u93+P3f//3m2avVBrPgl3X5ZFHHuFP/uRPLr723ve+l+985zvs37+f1157je9+97s88cQT16/tIdaq/++ay61NP90IakjvttAs8KoB9UkXPa5hpDTMjEZi60LAwfE/npYHJUmSJEm6RGLaRxEwP6ThWwrxKR8lACehUOrRKHerKAFoLmiOYMvAFOrK4gQlSQph5nQ6HogT7TXwawH5t2pEcjpGRsOvBsy8VMGZlQ9VJGmj++M//mOeffZZHnvsMb75zW82ZZ7q7+9fFKwqSZIkSZIkSdLN68JgptigSe8HGwOeS5ZBst5I2KhqCif+692ogeDu09O03aIQCIEaQNdsna7ZhWVVUhqeAYl5H+2yJHQzu3TKHRpGXTAZjRJo5+9TLiSvCyskEfZsuJWCE8E1PFQOGTshQqYpLbSjEolwYEsj6aTpeWydy9NdrpDx6rSV6+xlkqphUDZMqrpBVTeYisVxdZ2w/KFK2MPykHYIrXmiF2+eFoQ8MQ3NWxryGZe/Vwl7Dhryvla2W6MhzTNq5eYvQrQ4GK/lz738fW7zNhd+yDS9+QPCvofQfTpk/3LzzYntQprSvLhW1zNsVzKav0TFC/tBtLa8VvnV5h3x8t7JfK315IRNPJVTHRlypcnQlwNHYKRU3KJ8mL+c039zx8W/eyeqJMoeie9XsCMq490mx7ak8EZVXLf5hxmNNgcWWCGJZWt2c6CNWw85WIX8DouTieVWIVzIb1WLhRwMvVZ+hKCE/fbLzeugOs1vDqIh7zUX75si0jxPJN68fXW9eZ+2682/Ja8Wsn3t5t++EnZubfV40MoxIuxcG3IMCkohxwNjcUMC+5qHBElXsNErJ0jSjUIENJIHX8KvLRy3+z+eWfSaYgRYW6r4ZQ1nPIqXN0jc3nphB0naCPxqgPmREkI0KlKuJnvW48xfzmGkNXb+P2KIuooxVIeQe6ALFA0yD8wT3Vpl9ocdTH2nh46fm8DIyOhCaRkC5l6rUjhcJ7s/Rmq3RXZ/jMAX1CddaqMu1TEXe9JFyNtQqUXxLSbtd8dJPzBHdMvmuAaYvV+h9x8EHU8LJt8b4HTIe4IbnVoP6B2vMNsWwbYa992xut/oGpD3dDetelSnHtWxcq0XT9sQVDCSKtVRV8aASTed4eFhUqmFol9hfX8AlrUQ1PHbv/3bTa/v27ePxx57jKeeeorvf//7ax6culZWpSd6+unyxSDVMNl7YrTfHac65siDkiRJkiRdJj7TGF4ys1fHS6hMEz645MIgFBmYKknXQIXU7ghtd8QwMo2BQfaMx9j3ivhVeaEqbQ6KuPqBpjeyq12nr371qwD8wR/8wZoO7Pkf/+N/rNqyfvVXf3XVliVJkiRJkiRJ0mKJbSZCQGJLhNTu5o63C4Gp0AhUDVSVQIWXdnajez47JwpsmyoynolSjJlEXJ/2Uh2r5hMritAYlNwxj9yxxiDO+d11xrpj12v1bkiOrnO0M8fRzhyaHzBQKNBXLBN3XeKue3GbiblppqMx3mzvXdf2StJmMp2K8f3bh8hW6hSiER59+hSRdh3hCzofTgAJzn59DmdeJu1bihII2vIOHbN1hkar+KrCbHuEt+7IIFSZaV7auDZr3/JqurB9NkLlBNlHLd3ozKyGkVSpTyw+8BSP2gRuAS2qIgKI9RnMvlIl90CcxJYIteMJFGvhWkWNyGe80ua02oGpl3ILPqmPzK3oPZFum85PjjP9ZDdTf9tN589NYmTd5d8o3fT8asD0c2WmnytjtmlE+wxifSaZO6K03xMncAW1CZfamEN11MWe9lpPOCXddJI7ItSnXfr3F5efeYMIYiqT7wvo/pGg6yeC0ScCgrgMcLxWiZJDNt9IYJVPmRTTzUnArooXMPBkwKDII4AX9ndQSpokKi62rJoqbUbnr0mFI0/Om5HsCwx3YZukUqlFwalX0tbWdvHvPXv2hM6zd+9ennrqKc6cObMaTbzoRur/W5M0ifk3q2TvimGkNFQLgk2WEECSJEm6iQXBogz6fYdtokWfUrvOzB4d9OVvOGPzAQLwEvLmVJKuJyOjMvjpLKquIISgctZh+pkyXkU+sJSkzer48eMcOXKEbDbLgw8+yJNPPsk3v/lNxsfH6ejo4H3vex+f/exnr5jV6lp8/vOfR1mlp8Zy4I8kSZIkSZIkrZ74FpP2e+IoGiiagpG8crnJs7kkZzqSBIpC1QqpsKZrzCYstk0V6cnX6CzUEIqCHlz5Sa5rKTgJBTuhUO7WGDOjq7JeG1Wgqpxta+Ps+Qe3ii2IeR4px2ZbYY6OWpW0XaMQubm3kyStJl9TmU41guKLR+p0PJRA0Rb6MBRDBlcupe9jaXY8PYEC+KpC1dJ46a52gqh8xiNJN5ONUDlB9lFLN6IzX78D3Q3Ye6xA91RjAOGh3xyi+r80hjB2pBvFMSoh780D2/UZkt+KIOoa5Q/ZRN7UmQziTL4WR80r2Hf5wOYJVpFuXgfvvv5jGF7cF544f7HmebRogb6PZRj50x76fm0cs/3KAaodemnZT7grMrzk69PB8gm9ht32JV/XWqioU1ym36HgL98vcazSveTrk/XkssvQ1aUTBZW85SsafG/u1iVf744vf5w8WFg6UdhD7SeWfP1fHp5Y9jP2GqPMT6WYPJdl4lyWqeEsnpvAMD06++fYunuczv554ska+hWq+/7brfcu+znS5hEfMon1mVTHHI5Xu5ac959ndi67PHWZaJx72s4uu4zJ8tK/a99fvq/g9FwWFJi8y2HfawWyP1Z55ZHsxde3Z2eXXUZn/MoFxgBMbfkkZL2JwpKve8HS63J4culjIIBjLx22oqjLR0ilk1UA9HrALS+X0d2Atx5K4VmN9okzOncfm8V0g0WJIwPAMVRcQ2O0J8q5/sQVP2OgY/6Kr2VOuigioNquEJ0VPHBgmmqHiuELKoMKW7oa35faQpT9yYmOJV/3l9nmAEOxpZNN3JkaWfL174tblv0MZZnfykD0ytvrAiO29D6YMOxllzFcyiz5+m3Z8WWXsTe+9DzT9SvvFxfsaZ9a8vVt8Zlll/G6PrDk66OF9LLLKBWWvjYR9Ss/+wKwDG/J1y/ywa8FxLeajcizFt8mSTeT3bt3X/z7Sn2EF6b7/uomBr2R+v/WJDg1cCB/sEbb7TG2/WqOE/+/GVlBVZIkSdrQ9HrAjpeqxPILN7GCRpIYASTnHHqOO1TbVCb2mlS6wk+5yTGX2HyAk5SDPSTpeuv/eAZVb/zWRv4uT31yY9wpW3WPPacLdMzXURC4usp4LsbxweUz8kjSze61114DGhmpPvvZz/KXf/mXi17/+te/zle+8hW+//3vMzQ0dF3aIMS1pRdbrc4DSZIkSZIkSZIaej+0/EP9C3KlGqc7U6GBqRdMpaP88209CEWhEtFJ1D3efXDs4uv5Tp3JLREqGY1IMqQvYkZe8y+iqlRNk6ppUjJNHh4bprNWkcGpknQ9CIGigQgETt6neKROddiRVVNDaFGFjoeTxPoNtIiKoyscuD1LPmVcLGmlydI+knRT2QiVEy6QfdQ3H6tLRwiwp9b/WaiR1kjtsTAzGlpMpf+FKSK2T6AqTOUinNySpBprffiiiEPlgw7xH5gkvt8Y2GmMLwy6Nk5rVHdGKB1ffnC7JElXx68JRv4+T/8TGWb/qZOufzkuKxhLV0VVob27SHt3kVvuPUPgK8xOpBvBqmfbefZ7+wAwTJfHPvE6Xf1zVwxSlW4O3e9LoRoK82/U6GD5QO2NppAzmWs3yM66qF5A0EJRlJuJ6gVsHy7Rna9hVX0uxPIrwN1PFZjvMlA9QWbGQwAjHTHGczEE0F606cjXsWyfRNVlz0mXgbEKuifQfIFjqhzfmmKy83wfdBAQnRHEZgN8A+y0iuIL2k77JEcDAg1GHzSIFAR9z7vEpwJ8HSbvXJOwHElaU2abihZVER4yMFWSrmD//v1YlkW9XufUqVPs2LGjaZ5Tp04B0NfXd13acCP0/63ZWXDmuQqRrE6szwTZbylJkiRtYGY14Janyqg+VFMq1YyGUEDzBLODBqVOg8yoQ+8xh9h8wPbn6/g65Pt1xveaBJaK6gQMvWSTmPERKoy9q5WMhJIkXTUVtKiKPesx+1plwwSmAjx0YBLDEziGiqNrRG2frWNltoyV8X45i6JC4AqcOZ/ahEv5rI1XkB3yNzVx/r/N5vw6FYuLM7lGIpErZpwaH29kvHvllVd4/vnn+cIXvsDv/u7v0t3dzbPPPssXv/hFjhw5wqc+9SlefvllVHX1O/ev5cb9WjsNJEmSJEmSJElaTIte+fp87vUqsy9XSOyIkLsvjpHUiNset5+b4cVdPVdeqKJQjpoA9M6W2X9qIZN9Katx5vYYTqxxrxF+5yJdScWMIICMU1vvpkjSptCdr7BnbI6XtneTrDvsGs+Tvj/B3OsVZl+pbs7+pFXSfm+cWJ/B/Js16hMuh76y52JQqiRtKpu1b3k1rXD7rGflhAtkH/XNI7krQqzfJLXLInAFJ/9sfYtHqJbCwCcyCMCecnHmPebusahZGjM5CzuydCWfK/G7BUFCoJYb+3b5CQcUsF7S0SdVut+bwp6dw5mTCTck6XoJbMHYDwps+7U25n7STvuHp+XlsXTNVE3Q0Zenoy/PbQ+cYnYkxdEDQ0yPZfjhN+5DVQNyPXm6B+foHpils2/5Sn3S5lI6USexLYIzt3HGfK1Uvt2kfdYllXfJ52RvMjSCUu84Ok/XbB0FCBRwLJVyRmNiMEKs7NN/ok52olHJu2LpvHxLB3VrIURmti3KsfP56gfHitx6poBl+/iqgh1RidZ99h2eRxyeRyigiPBQFwG4cYWz7zYJLIWaBSd+TiE6I6hlFZABxdImZGYNFEVBMRqJkDbSuFupBbIvMNwKt0k8HucjH/kI3/nOd/jzP/9zPvCBDyx6fWJigh/84AcAPP7446vVykVuhP6/NU3RoEVVhC9A9v1IkiRJNxC9FpAed4kWBJrbyIakegLVAwR4UQU7rlJNqig+9B2yUQM4fZfF/IAZusx8n0llQEd1AroPOWRGPNrPeGTPLL4wr2ZVTj9goUXl1Z0kXVcBuMUAM6vR874Uvi0Y/rv5jRHEKUAo8PJtOcrxxjGnc7bG9uEiSSdAeAI9rmKkNRLbInQ8mEAEAt8WeCWf8imb+QNyEKe0eQwMDCz69+/93u/x+7//+6HzVioVAFzX5ZFHHuFP/uRPLr723ve+l+985zvs37+f1157je9+97s88cQTq9pWOXBHkiRJkiRJkm4Mx/7bPQBsnSzAWPjAtaknejn5xfNVVYUgXXFI2C5T6SioS1/bK0ZAx1ztYmDq0YEUo9uiBJrSeIDZuDWhUm/uS9T05r4J329+gBjUQwZuu5cNdglppxKyrGt60Bwyvka02L2ihHyuuGx5wlw8k6NpxDwXcdkTTV9rbSVEyGYLzLCGhL23edupdvM07bL19yPNCxNm80ZS7bCNGTLJCPlenZC2uSHf9dV2fbX4DFsJeearBGFvbp4mQr7DICSHoxIWsxC2W1+2vNB2tLqvWs0rphpu8+LmQwYJhlRxUULWNbTLIKTN2mVtUbXmtnlO8yP/nb/6+sJ7IgqKptD5cIL4tgiPHx4BoDLsMPxalfpE87rdzIrf277wDyHoPWyTOu5wemec4Z/rAiCoNm9zXW/ejobR/H21x6tN0wLR/N3nC/Hm5UVb+4zqXKxpGpefD8LObV7zccm3Q36EYftvi9P0XL1pWtj6i5BtrEUWr+uu3smmeXqixaZph+a7mj8z5PdmRpq3r+c1r79TDPnth53knObtqXiXfW7YITPR3A7hhyyrHPLdXPY9K3U5MHa9rXflBNlHffPQEyrdjzeq+dZnXCLtOu33xJl9qbIu7VFU6HpPElQ499dz+PXGvnjm/7JtVZYfxBvBqdXHXYJsY9n27R7atIESKPi23Pcl6XrzSgHt751m5ntdVA7XSNxSXu8mSZtM98A83QPzCAHzM0kmzmWZHG7n2JsDvPXCDhQlYOBf+FTHXepjLtVRByHHpm9q5dMO6b1RtNjmvc+pxBv3ebvfKTPZ6+LqKroI8No37zovxXQ83v3yJGoAlajGsaE09vbF13mlnMHkFguz6uPrCjOV1JLLPNebYmxocZ+LGgRsP10iXXRQBegxn2pWpdKlotkCqygQCpR7NZxU47tQL3R6qCq1ztVbZ0m60ZRP2gSPCRQNnNIGGGu7SSgaRHsMfFvgzHuYGR0jrVGfdPHK8nu4EX35y1/mySef5G/+5m/4wAc+wOc+9zkA8vk8n//856nVamzbto2f//mfX/XPvlH6/9YsOFWNgNmmYc/IaHlJkiTpBuBB8jmFO4ZLi56/X/xTaQSDAShFSF2SWSFQ4NTdFvn+8MDUSwWmytidFmN3Qnzao/20h+oJFB9mt+kU+xqjbTSZuUGSrrvhv52j44EkelIl2mPQ/XiKkb/Nr3ezlvX2zix3HZnloQNTvHhbB4V0hKn2KFPtUXb8yhsLM6oQ7TWIDxhEOg3MlEYkp2N1GmTvjjN3oMr8gSp6VMXqNlA1KJ6wZeIYacMZHh4mlVroTL5StnkAy7Iu/v3bv/3bTa/v27ePxx57jKeeeorvf//7qxqcGgSyI0iSJEmSJEmSbgR6UiVTqdM/V2FopnRx+gu7u8hUbM52JAlUBXFpRllFoZCIUEi0np1eEwJHV3lrR5apbBRTk8Feq6FsGGTrdQgCUG/OQViSdC2SOyJ0PJxAsxZ+P3OvV6mNO1SH5XFqSUKQO+PSfdzhzI4Yw1uj690iSZI2oPWsnCD7qG8u0Z7GuIPJn5Vw8h5dj6Uw01dXmfRaWT0GHQ/EMbM64z8oXgxMXU31ez30URVvYGE/j/+4MX6jeKyOX5H7vySthei2GrE9JfLPZbEGa+gJOfhAWn2KAtmOEtmOErfcfRYhoDAXZ2K4nR98bSfJHRGyd8bwawGFo3UK79TwZPDMpmQkVQJf4G3i8/x8Z4TpTpP2aYehU41CBOIYlPYEFPfffH2j286V0QJ4a1eGse5GQGma5qRfAE7s/LXvVeRmCVSV49vTF/890LE4wWVl9fMISdKGomhQn/IIqpv3+HsjMNs0YoMm0W6DWL+JajRntfPtgOqwAwL8eoBbDKiNuzJG7wawb98+vva1r/Fbv/VbfP7zn+fLX/4ynZ2dHDp0iGq1Si6X49vf/jamuXzsyUrcSP1/axac2rYvhqIozL6yPhnZJEmSJOkC6xDEX1dBgBNTKHXolDo1Sh0agU7oICe9GmDNByiBoNipE5grv9mvdOhUOta0aLkkSZcI6jD508Yg1P6fS2N1G+QejBPJNrIKXcxQLqB82mbm+RvjunUqF+Xl23Lcc3CG+w9O8+P7evH1kGNQALURl9rI4kFl6dss2u+Nk7un8d/i11yGv52/jq2XpNWXSqUWBacupa2t7eLfe/bsCZ1n7969PPXUU5w5c2Y1midJkiRJkiRJ0g0iuSNCbMgktdNi67GJRa+d6Uwyl4gwl7Su8O6Vm2iPMdEeUqlOuibzUYv2ep2k41CyVu/7kqTNTrMUOh9NktgWoXSiTuWsg18X1MZkJZlWdJ606Ttko54f1zE6FG2MiJYkSboK61k5Qdr8FB26HkuR3N5IrNP1niQAgSuY+lltzdsTGzDp+2gae9Zj5Mk89vT1GSAbZAVO9pKLGgeEIvAGAib/W+nKb5QkadW1PTRP7XSMyjtJ0vfl17s50k1AUSDTXiHTXuF//KQbACOjkd5rkd5r0bYvSvWcQ/5gvRG8IW0aRkbDK/qXVB/ZnA7tT0MQkCx4aL7gtoNFkkegeHsAYePFNrF0yUHAxcBUSZLWhzPvY3XqRDp17CkZBLlqlMY9dHzAIDYYwUxrBK7AnvOYe61C5ZyDHtfQIgpO0cevBLTdFWskolLAbNdJ7dVQdQWvGlAdcSiNVuDIeq/YzetLX/oSt956K3/4h3/ICy+8wFtvvUVvby8f/ehH+Z3f+R36+jZ3toM1i5CpT3kIIWi/J071XH6tPlaSJEmSFqtC/DUVoUPpwYDT2daCW7yYSiG6PplFJUlafWM/KrHlF9pouyOGEILAEYjzA41UQyFze5TahEvl1I3RUT2XsXhjTzt3HZnlzqNzvHZrruX3Fg7WKRysk9wVIdpjNG5gpz06353EbJMB85uRAiibsDP+aob/7d69++LfV6qwemG678uRmZIkSZIkSZK0WbTdFSN378KAlclUlMl0jLG2OL6mgrYJb5o2qalEnB3zeTprFRmcKknLEYLd5wokKy7tv5BFAOM/LFC+Qfo4b2SqqZDcEcGvByTfqdN5yqGc1VAEJGd9olWfcurmGgAq3Zw2a9/yarqafur1qpwg3Ry6HkteDEydP1ClNu7ilnzcoo9YwzHDsX6D2KBJardFdcRh9B8La/fhgHFGRREKxjmN5I4I5dM2iqIQuPKgJknXm2oFGFkXryjHHkjrx837zLxQYfaVCskdFulbLfo+msYp+BQO1SgeqRPY8pyw0UXadJzCTTKuQ1UptTXuDwp3QPYViJ2G6s51btdaCQL2H5ojU3IpxeX5RZLW29j3Cmz5xSwD/yKDM+tx7lv59W7ShhfJ6XQ9liTS3ji31UYdpp+1qY26F8cxAzhzi89708+UFy9I5WKl1diAQW4wsaLgVNkXGO5a0lQ+8sgjPPLII6vWlo1kzc7YlTMO5RM2yZ0WPR9OMf694lp9tCRJkiQBoE9B8lkVBYXqbT7uECCTZkrSTSmoBpz6s1niQyb2jIdXWbij05MqW3+5nWi3ccMEp0KjgmrV0sjl6xAEoVWel1I6ZlM6Zl/8t2apdDyUoPdjaca+V4CbpP9Wurns378fy7Ko1+ucOnWKHTt2NM1z6tQpgE2fmUqSJEmSJEmSbgZd70mS2tMcwNhVrDGXsBqBqdKGUoiYCCBl28vOK0k3M9P12X22wMBUhbmkSeWcw8yLZfyaHFnSio5HEqR2Ns4f7rDLzKDByG0WQmsMQynXjfVsniRJm8DNXjlBun6i3QaBLyCAmRcr69IGq1un72MZAPIHa8y+svbtsF5ZGALZ/d4UgSdQdQXfDqgOO+TfrlGflBV+JOl6MTttym+nMLIuiduLqKa8D5HWh/CgeKRO8Ugdq1MnfVuU9nvjtN8dY+5Ajfxb1TVN3iCtLqvHoHrOQdEAGwjPT77pVLdA2ysQP3NzBKeqXsC7X5kk4gYUEgYv3Nl6AQdJWm1aRRAbEWi2ANEIWDMVlSAqcLYJxE2ST9MrBYz+Y56+j2aI5Ay0mIpfDZZ/4yakmgp6QkWPa+f/r6InVFRdIfAEXiXAnvKojbsETvg1sdmm0ffxNG7eZ/hv56/tXjWA2phLbcxl9mXwFPfqlyVJ1+i6BKeO/e0t4dOBfS/NkwGM/+cgZ3cmAMiZrXdKRfTWf3xxo/UH1U5w/eJ0J5zWqvKtdF6AW2JjLc97uNLT8ryTtdbbYSdWtu22Rmdanjerl5ef6bx7oqdX1I66aL3dGa3a8rwjTrbleWfcRMvzAozV0i3PezTf1fK8brCyATkJo/VAnTvaW99H80605Xltb2X7nbOC+c8V21qe9+MDb6+oHYbSeuTPcL31fUlXWr/IW8l2Bkga9Zbn7TBbj/Q8Wm59H4WVtbvqXpJVNgjoPOKSOetjnB+E4esw0pnArajsbZtsebm74hMtzwtgB60PVvjbs3e0PO/r3sCK2nEm2t7yvKba+nk2ENeSG2RpW2OtnytiauvHpCGz9eUC3JU42/K8x2rdLc97tNr6vHF9ZcGRE5UVnMNXeCxdicc7j7Y870qOja8Whlqet+uF1pZ74Wz8xkQ/0Ojk2vKTWWLvijPx2wMEZvN5svdfHGq5HSu141feuOJr1X1R4g8kuOc/H2P+QI25f9zV8nI74ouvq0pA4scucUx2/EYH9RwUd2lUesB///njnQq0cIo58/XWj2FbfuGtlueVpGsVj8f5yEc+wne+8x3+/M//nA984AOLXp+YmOAHP/gBAI8//viqfvav/dqv8W//7b9l587VeTpw/Phx/uN//I/82Z/92aosT5IkSZIkSZI2g2N/fM/Fv+N1l52HRgEoxgyO96coxk0yZYcdwwUcSwFzZQ/LlZDuL0VrXsaOzzbfy3s/HmyaFtafNllINk3T9eYH1kqyuY/ItRf37Yhqc1+PUEOW5Te3Q/FCVjZkc5n55n4SL978GSLssUML6Zf1yiXtCALumRlDAeYti0XvbrVrMuwjg5A3h2zzsG3nh0zjsu9VDXn2L1p9DhOyeLUe0t6QfSn0uw7bUGHb5PJpYfOscndw2H4Y8vMi7BGuMEIaqF1dO0TId6+GbMtIpPmLradDfkshn6Ebzf2UgR/yW7KbVyK4bDv5zmXPHYTg3q8eJnt3DARMvliheLj15zo3k7AxDIoL24+XSQ3XqMY0DtyToYzROAFc2p16+e9ca/5Ot+Vmm6alQp6xHZxufj6ghRwftZAfhGk2f27EaN43q3rze7XY4ml+yDkjjBLyewj73SheyHEu7DlSyLqaIb8RT21eh8vPy3O1WNM8Yefa2UK8eT6/+fcWjzd/X2HHA0drrm5pxpvP006leT7hLN5OYedfPRLyrC5kvbxqCwe+6/coT7oKa105QfZRb36J7RH0eONYYBeuf6RN9J+bx3gorqDzhwLfhonHNNzPJNFIXvHSbL8xsuRnzNebj+2X6oqEj0nxHjUJpg3ErEYwZqLqjQOgFlFJ7rBI7rA4+X/MyEqqkrTKnrq9cZ2laA7t99UQbobZn6YZ+6cC9rTHfz6z/NiAvebSv/sOf/mxxdYyg/Dz/tKfAVAXS4/xKnjLL0NdZvxeK2Oy0suM04vry4+JTkWWXkbRWT6S5tT00mPN2iNLfy+5yPLjfgvLfC+tjB3+1OGpJV/XCHCrGpOvdqJZWXoeN+h5cJLsnvzF+4tv7G19DJe0Noa/dVvodPN4iSFNYcdvdMBfw9yHArwrxC3mrOX3n8nq0mPsvj+2d9ll1N2l763r1eb7wstt7V16POPhmR6y1hSRWZ/DE+FjbsP6mS6ltNAvmzCXPr6YIX0hl7Kr157Yq0cvsOeNCqYbMLLTYnR3lDYWH9N2tk0vuYxzxvLH2lx06WPYcsdzgIq7dHR0u7X8+avSvvT+MVNd/tzzjrp0bIipLv29qa302Yf00VzqZHn5AOJ96dElX59/aG7ZZSRYep7K85lll/G9W5ebZ3zRv7KPJ0ntsnBL/vlqlgJFVTCSGvHXYPg789SnFu9zB761b9l26PrS38uu9qX3c4D+gfySrx+Y7V92Ga1KbI/Q/b4kiqLgVfybIjDV6jGIDxiNINTzAah6XEM1FjrbRCDwqgFeJUC4Al1XiA9q6HerBK4g/3aVudcXJ8ZQVOj5YAqvHDDyDwXEat+jbv6vRrrMjdT/d30rp3oB/cN1dDdgtsPEjmoMb42ReaNIx6TD2Zsgg4ckSZLUggAy39FQawqBJRAajf90cLYG2Huu7uJLrQfs+lEN3YVAhVK3xuhdJr4lKyRIknRlga4yMhSl/2yNh386ixNRKKYMxgcs5jvWN+1e/s0a7XfHaL+38ZBn7ioqqF5q/H0G8eGAzEEfawaiM35j7OFv5lAuGelTHXUY/YfCNbY+XNvdMTK3RfFKPtPPlWXW4tUglPCBXxvdVa7Tl7/8ZZ588kn+5m/+hg984AN87nOfAyCfz/P5z3+eWq3Gtm3b+Pmf//nVbC1//ud/zl/8xV/w6U9/mi984Qs8/vjji35XrfrZz37Gf/tv/41vfetbBEEgB/5IkiRJkiRJ0nmRTp1bhmcpRU2EAvvOLgQFeZrCZDYKikLN0hnLNgelXC+KDvGhCInnbQqDOqX+q4yYu8mpQcADU+eI+R6T0TinM60nc5Skm0nvbJWOBxIUDtWYeblCUJcBF62IlT0i9YDBU1XSeZdTO+KMDMYIdAWcTdivJkmt2qx9y6tpA20f2Ue9yamQ2G7iFHzsGZfKmZUlPF4VQtD2ikCrwtQHFNzU+v0+9B0O7GhsgxM/Z9D30TST/1zCzGpEuwxKJ20ZmCpJ15HwYeb5Cvm3avR8IEXP+1Oc+9b8ejdLkgAwYj79j47TcccsY891c+6HA8wezLLlw+cwE3J8ykZycmeSYsrg9rcb45dihxWKj9wc5/epjghbhqtk5+rMZTdnqcZ9x2bpnW0UkpoeMBndvbIiPNJNRCE8ueIqim81SQxFSO2yyB+sMf3sQsB77v44bXfGsGc8vNrNEQlodekoioJb9jnzV8sHEm9kqqnQ+5E00W4Dr+LjlgK8so896+FVGn83/h/gVYPQfVFPqqT3WGTubIyLdcsBfjXAqwVYOR0zo3PuO/OrH5h6NWRfYLgNtE1upP6/6xacmp5xuOP1AhcSSQ6drl18TQCT3es7sF+SJEm6wZzv61HrCoEuUAF8MOY0rKOC/EdXuLwgYOdTNTQXJm4xmNmzfBYqSZKkC07tSVDMGPSfrRIv++SmHTqmHRxT4eCdK6t0v9pGv1ug9yNpcvcnyH6vwGyvyal90asOUq0MqFQGVNR6QGJYEJkR8FQd4UNqd6ND0+q69ux2Ycw2lfZ3Nao6aJZO/ycyTD1Tonho+WyfktSqffv28bWvfY3f+q3f4vOf/zxf/vKX6ezs5NChQ1SrVXK5HN/+9rcxzdW/VgiCgG984xt84xvfoLu7m09/+tM8+uij3HffffT3h2eoGx0d5eWXX+aZZ57hm9/8JmNjYwAIIa6q40CSJEmSJEmSNqvux5KY0yUEzUXB0mUnvOzpdaSaCtm7YrTdeT6b+VhAoPkbPjjV9DwytTpp2yZhO8TqPpHAQyPAU1QcRadW1qnqBmXTpGialA3zmpJp6Z7HQ9PnMIKAc/EUhzs6V3GNJGlzidcbFYLyb9dkYGqLDDvgnucaA+VdQ+HtO9PMrXNSQkmSpOtF9lFvXtm7YiS3NZ7jKSpM/jS8ouh14wvSbwpiZ2H2QQUvrVz3AeKtSu+18KqBrCYvSevAKweM/6jI4Kfb6HpPEiHWvHtGkq4oknHY+tFzlEbinP3BAEf/aifbPn5mvZsltUgJBB3TNqnCQqVk66xCbafAvQmK354eTDI0XGXoXGVTBqd2zlbpm61Si6scvSeOnbi+tdekjUONKFgdOmpEBQWS2yJE+w2EK3DyPm7Jp3Cwjj2ziskGFOj9YBqA6efK5N+uLXrZbGs886mcc0KrVEarHl0TdcoJnXzGxDM3fjGl/Ns12u6IYSQ04oPm+iRHWiO5B+KYWY3RfypQPXd16+mVAmZfqVI4XCe5I4IWV9GjKnpcJfAF+Xdq2NMyQYa0em6U/r/rdva+/Y1GZpIjtyaoJHXap210R1CLa40qqjF54SBJkiSdp0L+Mz7RNxSsgypeTlB+fwABJH6qYo6p6IUAL93iRXoQsO2fbfQ6TO/SZWCqJElXZaY7wsz5hCqqF7D9SIWe0Tr7Xy4w2qtTG1ufG8T6pMepP5ulbX+U5LuTdIw6pGdc3nhv6poGfgaWSnEnsBP8f9t4gD3/do3BT2Xwr0OWr2i/Qd9H0iDg3HfyBHbA0L9so/ORJNVRF69wc2QWuy4EN8wAgFV1Dev0pS99iVtvvZU//MM/5IUXXuCtt96it7eXj370o/zO7/wOfX19q9fO85LJJKVSCUVREEIwPj7O1772Nb72ta8BkE6n6ejoIJvNoigKs7OzzMzMkM/nLy5DiMZKX7jhT6XWNzhekiRJkiRJktaT1akT7Texp12qwy5u0cds03lleyfJukvU9qhGdKpJjZn02g/Q6flQilhvox/StwPG3mNR7t14gw6ylSpD8wWy1TpGECwK/L1wu9kIStXQRUAisElW7dD5fEXB1TRsTaem61RMg5JpUrAi2EZ4IqyY63Df9DCaEBxPZjmbkhVTJelKemYr7BotUjxSx5n317s5NySrS6f9njiBIwhGatiWRj2qMtkToWvc5sTuhAxMlaRLbda+5dW0gbaP7KPexBRo2xejcKhG4Avabo+hRVW80ho8WxMCawzSbwj0MszfrVAbWt/IMyHAfSoBGo2KstsizL/ZqLqlWQq+TOAhSWvKKwVM/rRE74fSHHxtK7e/6/R6N0mSFkn2V9jzS8c59Q9DnPr7LRjpIm5B3lPfyHQ34NF/nl40bfajAelnFaInFdzuzX+u90yVekSlLe9AEDSNDzNtj4gTUInrBNcwdmwtRGsu/dMVSjGD6UwUX4X+6QoAx+6WganSgtwDcdK3RVG1hfsNe86jeLSOcMFIqqT3RNEiKuM/KF79BykQ7TXI3BYlNmCi6o3PmztQbQpMhUbAqpP3ydweJXtXDN8OcIs+btFHNRS2vjSHIgRaAIEC471RTm+L40Q2XiJTNQIDn2jDyGgIIaiOups6MNXMaqT3Rpl6unTVgamX8soB8wea96EbiuwLDLeBtsmN1P93Xc7guhOgBTCbM5jsb5RVL6evT7UlSZIkafOo7RdEjoM+f/5mQgWvU2COQeq0YO62APSlb57j5wIGX62hu1Do0Zi6TQ4qkCTp2gW6yvHbkowNWtz1Yp6+j2Y48zdza/OQ9wrm36hx8g8GGHynSs9pm61v1zi9L76qn+HMeAS2QFGh/d4YmTtiKArUZzwmflLEKzbWP1Zx2Xq2guH66J5ACwSOoVKLalRiOqWEQTFpEOgqqgW5+xKk9liIAEaezOOcz14WOAJNUwjqMjBVWn2PPPIIjzzyyJp93smTJ/m93/s9/uRP/gTP8y7evF+4mc/n8+Tz+abpFyiKcrHTQNM0fuM3foN//+///Zq1X5IkSZIkSZJuJLEBk76Ppi/+u3SyTnyo0e9Xtkym07GLrymRtR1MpnsBqb3WxcBUAC2i0v+ig2+AEoAfURAq5Id0ZnbfWM/L1CBgcLZIb6FMqu6g0njm6moqs9FoI6A0YpC3LEqmiVlsfrToRX2inkfasUk4DnHXwfI9Ir6P6ftYnkfGBqWy8B5BY2CGp6o4moat6ziqSne5ggIczHQyEZfBD5K0lFvPNKp/Tv5sjSulbSDt98UxUhpuwWf3O+Wm13NTNpO90XVomSRJ0vUn+6g3L9U4P1hwj0XgCXw7uC7PLK1ug9TOCPFtETRLQXwrIDBBr0C9C2YfVvAy618SUUzr+CcXJyhSNIWBT2ewcgZeNeD0X8yGVjWSJOn6qJxxmH+zyvPqrQxsmyKTrSz/JklaQ3rUZ9vHz3LsG9vo/UiayZ8WqU96GyoQ4WbRNV5jy+nFx5C3b0/Tbc2juCA2XqzXVTszmGDv8SL735rnjTvaQFVJz9vseydPxG1c6FxMLqgrlOIGEx1RRnoTq9+YICA6Cta4AAW8uELOrlGMGzjmlUNT3nV4mo58/WKiwws/OQWoGyr1lAxMlWiMU7w/TtsdMWZfqVA8Vke4AqvLoDrqIC6pJ1KbcOl8JEnvR9J4NRAr6OZTDIW2O6O03R5FNVXsWY/ZVyoEdYFfC6gMhwcnusWAmRcqzL1WJdZnYKQ1jJRGbMDESGpM5CIc3ZvEcAUdU3W2nKnQPV5jqtNiujNCLabjJEFo638vdSWxaY+tz9jwqzkUTcEt+4z/oLjpq30mtkXw6wGFI/X1booktexG6v9btbN4cleE2IBJpF1n+89mAfCWCSCSJEmSpIs8SP1AQ7HBzyxMru8WWAcFmaMB6aMAjcFlpa0KM/cuPo0Z8wGdL/gIFaZ26TIwVZKkVVdJGbx1d5p9r+QZ/HQbZ74+T1Bd3yeZ526N0THskJl0r8vya+Mu8S0mbftjBK7ALQdYnTpbPpPl5J/OkNwZYcfLMxfnFwAKKAKU+cXLEgCfy6EojU6LkSfzFx+Wx4cM9LhG/p0agX1dVuXmsVkzWm2wdcrlcvzRH/0Rv/3bv81/+k//ib/+67+mUmk8NLlws3+pS6cJIRBCEIvF+MVf/EX+9b/+1+zevXvN2i5JkiRJkiRJN5r6Zfe8VlcjwHM+ZbJ7epao7ZMuOrx0ZwfVaPOIJKd+WUBo2P2FaL5O3/n510LbE8npxAZMYgMG0S4D5d1JZvsNhm+3iBZ9Ynmf9qKNkQe1Cmal8YGRcoCqXN3Njao2v8+0Fm8XX2/uo/Dd5md1kVMWSafGntI0Sa9R9VQAVc1gKpJgJJrB0XS49K0OmA4ERnM7hKFQNQyq0YXtLC77WDUISNUdknYjgDXmulieh+kHxFyPhOOiAJ6i8EZnN3PRhQRcrQ7RCN2yIRPVkC6UIOxDQh5zCrN5gWp88SCVoGg2zYPX/AFh7QjbDwn57gnZj8LeKkLeq7TSlXUN42LC2hG6LcPmu8rfB4DiL99ooYftECHfqdY8rS3enOG8ZjZ/iX2p5iz9j7Qfb5o24yabpv14ZFfTtLnx9KJ/7/riKwCYbRqRX8hSOSs70sIEPxkAIYh+22Z2r87srTrunIYSgFkNMOsC1RdMdEYx9cWDqjqSzUGsY3OLvwcRsiuNFZsD6stW83Mq32/+QfRn55umVaPNx5Lx+ebPqNea5wvpekJVF//4/bDfW9hvtR4y0jfseGOFJIcI+V261eb2ui3+9jVz8TpMzzX/jmaU5mmaHtK2kM8sTocM2A1rW8hJwym0+EzysuUJq/mg7OZbrAAfdoy//OC60uP5Zu1bXk0baPvIPurNK3AEZ78xR/u9cVI7G8eM3INxZp5fneCvaI9B1+NJjKSGW/IpHq3jFnys/1sKc06Qv0uh3kf4CWcdKB0e2m21xjW3AO9QhMxtl41Kl4GpkrTmZl+u0Pegyhsv7uCxj7y53s2RpCa65bP9E2c48L/vYOATbbgln5kXK5RPyvvsG4YQ7D5SQvcFs1mT9jmHY7uSdE7VyR1SCAyo7tlAF+jXaKQ/Ts9Ejdy8w+PPTOLqKhEnQABjnVGqlkas7hOt+8SqHtmCQ3vBoX+8wkvv6ly1dpgzAZ0/E5f1bQruZeb8XzCWi/Hm9raLFV4Hx0tsHS8Rs30cXeWNXe0kai6ZkoPuB8wnI5zuSdBOddXaKW1M0V6DzkcSGCmN6efKiyqXVs42B4sW3qljZjQyt8eonvNxdrd24a9GFPqfyGBkNPIHa5RP2dhTKwu8DBxB+fTiNqmmwtm/uhUAX4fhoTjjvVH6h6t0TdTpmWgEPQqgFlOZz5mc2x7Djdw4MVe7vlfFqIlGl9L5ANryifqmD0wFSGyNNPazm+n+UfYFhttA2+RG6v+75uDU3INxMrdHL0bLCh/siMrw1hjjgzLLqCRJktSa1Pc0tDy4XYLyo5dc2ZmQ/wWf4LBJZEYQmReYJYiPCmYuW0b2YIACnHokQq1dZlGSJOn6KLSbTD1dovPRJFt/McvZv5nDq6zPHalZDQhU8AwFsx6g1wM8a3U7K8Z/VKT3QymsLoORv5vHmQ+IDxn0fCjN1l9tRzUUfE3h1f1ZSsnFA4t0xydddElUPOJVD8v20Z8vUDljUzm7ePCenmwMcrqQ7VmSNotdu3bxx3/8x3zlK1/hr/7qr/je977HM888w/x886BDgHQ6zcMPP8yHP/xhfuVXfoVUSlYKkiRJkiRJkqTAEZz4k2mivSbJnRFSuxoDsNuKDm2XxIE9+MY08xmDN/ZlCVY563S0zyC12yI2YKJHVQInoDrqMv1cmcn/0INZCxh4u0Zq2sewF55a+lGop6CyTWGqd/2rpqpewLtmz5HyGgPtCrrFSCzNpJm4OFjoeghUlULUohC9rKLR5UGbG+iBryStCwW63pMkuSuCV/GZeVlWILoiRSHQwZpr9N3aiUb/Yz21EGzphgTwS5IkbTayj3pz8koBpWN1Ujst5g9UabszBnDNAapaVKHz3Qn8WsDEUyXq4wvP89xb01xTFpPrRFHAfHBhvY/9m0aiifQtFrn7E+gxlcy+KMXDdQJH3nBI0loRPtx53wle/NktvOuhYyTTzQl/JGm9RVIuZ78+j9Wl07YvRs/7U5R32kw+VZLnjBuBonB0T5Jb3ynSPtcIANt1rEQ5rlPeJ6hvA9Fibp/N4pV35Rg6W2ZgrILuCuYzJm/vTVM3QpLlBQF3vTNHx7xNbqbGTG7pmA5zNiA5HKB6Ai+qUOtUqbdzsc9YLwYkjwgSJwEFCnsVSnsa7zXyMH06RaLu0TFfp2+mSke+ztmuOO1Fm7aSg1DA0VUO7Mwyl7aYS1uc617VzSNtcLkH4rTti1Gfdjn3rXmc+ZBkYyFmXqoQyRlYB3SCtCByUEVEwN4d4HeeP5Z7XHz2oCdUej6YQourDH+79c9pRdi5wzNUzmxLcGZrHKseELF9kjWXeMmjc9ymY8JmbDBKsU1H9QXZGZe0Bl4SvAw4XSBCfuLXw44fVjFrjXUo9GrMfWUKRQE3v/mjNY2USqRdZ/YV2d8ubUw3Qv/fVUfuJHdGyD2YQI+qeBWf2dcqlI7ZCA/G/vaWa26YJEmSdHPxEwI9r6LnwTqsUL9dLJylVCju1GAndD7rYZZEI6u6E4DZuPntetojPi5wElBrk4MJJEm6voqHbfy6oOcDKQZ/oY3RfyysOHvW1VItIIDsu+LsfKqAABxLQRFwywsl3nosvdwiViaAsX9aXPGhctalfMImNmhSG3d54RcGCPTmY69naszmNGZzC9O2/G+joR9TOFyn7c4YqV1W4/7iJZkNT9pckskkv/mbv8lv/uZvIoTg+PHjjI+PMz09jRCCzs5Ouru72bVrV2jWKkmSJEmSJEmSwKv6yw4UaMu7tM/ZTHeszsgkPa7S+e4k8UETe86jeLhOddihNulCAGZWo23Mpe+wTT2hMjtgUGrXSObqeHEuZpYGwF3fa/22Qp17jsygBYJ5I8o7qW4c/XwnrBxvJ0kbQnqvRWq3xfRzZQqHa4jNn7D+qqiOIDniowhITATkDrqUd63RKC5JkqQblOyj3nySOy3ccqPKm1vy6XwkSazXpHCohlPw8SoBfiUgcJe/2FdNhcTWCO33NoJcx75XxC2s3iDttXRhQPj8gRrFI3U6352k44EEHQ8kmH6hTPmkjVfe/IOrJelGcMudZ3nxZ7dw9mQXt911Zr2bI0nhBNQnPMYnisSHTLoeTzLwLzKMfX/jngs3k+lOC95ZGLN0ZG+Ssd4ot/VMrGOr1tfZoQRnhxKLJ4btqqrKoZ0Z3v3yJDvOlOicqaMHAtUXqMGF/yDiNoLlFo/6EvBOsKjL+MIdgmfB1HsVvNTCO+xuOFc/H9SyFXYMF9gxUmTnaAkBzKYivLw3d12TI0obn6o39rLKaWdFAaPCg7EfFNj6m+0kfqjjJwXamIJ5WsXZFkAAxojS+P9H01hdOoEjGP3H/KoGpi5LUahHNepRjUqukTzv3PYYW45XGDhdRTvRmK0WVdFiEBkD1VYQisDNNgJV/QQoHqgO+EEcECi9HlgCNIFiCURBBVvFivjUM2ojm0+LrHLjVz/8LpPCoEGkcPPcN6V2WwSeoDrSXKFXkjaS9ez/u6rg1PiQSfd7GxcR+YNVpp+VEeKSJEnStam8O0C8BJHTCrGDGtF3BE6/oPJowKV3vlP3q6jPBkQnBQM/9Bn+mIpeDoiNC+oZGHu/Br68iZUk6fqrnHYaFVQfaXRMFw7VmX6mfN0+T7Vg4JNZjGTjGKcoCgKox1Wi5yu3XlqZ5Xqb+Enp4t/BLw9d+wJ9OPMXc2z7tXba7ozJ4NRroIjGf5vNZlonRVHYtWsXu3btWu+mSJIkSZIkSdINr+2uGLl741d8vRLVGO+IMdIdQ/cFqh5QjV9dbtaI45Mp28RrHumKQ8+XOkLnU3QFq8ug98MpNFNFHLaZ79UZ3xVBEWDHVKKpG2tA/54z82wdLyOAw6lOxqOrnNxKkqTrLuJ4tN8bp3CkRv5tWXXogkinTu6+OHpCBRQIBNp3bbRLAnerOfncSJJasVn7llfTZtk+so9644vkdJI7I0w9Xab8/W2UgcKMR+dxh87c4vshXwcz4aJlPIxuB73LQc94CF/BHY1gn4riDpuIQKVte56tjw3zyO+6TZ/51+M9S7ZpvJRctt2amljy9Up96WQSU+Wl3w8w9M+Lq4IUbYE4KEge42KQ6tlvzOHMyYAjSbpWXz71+pKv/5tt9zLwSZ/v/pddfHNkC3pcpXK2OeAkNmCQ2BbBbNNRTQW/GjD3WpXaePOxKMz/5+yzS76utZCRa9pfulJQ2Y+01JZrVXCXTraWNZcfq90RWXrcyslibsnXATKJpe85k0Z9ydcHI7PLfsbR6tIlE8fV5fuuArF0/9uANbfsMj72zuLzhjM/x+h3e9n2uTTd753EH/JRlrmlfOaOm6x853U2mF34ThJnG8eL0Ud1at0qOjaD2NyTObPkMk5UO5f9nJ2p6SVff3V6YNll1GrLJMIKlu8jniwufQ21s2vpdgKMFsJ/L7re2H6pikeq4i06GgoABXxFoRg1mW03Ge+MUrd0EhWXbN4mXXLRgkYhmVRPBbfPJ+iFsCuyW4bGF/4xBOcCFXMehAJu1ucWJsnXl67e6gXL99/0RfNLvt5plZZ8HSCiLp3treItf8zvzSzdjscTh5ZdxouZ7Uu+/g/jdyy7jLlabMnXNXXp4MLEh04t+xnLOfsPy99XVh5dej/WYirpWxv7h54K3w/sH25ZchnThRrWhKB4i4pegq4fBejDKl4CCrcoBDpY56B03Gb2pcp1q5A98OmDK5q/DJQVMFIaCIFbXPjO9KRKrN8k2mNgZjQiSY3AEwS2oGKDaqpYHc3Pz4Qv2KHVKcd0yjGDqO0x2hVDETCdtahFdbb90oFF78k9GIc7YrhFn/oXRlmbK58bg9Wl07Y/xvwb1ZsuGaTsCwy3WbbJWvf/XdXTeXvOQ/gCVMgflA++JEmSpFWgQvWBgOoDYJyC6Nsa5rCC8Q2N4gd9uHD9rKtMvEel62mP2LhArQbExgQKkL9Fa2RXks8QJElaI8XDNtVhl/6PZ0jfYlEdcaicXp3sSXpKRdUAVSHWb9L+rjiKDpUzDsIXmG060/cnGN0ZYderFZJzHqM7N263gJ5Q6XosiWoqa5uVTJIkSZIkSZIkSbohmW0a0T6zKTC1PuNSPuVQeKfG8T/b1/S+CwNuViLi+Ow/Nku2ZIe+PvtKBbfoE+s3Se21yN61eMCHr0F21CM72nhqHSjgdEEQAQKoblWo961PsKru+jxwcIpk3aNmarxwaydibPkB3ZIk3RjidZftkwVMzydXrCECmH1JJo422zU6HkigRVUi7Y0hD3MHqhCAooH3iEWlW0X1oN6mIHQFZNJ7SZIkaRPJPRDHmfcpHlkIDirndMo5HcUXGHWBUQsw6wKjJtihlvHmdCqvJsFbPNhb77YZenSU7M48kURrgWAbSWCCMBb+Pf1CWQamStIaUg2F+KB5sRpV7v4EtXEXt+RTOFRHj6v0vD+FPedhT3v4TkC0y6Dv42lmXqiQf0uOT5bWltnmMvjzw4z/sJux7/WiGAHmYJ3Eu4oY7ZvvPHkjUzyBNduIDolOB9S6ZeKplfKMRp/0aDrGgaGOJSuXaqmFjpN8OkI+vXgM2oNbi5e/ZWmqitO+srdIN69G0rmG1E6LqZ+tvECI3algdzb2ebcNRv6l1jTP7D8Wrr6R15MgtFq3VwooHq5TPHzlpBCKoaBooGgKRlzFqwX41YD5//dehkbLdM80rqXSpca6D45VePaerovv19MqAx/PoMc13JLP6D/lV3fdbnCp3RYdDyeoT3rMviaLqUjStbiq4FSvFDD8ZJ7BT7aR2m3JqkaSJEnSqnK3gbvNJ/KOQux1lfQ/aRQ/HOBdcgMyf6tKbNwndyCgtKUxPTInqC6fsEqSJGlVeeWAM1+fY8ev5+h8OMHp08tnXrwS1YTu96eI9ZsoyuJBq8IXjP+oSOXUQmfg3OcaFVyO3bt8JuIbkgqZ26Kkb4terAhbn/IYu8k6OVadOP/fZrMZ10mSJEmSJEmSNoCpb+0mN+FguAGpeY/SV8bxKktn275a0V6D1G6L6O1RDEcQqFBq06i0aeh/MUd1xMWeWUhbrGmttUM3Fj/UV9TGDUbnVI197+QXvebqCoWkyWxbhMkOi7qlw7vPf54XcPd/PUXm9kZwqpP3qE96qJ+K4CfAj4PQwZiG6KRAq4MxqRIbFlTe7VLvan4sp4Sk3/W85kETYcTlbz23OPN8rlLhzukJVATj0QTvpDthUgWt+TMVPyR4Nuw+LGQ2JaQCgFCb3yxCxj4Jc/F8Qm9+n1YLeWPIVx+Yze9Vvea2ha2rGhK0Fra8sG0SXDa4PzSjcshEoYUFLLe23ZSwXT/kc8PaEvo9XL7LrVda6FZjuMN2Vz1Ydp7waSG/Qbv5NzhTbM5A355qDhK1tOaBqkHIRj+wv7kpu941gtWhM3egRmLIJDZoEskuHDdmXizz+hf34j68DTUIUAT4msquL77SvLANRvtpb9M0/7GxhX+oYOV0zP/eRvpVsMbAS4LdBX5ZobBbpfYLC1VCZqqXfF9e47+ac0lUyoXFhnz/Nbd5vstFrebvuVBorlRRrjYnE/Sc5nPBcXv5ii4AndnWBoKOT2WaprnlxdVcrEzzoLYg5HjulEOqwIQc4+Pp5uXV68tvSwhPLKGGfEatcFk1orAKNCHHeJ/W2hEu5DNCzqNavHmfCDvkeLUWhuhcfjy7Eq/52CIuuzgIOx8vabP2La8muX2kG0B80CTWZzL6T4XQfVJoCk5cwYmrXLhaubOnMRBZBODPGfglDVSBnnPR4gE91vIVuTaq6DCk3mn8nb9LIf9fZaCbdBNRYOBTGdy8z8SPl68kt9r0uIrZpuOWfDTgzF/NEesziG8xieR0+p9II3xB+YzN+PcXX+u23xun48EERlpj+tmyPAdLa0qLBPR9bIz6pMXcuRS1wwlmv96F0emgd7gYHQ5Gh4OedVFa68aTrkLuTZ/UqYBKj0KlVwamXi0BqLBkYKokrZf4kElmX5RYr4lT8Mm/XV2UgKdlQhA7F5A5IPCiUN2i4MUV/Bi4KUBdn+Sha0G4AuECCPxLnt3NtUWYa4uw+2SeLaONO8NAgbHOS54jaTD4qTZUQ2Hu9QqzL988MWGKDp2PJEnttigcrjH9XDn0udOmJ/sCw8ltclVWHJza9ViS+JCJaigIIagONz+tNfWV1TMOe+izGsIe9F1JyljZiazcQsn2C06Vcy3PmzDCs3JfyZyzs+V5q17rD122J1rvdLwrcbbleQHusc61PK+7gu+wf4V7sy1az2JkKSMtz5vRWj8xvyGGWp4X4EC1v+V5s1brWZOdYGUbLxCtX6TFtdb36Tuzre8b3/dvbXleACvR+nFpzm5+eHwlxyqtPSy+wAgdMRKu5rf+m+20Wu9AzJoru3g8UWr9GHZqBfMOxueXn+kOcHIq5g9Nep73mP3IJa91gR+D+IggyAYIIHXWx77bZ1tituV2FFdwPD9S7ml5XoCRSqbleR2v9d9htb6yyoj2CpYdNVo/Nm5Pz7Q87/wKflcAOb31ffqu6JmW592pryyDXUW0/ptVV3Bn8s/5PS3P2xlZ2QOCvq58y/OeqHS0PO9Kjx39ZusBmodrzQOPrsRbwbVBPGxU4RJu7xxved7JHw82TSs/Z5MYV+Dv+/FiC+3M16ymecNEyh77ni2h+uCkodalXhwYWM8p1LqAX8pxab92xG79/DZeTLU8b/IHKzvObDeXOR74AR2vBI2Mhr+cRVEb2brUiIKiKAi/cV8x81IFZ1ZmKpYkSZIkSZIkSbpRZPZF2fnjxff4/oB5dYMDrkSB3P1x0rdFUc8H65VSKkVLJdChktGYHTJJHWgMIFY0MDIaVk7noRenOLY9hWuolBI6vr6yATa5uYX+66PbUgz3xglCAwYbdp0qktoTZfbVCuWTNs584x42+R8a99H6PERGQSvRqN53yeOvyBEVukIWep3smJ9lW2EeAbzZ1sVMdIMmtpKkm4CZ1Ujttmjb1+hHjw9FCDxB5axzMTh15uUK8wdquLpGpmLz0NFGX+ZMIoLdb1Ad2RzVW8x5Qfq4T3RCIH45S23MZebFMl3vSRIfisDfN+ar98Lco4AKdf+q8nFLkiRJ0sakNKqmVkccqudWXhZcUUHPuei5zXHt0Ar3kkekduuPxyVpU4jkdKycgWauT0BS4An8eoCRbIxy0BMqpeM2peP2xUTWWkQh/05zP9PsyxXcok/nowmMpMr0c5XQimKSdL0oCkS76yQ6FOJ3lqgdj+GMWLjjEWqH4iAUFDPA2lkl1u9RHXNvzqCW6yg6FVDYoTKzX973X63+U3UUYD62snFgkgSN4L1Yv0lia4RIh44WVfFrAfasR+mYTXXEuaoALkWH1C6LzB1RzIxObcJl/AcFymeubnl6NaD3gENqQlDtA8WHtlcFyvmFeXGY+KBKENm8AapLObotTT2is+tUgRNDKU4PLjwryt4VQzNVJp8pUQy5HtuszKxGz/tT6HGViR8XKZ1YWfyWJEnhVnTF1vFwjNRuC98OcIs+hSN1amMrC0SVJEmSpJUIegNESqAXm28M8g9B+48h9aaCQOCsLFZYkiRpVc3s0UmOO3Qc9Bi/NySb/BJ0J2DfMyXUAKbu16gMba5sdV3PBcTHBYEGwlQQQaMSbHXEo3SiTumovMFfVZs1o9VmXCdJkiRJkiRJugGZWY1oj0G01yC5fSHh0sk9cQZOVrE6dYpHVu/ztIhyMSDrguSMDzQGHHbgku/WiXTqZPfHiA+ZKBeyXNd87jzYSIJ3YmuC01tWFoB5aE+GQ3syAIiw6muAGghiVY8tw2V6p2rMvVVl7tXLkngJiB2B5OsgDPBSIBKNapR2MgBd4OxYo9FpQcC7psZpr9eoaxovtw/g6HIAlyTdSLySRvf7kgSuoHzSpu9jGQCmny+j6grZd8UY/Yc89UmP0lETRYPy6YXgk4GZhYSGubKN+HCaE3/SejLJG1VkNqDvx41jf6VfIV7TMHZr2LNeIzD1Ek4H58t+SJK0qjZr3/JqkttHWmfpvRZGRluXCogblZdRGP0UdPxUkPupoJpU8Uoyeki6OdjTHsN/N099avXH+JptGt/6fz2OGXXp2TpD95ZZugbnMK2FzwpswZm/msPIaBhJDXv6knYEkH9r6UrGxSN1/GpAxyMJBj6ZIf9m7fzY5SC0qI4kXS+KBrE9VWJ7Gn2CwlVwZw3s01HqJ2L0fUzHtwOq5xzKZxwq5xyEKy8cr5XqQdB6fRfpMrodMHS8cZw929F6QQNJ0mIq2bsaMUOqoWDPedRGXbxagB5TifYYpD5qNWKJDtcp1ANca/mOOi2qkL41SubWKGpEoXzaYfKnJeqTV3+dkjnr0vOmQ6ArTD+sUhs4/5zHF2h1MArQ8XRA9qWA8k6Vm3KEoqJwtj9Bbq5OprRw/aSnVdruiBF44qYKTI0NGPR8MI2b9zn37bxMfiL7AsPJbXJVVvQ0OrW7MTigNu4y/v3idWmQJEmSJF1OqSmhHQ1eJ0x+GoxZgZ+AQCb/lyRpHdXbNZyYQvqcT73NZX5naz2kej1g3zNF1ACO7Y9hDG2+TMV6rXG3lt+rMvuvpte5NZIkSZIkSZIkSTc3RYdot4Ge0NBiKvr5/7SYipnR0CyVwBfYUx75t6uMfK6bQlYHAZ1jNvEtEXi6vGrt8euNKhraJYMXhAKldg2zJrAqAXd+vwyfbLviMiY7LM4OJFalPUog6Jyt0z9WIVnxMN3GoGVfhZm2CEasRv+/yODMedQnPPS4SvKHYM4olG8RlPcBKlhayAPt6/x83/Q8HhgfxvJ9Zq0or3b2oHkyekuSbhRCQP7pLOWDKZI7GtP0WOM3OvVMicL5QUBzry8EwFdCKqK9M9BOzHbJVB30QFA4vLEHD0V7DZgL0CoCJwFmGeIjjf5Et+zT8eDC8X3qQ6A64ObWq7WSJEmStH5UQyF3f5zSMRt7VhaTWAlhKky/B7q/K8jcFmXmhcp6N0mS1kx94vocLxLbIriOgWl5TJ5t58SBQRRFsPW2Ue5+32F0o9GfEjiNPib7KgNkK+ccat+cJ3d/nLb9MRQNFFWhcLjG1D+vXv+UJK2EYgjMbgez2yFxf4GXH4uT2BohvsWk5/0p/HrA3GtV8u/UZDXVaxGAUG/OSoerwYuoVOIqsUpAouZQjFvLv0m66cUGTbofbwzEnj9QpXTCDg3ei3TqpG+xyN4VI/tUgfkug+l+k1JGx4tc8kxCCGIln853J0jusiCAwpEa+bdq15wwJj3s0f+aw/ygzvgdJonkJaGnmoIfBz8O83crZF8VxEYD1LtizL9evfJCNzHbVOmbqvHoi+MEmkLsM1mAmyrxkZ5Q6X5vitqow/gPi4ibPC5VklbbVaVKjvbIVCSSJEnSGnLB7brCaya4PWvaGkmSpCs6+x6TbT+y6XrTIznqM3L/EhVUg4C9L1dIn394fG63xVxvhC42X3Dq+CMa/T/0aTsYEPlwirHvyUQ3kiRJkiRJkiRJ66H93jjZu2JLzuMWfZx5D1SFSIfB1mMVNE9g1QOEAjNvXuHBvQp6VCVwBYGzgpSyChcDU528h5nRUQSkZnzs6OLBRyIQ1CZc3LyPVw449z/1M9cWIdCubZBS/2iF3rEaluOjewItEMynTc72xVEDwfZzZbQAcvM2To9Bfcoj1m+S3hvFrwe4Jsy9R+D0XVMzrknbnM1dIxOoCE6m2zjR1r5+jZEkCbUKWhm8zMK0+rBF+eDiShXxoQhCCGrjrfcJKkFArtwYbBUoUDq+sYNT+z+egR8tjAQq9ys4bQql350hudO6eN6afbWC90vxdWqlJEmSJK2/2ICBaqoYGQ0UZCWPFRIRhXqPIL4lwuxLFYQMFpKka5LcGaGjf47HP/MKqgrlgsUrP7iVU2/3s+2OUTr68qv2WYEjmHq6zPRzZRCQ3GXR9Z4klbMOlTOygqq0vhQFnDmfubkqc69V0ZMq2f0xcg/ESd9qMfNiRe6nV0MIVB+EzLt3TY7tS3Ln8wUePj7Ose4MJ7qvnABSkoy0Rs/7U9TGHCaeKhHYV77hsKc8pqbKzDxfQf1PA3Sds9nzaiMBjBNR8AyFQFWwqj66B96gydwrFQqH6it7fnQFsRmfvldt5gd1Ru82GwfjKyjvVEmc9DHnwYjfvAcV5fxmt5zGs776pMv0c5XFle03MxW635cicAUTT5VkYKokXQcrDk4VQjDzksw4JEmSJK0tTcYxSZK0AXgxlWMfjTD0jENsRrDruzbTvYKRnRHs+MKlt+4E7Hu6iGELqkmNk7fHqLRdVd6YDSGIqZx7Anp+6hMnwpZfzjL/ZpVIu46Z1XELPvm3azdPZ8d1poiFDqXNZDOukyRJkiRJkiStNaewcN8lhMCe9tCiKkZSuzjdqwagKgSOwKv45JMWaiAQaXB1FfdXUqQ/7hKte6RLLgrw/G2d7D82S9RZeJqbP1hj+tnlnydN/ve97HxhBoDy1hgCsA0NT1c4uSXFA69OYTkBI4NRTu5KLMqWrygCncVPkOOR5sFe5mVVTKMfPA00Kg+lb7XI3Z+g0q9QzSgIQ8GLKqiuR0/RIXYKvASUbwG7G4qR+IUNuLBdxfl7+kviwypOc8Iqz28e+OC6WtM0P2QaYWMrZiLEbIfbJ6Zoq9kI4JWhLmaScS6UZfD95jcqIQ/d1ZC4ODVs3FxIO4TafMMmIiE3cd7ybVFC5gn05mUFiZCVCJlP1EK2Zdj9ZdjA9JB1DWsfpcv6dETIerZ6Txu2fSPNjQsbSK+EfNchTYGQ+VpqYNjCWl2xsPXSQt5rNE9TjJD1d0MGEV2+XmFtC/nMaKo5sNML+Q16XvO0xIdONU0rAJ2PJkjfEm28r+JzNN+LFlWJZBfvK4XDNcy0RuFQHWeutdEwu770Ctt/LQeGQmXYZvqZMm5xY0VWKE/1gS/Y8e2FA08tq1DYqpEcDkiMBJzYb6L8YT+Z16uU0xpjuyMUn0gxN9YcnBr4zd+NbjT3M5pm8zQ9pMp1sdpcSUTTFm/jWr21ZN5uIdLSfEq6uW2e09xfPDGTbml5Iux3ftmxOmw/V7Wr35c0tfm9htG8fYOguW17uqaapnVFmx8MvjIxuOjfpXK0aR6vHPLdhB2qwo5pIeezsHNX+MG1mRlpPrl2ZRevV8Vuvl7Iz4UEYbd87L78WLhUC8MXKfthlya3j7SeyqcdJn9aovPdCbofT1I8Vqc6vPmS3l5Ppb0KXSdV2u6KMffqzVkxSZJWhQKKrjA9kuXZv92P52nMTaRwbQNFEUSi1ycQ70IQQXXEwasFWF2GDPqTbjheKWDq6TL5gzVyDyTo/VCa6phD4e0aTt7HLfkIOTRmWdFpgeqBnZGVU69FNa3z+sNpbnuxxK6JPJbrcXCgY72bJd2g4oMmKDD+o2LLx6nAEUxttZjYEiFSDUgUfGIlH9UXqL5gtsegmtLRf+P0qlWSVnxB3+s2tazK6F1LB6Ze4KYVzHmBkQ55XnCTOLQzQ6boUEiZvLU3y7ZfOrDeTVozelyl46EEVofOyN/nlwy8vtnIvsBwcptcnRWNgBdCUJ/yKB6yl59ZkiRJklaJP+BjDOt0fEdQ2QPVPcDNm8BGkqQbna5y9jGL2IRH3ysuHaMOHaMOnqHgRhRUH0w7QAlgZEeEkd1LV6zZNDSV8feptP27Apnbo3Q+nEQIAQKsTp3ULgsRNO43Rv4uv96tlSRJkiRJkiRJ2pRKR21Kx6ZRI0rj4ev5h2taVAFFQbMUOh5OENiNUQJWp8HAeCW0K260O0qm1BgIffeRGSLe4pEFie0RZl4sLz2IQYVM3mWqI4LuCmJVD8sOcAwV0w1QAzixJcVtx/JEqz5W3acW1VoabBBKCKxCQO7+OPGtJkZKQ1EU8gdr5D+TRC8L2l8NiE6Ii3EsfgLKe8HNNv7mwtjvS9uwDg8p4xWHfaenSNmNQZjFiMlrQ13UzdYCpiRJWj3RXoPE9gixfgPhQySrUx1xmH21Qvs9cQJHYM86VM45BI4gqAcErqB0/OqeudfGXRQNJn5UWpVKA+uh443GqHLPgrlbNOa36qAq1NsCrKcddvxDY9tU0irnbreoZjZvYj9JkiRJapmA4tE6Qgi6H0+R3Glx5q9m17tVG4qXUZh7o0p2f4zSCRs3L8vlSNJVETD8rXk+8X/Mc/KtPuLpGnvvPYPraOzYN0IiU7suH6tGFLoeS5LYEkEEgurIygJTy4UoI6c6MEyP7oE54iHJiiRptThzPmPfLRAbMMjdn6DngwvJhtyyT33SpXTUpnJOBlhfLn3cJ3vQp9auUOuSwanXqp7U+fEtA7z76CiDs2UqpsHprsx6N0u6ASmGggiusq9RUbDjGnZcI+wOJbeKufWS4z6RsuDcfRaorR0jytsV4mcEqnnzHlN8XWWsO8bg6M1TpFAxFLJ3RsnsixE4jYqp9UmZIUKSrpcVPcVRFIX5N2XWMEmSJGltuY+52M9rxE5C6g2FxDuCmQ9BkFzvlkmSJF1ZtVvn+BM6zoRO34k6mRmPSC1AKOAZCmd3R5kZaC1z/mYy83yFmZcqxIdMnFkPtxA0slM9miAxFMHqlAPNrplQWs7ev6FsxnWSJEmSJEmSpPUgIKgvDDAwUiqapaIYCt3vTaHHmkNRD21NM9IdBwG7hwvMZUymc1GObktz74EZElUP0Vg0CjCVsRBPTTVVd1R0MNM69pyHaiqN6n+HCwCU4jqTnRZTHRbziQi7TxYZGq2QqLjUTZX2GYf2Z+cYGYxyYs/SHYOaE2DWGuuo+oJ03sWsBCSmfayywNttUT5lY09VqY65eKWAxHSCnp+cD5aKNlZGr4Nehswr4CVh6omr3eir764jcyRsj7moxds9HVRNExFSOVSSpJXR3QCjJqhZrQXCxwdNej6cwisFVEecixVSvWpAfcJj9B8Kq9vAAMb+aZWXudYCQXS6cYLQ6lDcoV3s97HbVM4+bhKdCZiLW9Ru4moGkrQuNmvf8mqS20e6AZSO2SR32EQ6DNxiEFrN/XLnXswu+fq0s/zgC11ZekR5MrJ8cE1Ype1LqcuUJ8mHVM2+XMld+vlr21er8A3o/d9SuPvDByaP3V9a9nMk6Wbn1wXf/uUMUDk/JXP+/3uvy+dFcjo9H0yhGgoTTxWpnHEuJuv5raGHm+ZXTYXAExA0+r5yDyYuBrUqaiP4Jn+wxuwrVYQr+J+OnV7y8++Mn1u2jS+Xti35etq49mDYtL584O+Mk7jmz0lGlk6mdKK0dOXFmLr8OWG5Y74dLD92ZFt0esnXs9ryATilYOlzS1pbfpu/7+DSlczb1GG8moadj2DnTex8hMKpJMntaQYeHyXSZvPDn0vjV1cxemuD6nx3gtQbHvYOQe1dAVkjfNueqHYuuZwTxeWrg1Ycc+nX7aVfBxD+0vcHorZ8v0ZNW/pzunqXvy4p2taSr/u9Cq93p3jwJ3Psmp5nZl9zu+7uHllyGUfml97mOzNL/x4BeqLFJV8/NN+17DKWOzZssZZP3jJqZ67pMwAK/tLHjt/bdveyy/i/Hj+27DzLcbyl97GYufRxpfaDrRf/9ssB2Z9U6f43XcxuMyj26AhNIfrBpc+RuSeufT1aEfnAGQCSD8Rxt0bg589x6ZX/Umeu1MMJgj0Wkz+9ea7zwyqjtj8QR9tlrXvVVD2pYrbpGEkVPaGhWQrzb9ZWNXlQao9F+71xVFMh/1aVuTdqCHdlz9DiQybRPgN7yiPaZxBp10GB6oiLW/QhEDjzPvWpDRzwKvsCw8ltclVWPPJbljGWJEmS1pwKpfugdA/EDwoSb0P2KZj5ufVumCRJ0vKqaZ3jd1975/+m4kPl1MLDCK8SMPtyhfhgo8M1vtWkclpmh5QkSZIkSZIkSbpeFA2Suyza9kUxW6hG1z9V5WxfY7Dy0R0LWf49Q+XVO9qJlATFuEHU9nj0zUm68nV4PIVTmMdIaASuINprkL0zBkDxSJ1o3+IKn8mKx0v35Rr/8BWO7kgz2xZh7/ECnq7yyt1p7nlhnrbZ8PtFzQton3JoL9nkzjlcOuY50MCOq1TbNMZv1/F+bRgueT3aZ1wMTAUIG+enXl2Bw+tmpCvGnjNFpuMxqubyA6UkSVpex1Sd299qBH4WEzpHt6cpJA0CbXHQvuoHDExUGfh0BitnUB11GP3HwrpUUb7R6QkV1VBwCv7F42738x5mqXFsrucUEIs3nJtUcZMqNVsGpkqSJElSmMSOCLE+k9lXZYGJq6JBkBQocvNJ0oZgtmkYaY2OhxL4dsDI3xXxKgGK3ghs8EqLg26iPQadjyYw2xr9XcIXKJqCW/IvBrWiQnqPRfbuOPEBk7EfLB0sJUnXSlHAiPkYsSqJ3sYJqOe+SQ587XaGn+oDYMsvCs7+zRxe5eYOUI0PRfA6oXp/0MiCKK0eVSXfbtI+JcdjrSU9qZK7P0Gs10AA9rTHzEtlnNnVC8JbLU5C5fRDUfoO1Bl6xcaJOpx+aPnkMGvNtxsVUI2Mhl8NLiarWIpbaGxvt3jjbfc1JQAVVEMhWGGg5krpCZXYgHkxoBMa/4vkdKyuxvNB4Qu8SoAWVYl2G5z75nxT0tuVUk2F9nvjZG6LUjxWZ/blCl555QuNtOv0fnjheag951GfdFFUhfReC9VUUM5X7rXnPMa+W7jpz+GStOLg1GivQW106SwvkiRJknRdqFC5A6xh0AuAx1WcySRJkqQbkTPrM/rdAr0fStPz/hSn/scMwTUkDk3ujqAnNGqjDvWJDZydStrUDh06xNNPP834+Di1Wo1/9+/+Hel0evk3SpIkSZIkSdI1SO6MkHsggRZVKJ9ymH6ujFcOCDxB4AqEKxA+oIAWVRn932+hai3uhFP9gGTFI1F2SVVcEkWPZNVFDwQCmM5YxN8u0v+xDKrReDgb+ILisTqpXRapPRb1aZeRv8tz8k9v4dZDBTS/+UH4TLvFmbrP3hMFYhWfUzvjbDteYefhEoWMgSoEhhOQyru0zzQCUusxlcntEfLdjTYHqkKQFghtYTRT9LLnw27Bp9atUM8p2Dno+ucANwVuJyBA8aC6fTW/hWt3ujfBjrMlts3NcyqbBrW54q0kSStjmwu/o1TZ4543ZxHAeFeUo1vS2JFGsOSdh+fonLMpFQJmXy5QPScH9YWJdOgMfqoNAHvW49w354n2GCTGBJP3apS2XBJ8KgN7JUmS1oXso95YFBUGPt1GJKtTn3IJnAAzq+HM3eQDrK+CsARKXUa8SNKNTDEU+j6WJno+eMGe8Zh/vUpyt0WkXSPaY6LHVGpjDuXTDl7FJ9Zvkr4lSm3MYeK14kLwhSMon7YRlwwbmD9Qo3zaoeeDKQY+kaE0GSPZJaPWpbWjaLD1Y2fxbRUj7nHy77aSuTPKzPOVm/oeefalCl2xJNY7CvXbbuINcZ2oIX3w0vUVyeokt0coHK7hlgKSOyIMfLKN4W/Nr3fTQlVyGsfeF8csB2x5sc7W52oMm0pLAaBrpXLWpm1flC2fyQLglnzm36xROBhe6VrRIdKpo+oKqT0WhXeuvZL5RpV/u0bbnTESOyIUD69sO6iGgtmuA4L6pIcWVUluj6CaCva0R2XYAdHY1m13RElsa9S1dfI+4pJjj1sMmH+rSH3CxasGIBrJSAY/3Ubmzhjzr7d2PabFVSJtGqiN5IeRnE7m9hh6rNHHP/V0icKhq/+ulfOPRUsn6sy9Xl18362CqivoSZXULou2fTES2yPk31q+2rokrYe16v9bcUhPrN9k7hV5EyZJkiStH7sbjLxC19cFXgaqO6G2A5DjryRJkja02ojL2D/l6XsiQ9ejKcZ/ePUZSrvenWxkp7onjvAFlXMLA643PcHmfFixidbpyJEjfOlLX+KZZ55ZNP1f/at/xXe/+11+93d/F4DBwUF+9rOfrUMLJUmSJEmSpI3ixP+5/+LfEdunZ7aK5fgoQNXSGe2M4esq23/5DaBRIbT7vSmqIw5Tz5Zx882DmNWIgtmuocdVzLRG+lSeWN1DDQSKAFUINF+g0CiCV4nqeIbKSE+MmXaLUkLnrrfmiA+YlCM6Cbsx8m8+bTH2vna2TJVI1l2sDoPBz+WYKnocvKURvHThur89U76kRT61CZVb3yrinS+22jlVp2/4/ENeQ0Cbj3qPg7LN4QO54zgVA7ti4FQMrJTDrQPnAAgCBd9TOXa4G+WycchvV843oaziaBlMEWAoPsQFIiqwOjyICg7V403brFiPNE3zg+bOylrdaJomQuYLwqoFes3zjWYSDM2XyDh15uPR8GoCWvPNlAh5OuhlmhM7KWrIjVgp5M1B8wcLPeT+WwtpoH/ZtJCPFNHm/TTVXmmaVrebt6+rN7dXDWmbXwypPhvSFuXy9oZMU9yQ7RH6PYSt7PLLv1LbwvrHhdG8rkqthWqUYX3tYTEPIe1FaXFdreYFRuLNQZ6d6XLTtIzVPMjjyHjnon9rIdvccxevu+4G7P6/HyW508LqNph7rcKUqdD5cKNStD3nUTxSp/dB6J2scfJPZwgcQewDKYIhk4mfFBdVYZbg2H+9F8Pz6ZsvkyrVoNj4riLtOgP/cxeWE+BpCofTWcgv7D+O07xfhh0fW+W5zb/9wG9enm82H/uckGOJ71z23pDjXujvMuw3ErLP+F5rVWKDevN8SsjvK+z4LS5ri1duXs+Wq9KErH9xOtE8X0g7tGjzNh8rp5qm1f3m77Attvi3X642n38THc3nh1rIfCLsEBx2Pgs5Jyt2yL4Usj1rIfu1f9l+6Noh59XQ435r0yLZxdvIr65wEN5m7VteTZtk+8g+6g1KATOjUZ90Mds0Oh9pXLOc/NMZFA0iHQaBE8ikrS0QEVCLMjhVkm5k6b0WkZzO2PcKCF+Q2Bah+/0pAkdgz3qUjtWxZz1Suy3a74uj6gp+LWDq2fIVg1Mu5xZ8Rv4uT99H07z9rT3c+YuHiGVv3oAVae1lti+MiZl5sUz7vXE0Q2XyZ6V1bNX6Kh6tk/qf48Te0AhiPs62TXIBfoNIFjxcU14DrSW33OgDLZ2wqY265N+ssuVX2mm/t/k5w43ESaicftBi10+qZO+JMfNcc3/LenFmfc789RyRrI4WU4kPmnQ+3KhOO/7jRn+t1akTHzIx0hrRHgM93uij0aybe5C5VwkonajT+XCC1G4LvxoghFjo6xCX/O9CH5HaCLI2sxrK+QdrXjVAiygIAYEj0GMqTsHDrwqiPQZOwWf6uTKlY3ZLFVqdeZ/5t2pk74pRPFLHry7d6Z7ZFyV3bxzlkmdOgS8oHqlTG3OxZ7yL1XKvVn3Sw6v4CJ9FgalqRKHjwQSJ7RFU/Xzl1FmP6sgGTWAp+wLDbZJtstb9fysKTq1NuaT6YqAR/gBSkiRJktZA+W7w2gTxI6DPQ/oVhdSrArcNKnuA3chAVUmSpA2qNubh5n3iW01SuyMUj9pXtRy/FlzsWEKB+BaT+JYsTt5n8qkS9rR8MC+tj5dffpkPfOADlEqlRgffeRc68J544gm++MUvUq1WOXv2LK+//jp33XXXejVXkiRJkiRJuoEZKZX2fB3NF2SLNoMTZRBQt3QEEKt75ObqvH5r+8X3ZG6PAo0g1d4Ppsi/U7uYxEePqcS3Roj1GY1kP0DgCmY0hdHOGLov0L0A21CpRg3KUY16ROddh2ZoKzq0FR0SVY/j21JMdkZJl92LgakA7WWb9vLiezwtEATq0oNhqhmNQ4/HSRU92k+7/P/Z++8Yu848sfv8nnxzqhxYzKRIihKpnKVW5+k405N7HNbG7Os1Bt7FYLGwYeyuYa+xf9h+bQzci4EN2/PannZ7PN3TOamDWlIrBypQzKlYOdwcTj77xyWrWDyHVbcokpWeDyCIde5z733OuSc+z+/3PPlRF1+Fsw/H2b93AnwIPjAIxjT8YzFesB4Mfcbo0CCyHDA7nsf3ZRTdI72tTm5XBd+Vac7Gsaey4ILU5SEPOgSOBKfbCYsSENQtgofWT+dyumkxVK4TAE0tIsFIEIQV3XOySM/ncwt/9z+7NEGu9E6T2hkLSYHuh1P0PpnCbfmkdhkEQYCsS/jmJolSuIWOXJqlt9YK5S/G7Pb1ZmbAIDRCgCAIgnDHiDbqjSvwwJxyiA/quA0PWQdz1qH7kSTp/THkK4G5pWNN5l5dP8Hj65Hf46OeUzF+pWE/6BAk1rpGgiBcT4lJyIpE4f4EsV4Nt+kz90qD8vutJcHitTMWyKDoEt5NPJ/5dsD4Dyoc/r8nOf6dvRz9ww9RDREcLdx5pWMt9IKK0b3qOac2nda9PnITki/LSK6PXJWQm+CMBNgjgYgLvUl6y0V1A2b7IwbpE24ZvyHjT2ooCYfkdp3C0QRO1cOcdoD2PX3gBKR2GtRmE6R71u+EcU5CZn6XRq+bwK367WvwOuGbAa2J9jZtnLfQcwqpXQbbfydPa9IhezCO2/SxSy61cxbVkyaSJGGVRLzg9PM1WlMusZ52cq+EtNhUe93/Jak9K6k57VB+r4k56yJrEsmdBm7Vo3bWwrfbs5YW7ksgGxITP67QuGSvLrlPajcXSxJIK5zjc/fE6Xk0RfFYk8rxFoEbIMkSvhPc8hl+6xdscnfHifVr2PMuVtElezCOJEPxzQbmtItT93BrYgRLYf1Zi/a/Vd3FNi9bZIeTxAc0WmPODcvp6uoeztJa5wHnI8lix2U1qfN6tPzV3Wypcuef7fqdjXQKYK+iLLCqm+zdqbmOyx5JjnZc1glWV+eiF+u4rBl0HlBhBqsbtarmdz7qyDm7d+VCV6SVzm++sqsoC2Aond8U9cTCI0nfKoNGpeOyJbfzFtxRq2vlQlf4weqeMFdzbN2bH++47NHEpVXV47tzRzoue77S+faou+ERf2/kma7THZcFGGvmOi7bcjs/ZmurqDOEz6X1He3/8H2SZyB5TkIrQv5l8F/J0CjITO/VqfUvX6eU1nlAWT62ugfBiWp4pOcbcZzO99FtXeVV1WMkWeq47Ielvo7Lni73dFz2YH6647IAF6zOP9tbxcWwqM+sqh5Vv/Nr1snWYMdlRxv5jsuON7MdlwU4lJ3suGxS6Xz/L9qr65G7ZHV3XHbWjhhR/Qb8qNHBb8Ba5X3VQKzz69tq7gVl6fb9hpeahY7LTkmdn5MSqzg3AlSszo+V7C9XPlYmmj7bfuTR97E0Q39gkP3sHHIHX6FIiw/6rbMlqr/KE1gKkhbQ9ZVpai/lkaQYu/9hgie+eqzjOpe9zvf/vzrQ33HZ20UKIicp2fA2wzo1m02+8pWvUK1WkSRp4WH/2gaAdDrNZz/7Wb75zW8C8OMf/1gE/giCIAiCIAhLqGmZnV9ttx3uON5u93cUiQuDaS4MpfH0dltJ73yL+z6c57F3ZqgOarQmHGZeqOO1fPBBScj0PJZaSEQNggBz0mHmxTrmTDvgueuBBHHTw7A9svUb9wsBvHsgz56LNR55a5bJvviS1xxZYrwrRS2u0Yi1u6YKtXbfUD3ZQVeVJNHKK4zlFcpDLrteNtFaPswqeM8noSEjDTnId1vs7xlHTzkYSQc94VAeT1P+MIskBdz/7AmMuMP5uT7K57JcfG4ESfaJdVlIeRcCiaAhE8yo4EkEcR/6PYK8D4fWT2Lq9tkKh8bb/WXvDXRj6SJoTRBuRrLlUr9oEXigpWXK77fIH0lgdLWPKaNbpXbGovxuCz2nktqpEwQw/0ajHXgjElPbJJYEG5magg9U4gaq75M2l14/Th/svJ1SEIQ7a7O2Ld9KG337iDbqja962iI+qGPOuCSGJGI9GmpCpnjl/iS9x6D7kRS1sxbWnAi8vhF3n4fUktDfVfFTAc79YlsJwnpTP29TuC+JllaY/GmF+kUbbhT373NTiakLb7cDDn7pDO98/SDnfjnC/s9cuOnPEoSPQonJODWRHI0EjUd8pJZM8rV27JdbCDBelDHv8mk+KJKAbkZ+3kEC5ntEcurt4p4zsH6ZBk9i199uL2tcsph5qU5wze1m8e0mhfsTvPLfjvDQ779HbvD2xft/VDP7dIy/qdLzeIr0XoPGqI2sSQQ+zL+2PgbECXy4/K0yRq/KyG/l0fMqs7+ur6tk2vUkcKHyQYvOI2XDzOmlz0/WnMvkT6s3KB0mGxJdDyTbMwv7kN5jEOvTmHutvjCgbrsgxLpVYv0aWkZByyokt+kU324w//q18fy3p7Fm9qU6jYsWye06Rq9GbihO46LN3GuNFWd33ShEW2C0jb5N1qr9b1W91cGVfqP0bmPZ5FRBEARBuGNkmcZ+aOwHXJ/UKYidk0jN+6TnTXzZpDiscvmIAbIYNksQBGEj8BMyl74A+15t4k7qzP8fgyQfq5A4HN2oZZ03qP86h99UruuQaj9UqTkXrdslcW8NeyKG15Q5/+shUj1NMv0NYpn1E2AsbG7/4T/8B8bHx5EkaeFhX4qYKeQTn/jEwoP/yy+/fEfrKAiCIAiCIKx/srZ4D3luKE0joVJJ6rQMBU+VFwY2numK8+ahbh44PofxRIrRvyrhNX1mfrUY6CApIF35vMAOCK55phr8TBzFkEmYDjOFOOeH01QyOj3zJvsuVihlDMZ7E/SUTMp5neneODPdMY4cLzI43e70Lyd0pACyLZsds7XI9RnbE8NTOxuMyqj59J6y8aV2x6D/dhyqCvIjTaTtDiR8+vPzS97Ts6fEfQfOLllmWhKDD8/gOTKSHCArAe83hhdeD6oy/qiOvT2A5DrqgfR97r84S1+1iavIvLJjgHpsdYMACoJwRRCgOz7lKYfSscVApdpZi+SITmJEp36hnUQf+DD9yxrTz199752v7q0gKWD0qLgN/yOP5i7J0PNEiuzBxcEIKh+2OA2cGOrC0hT6Ki3SpsNYf5yJ/gSFssV8XpyzBEEQ1pJoo974qqdMtKxC9aSJ1/QxelTMKWfhWa70Xov80QSJEV0kpy5HBueoi2SB9r4CEjhHXDETmyCsI9acy8VvFPFM/44MDJTIm+x66jJnnttJ36E5ctui27EE4bYKAhLbdPJH4pTea904IXsrkKH+lE/hG+2Lc/VzHrH3JOLvyTTvAzqfQ0UA0iWbnaeaBEClS2y82yHwwHo+jbLdRr+/wbm/r+A1fcyZ8D159aSJNesy8jt5iqO5dZ2c6msSMy/WqZ616Lo/QeauGIohI2sSalJm+pe1ddNWas24XPqrIl7Lx2utk0oJIZImMfyFHGpaRlIkkMCccrj87RLmVPt4kXWJ7N1x8ofjKHEZ3wlwqh5uw2f6VzWqJ1Y3od1H0RxzaHaQNydrElpWEc/hwrqwVu1/q0pOrRw36b7HJXNXDK/lX5dxLgiCIAhrTJWpH4ILu5LItk/fGZuuUZfuUZeu0fYNXyDD9F6dqQMiAEIQBGFd02XyX57DumBQ/XmBxks5zONJjH1NtL52Mql9KYZ9KYZXVkECtctBjnlIMqAEaD02xs4WWlf7GqBvN9GHTOxxg0uvDV/zZQF6ymHHI2MM3TN759f1VgtYNw1/t9QmWKfvfve7C/++5557+Na3vsWePXtC5Q4fPrzw7xMnTtyRugmCIAiCIAgbh13yKL3fJL3LYNdYNdSZNP18Dbfpk9quk9imEyRl5l8PD/Zz5i/uDy0LvMXPmmjZHBwt0VM1GZhr0Tff4rlHhxgbSjI2mGgXkiRm+uIkEhZxbIymR77SfmZzFIlcM3owIFeRuDyc4OL2JFrCQ2PpjADb0uUlf8sNyP9cQqku1m/kTYvgShSS/2oCXm0v/yUPAxDf1aDw1BxqyuOyU1jyeW9XR0J1OlfpXrqgDyrFOBSXLnYcJfRezw0vi+KZEeX8iMTciOcfo+7z+MUx4q5HKWbw2vZBfE1a8X2RQWwRXym1wnULIoYGlqKCtaOGEA46SzgOlJt72Cskw32Uj27vbGaTH40eDC2rOOEVC7yIZXbEBkgvDUzwG+HuVyliewRyxLp3OByz5EZs36jfWg1/XiIiwLYnvTQAaqocntnSnI+Hlklep+sVsShimaKEVyIXC49wbz09FVq2k6XLzn/9SKjMrj88hqSC0aORPxxH3WXgVK+bkSSAxiWbxqWI89cGbZtI7zeI92qkdhsosfY+PPHjCo2LNz9gW9/H0qT3xpYsUzMKMdnEiik4cYlz6RS667NvrELfrMmb93VRT2l4Zvg4yqbDx7QSsS9ZTvj4arXCM354bsTxG7HT2VY4IFOKPPctXRZEHNOxjBVa5tjh+nr18LIgqr5R14eoclEHfyeXpYjzQ9RHaamoYyFcN6cS7ndTk+HALdcMr/+8lwotayTCv2suufR8MNQVnuNBlcMrUdbCQWGGGl42NZ8NLQti4XJ+VJhN1Pkw4rpvy0v3uXQmfI6rWsnQMrkRdZ0OV8O97p7E7/AeZfFD2bDnujtmg28f0Ua9CQRLZyhqTVx3rvXbCV2xnlWFBG5Z9kMuQTxAf0cjiAW4B8VsdYKwnjjlO3tM9t89y/QH3Zz9+Q7u+1sfIN9km4VwZ1nzOuZEHEn1kbUAWfdRki5K3CNIRbc/rFeTz1XpeiBJ10NJ0ntiTP+qhjW7hZNcrnl8Srwh48evHJNiMInOuT7b3rHJjbX3o8s7Y9ixVT4nCpECB+xXU3gTGuoOG/e0Aa6E3O0gFzwaF8PXMEkFNakQ61XpeSJFIt9k8NDMGtR+9cwph+pJEy2noCZksgfjZPbFqHzYWkgoXA/s4sa8n1dTMmpSxncDnJK3ZCDZDU0CLaMgaxJu04cgoO/ZDGpaZuzb5fZs4UE7uRsAGQr3JcjdE0eSJaonTaqnzXbC5zrdJskdOj1PpNBS7XNr9ZSJ7wR4po9b93FqHm7dx617i+u5noi2wGgbfJusVfvfqluiLn2jxM6/XSB/JEHpvSayIuM21unRLgiCIGxZvi4zeSjG5CEoXLRJz3qodkCi7DFwysZMyZS3iVGgBEEQ1jtjp0XX352k9vM89vk4zdeuCxCSAvTtJulPFNGM5Z9LZBkKX5rF92GkXqI6laIxF6cxl6Aymeb0z3Zx8dVhdj9xie49ZVRdPOcIt9bx48cX/v3P//k/Z9euXZHlenp6AAiCgJmZjdEQLQiCIAiCINxBAcz9usHcrxsgQ7xPY/hLuYWX+55Jt4v5AdVTJpUTJlbE6NxXyb6P5vrsHaugOgGG62HYHjHHQ/UXe9/mcwa+dCX25wZRXTvONFG99nt8WWImazDdE2c2b+BoMooWfs5SO+hRThxfTEz1EgH27gBrt49kgXFGJnY2HJHUOp9kpqoy+PvjK37+etdTaXD/uVlk4Hwhy8m+q4m0G7x3VBDupCBg+Ms54v2L/QKBH2Bu8iBPOSbR/7HFZOPAD5BkCanDGatvRE2HAxmTwzoff3tyybLjO3K8cbSLx96Y4/DxEq883PuRvlcQBEH4aEQb9dbQuGjT/UiS7keSFN9q4jsBr01sX/Y9CWPlQSu6E+FBj65leSsnOqw0hHhvcvlZowrxlSfS8FcYKGeyuXQgFr3XZwSXqhWj0ry6DmLGREHYav7Tvp0A6AWHkd9O8e0/OEDp2OJAIk+/Fx5U5HpFO7Hs6yudnwAOpMODMV3rZL1/5XpYy9ejk/O16y+f/ddylo+5GzNyK36HssIAXROP3PhcrCRk0nsMmvt2EOvWCIIgcjaomXyTh37/fbSYy+y5AuWJNLmhGlrcoT6XJJFrkRwODzR0LTtYOcy+4oQH9FryOsv/JgD/6OzJxfJTKT746V6MnhzbDk+x84FxiqmVP+NvDvasWGYjmH+8tPBv/2ic7odTxE6298nmmM38ExX8Xxdu9HYALkx0L/s6sGIC+q1IDoscYO46vr38Mfn8mb0rf0Yj+ph87PQE+aaLrUq8fTRPPa3DDW77LG/5fT2hLT9z4EwrvWI9D+cmln19KBUehOp6JyrLnwdbXniwq+vNmuFBsq6V0Vc+51/6B3F6Hm0f+86xxW03+i996ufg4WMOrTfSWKfi+KYcGnBM22bifszktWAXVKO/o5PrRja+/AySDXv57RE1ENz14rQHqsvsi+E2PNymT+OShTXvbu0E+o/g3F8eRfYCBmcajEw2yDQWjy9PAnvCoTXlYE45NC7b6zYx80ZivSqZAzFSuwwUY+m+71k+kz+tYpc8lLhErE+7kpyrkNqho2UUSu+3KL/bXFcz4Op5hcL9CVoTDrWzFpIMPU+mSO0y2rOrjtroBZXM/vZxAu37lWvvT9xmO0nVqfnY8y7Ncbs9u/L6WU1hk1ir9r+bGiZt+pc1hj6XY/ff7SEIAiZ/XKFxaeXpigVBEARhLRR36BR3tP8dL7nc9asWqXlPJKcKgiBsELIK2U+X8J0S7rSOM6ODD8ZOE7Vr9Y1csgzp3hbp3sXGRN+HMz/fwcQHvZz48V4gQFICBg9P0/v03C1cG2ErK5fLC/8+cODADcs1m4vBFbZ987OYCIIgCIIgCFuAD61JhzN/PovRrZIY0TEnHeyqR+AE+PbSHs3ULp3MXXGaYzaDsw16yy0G55tYqozhtnu3XVlitCeNqStYmoKdgHJax1eudiDfuJe0eWVk4PcezDAZXzkYpVP1BwKc/R6+AcG1sV5paHb7mPf4yFUJJNjfM4EzrzP3kz78iNlAN6L7z7cTU98Y7mcuHZ5NTRC2KkmB+IAGsoTX8lGTMokhjdq5awJLg4BUw8XS5YXE1MvfLuHbAZ4V4G2yQZgL9yXoeihJ7ayJpEokt7UD0Oyyi55T2yPOnzZx66sfpl1SwOhRcao+Uz+rsvOPupYt7wOHLpbhYvvvcztv3XVBEARBuDmijXprqBxvocQkcvckiA9rXP5Wea2rtK6lL/i4cajsEdOwCYLQnnGt/F6Lwv1Jaucs3NrmembcDHL3xOl+OEkQQOOSTfHNCo3R9v2KrEnImoSWUVBiEtu+kOStbx7Cc2SapSvJnW8u/bwH/m/v3uE1WFm2v86jf/QOl94a4vzrw1x+b4DUjhpd9xZJjTQ21GywH1XpnRaKIZM/0v79pn8lBpC4If/K+UqWF/7OtGwsVeHFpzZH4vJak+cl1HEZyYfYgXbfQ+OSxdxrDbSMQmvSwbcW+09a7ybBlUk8WkHSAyQtQI57yDkXJeVTd1caumWdkCC922DutTqld1ZO3BWWl9pjcPBMif65FprrM9MV49y2NI2Ehur5ZGs2w2emSe81KBxNYJddpn6+MWbS1rIKPU+kSG7TsSse5Q9atCYcfDtAjctImkRr3MZ3ArofSZI9HEdWJHwvwK23EzYnf1bFnl9fU4wqCZmBT2fQcyrpPTHSe2MU32qQ3h3DLrlM/GAxsV7LKjjV9oywkgxKUkZLK6hpGS2loKbaf+fujdP1UBKn5jH50+qG+H2FjWOt2v9uKjm1edmhOW4TH9TAh4FPZ7n49SJuXTyICYIgCOtb/6n2xbM0fFOXQEEQBGENyRrowzb68K0PhJBl2P/Ji+x+epSp4z1UJlOURjOMH+tHG7DJ72sPU2c3VC58fwQ95eC0VLSES3ZPhdyuKvJ6ubQEsMIgoxvTJlinVCpFqdQe5bNYLN6w3LWjV2UymRuWEwRBEARBEIRrWXMu1pyLmpTJHYyhF1Scikf5/SZqWiXwAwoPJDEKKskRnZ5z8wAU0wbppk1TV3AVmUzLwXBcTm7LEUgSstF5J/DlXXEu74yDLMHKE9p0TgYvd+OX/ST4yfZDg551UFMueq9J5r6VR1rfCKZyCYZKTfprDZGcKghXqGmZnV+NTo7MHU6QfWuGYwcLjEzU2TG+OMvX5E8qmFObN9Dj6qjs6T0xmuM2ktKOWK2cMMncFcPIq2T2xcjsi1E7ZzH1XBVZk0iMtJNY6xesdlapBIlhndQuHSUmtxOB+zVkXaZx2WbihxWK7zRJ7zZAAS0ZHgzAk+HUcJa06zA+EKeaWXnmCkEQ1thmbVu+lTb49hFt1FtD4MP8G03qF222/WaO7ME442tdqXUsNh9gFiRQtlCmjyAIy5p/s0Fqj0HP4ykmf3yD6eyEO042JPo+lia1w6D0brM9O/h1A/P5VoBvBQux7Hd/eoJzr27DSDk0S+HP3PXo6J2o+k2RZdj54DgjRyeYPNnDmTdHuPSd7RgFk/SOOtn9FeI9y8/6ulnMvdrAdwO6HkjS+1Sa+TeWn819q9Ftl8c/mCTmegS0B5+sJAxyTQs5CDjXI+7nbwVlQiL5XLttyzcC5JxEa8ph8rkqgdse3OBakgSpZ8vUf5bHGTdIf6qEpG3QB8oAPNMPzYAp3JyuBxLoUw0meuKc3Z6lGV8acFjOGKg/OwuA3qXQ93Sa4S/muPRXxXU7aIakQu7uOIUHkrgNj8mfVqifXxrfadFO1swciJE7HEdNKRTfalI9aeI1P+J6ySArEpICnhUsabtR4hK5wwkSIxp20WPu1caqv6/rwQR6TmXmxRpdDycxulWskkfpvSb5exL0fyJN7ZxF45KNU1k8FwQ+uDU/+neTINajMvDpDAOfzHDx6zduo7mtRFtgtA2+Tdaq/e+mw6fHv1dBjoGaUhn5So6hz2e59I2Iu3dBEARBWEecmAx47H2phR2XaGyXKO1V8GPiwUkQBEEAVfcZPjrN8NFpXFvmxa89wOVfDGHkLWQ14MR/3QdI7Rhrqd2YUT6T4xIBetYmf8Sh9F6rHcR3HT0v43vgVtdnQ5Fw+23fvn3hwf8b3/gGDz/8cKiMaZr823/7bwGQJIk9e/bc0ToKgiAIgiAIG5QERrdKaodO7p4EgR9gzrhkDsQWRh4GCLx2b9rca3Wmf28bhy6WuNybpJbIc9elEt1Vi5amMFhskjSn8BSJuO0Ssz3kG3TEvXxfL17iaj3as5euNVkPGPjdibWuxi1zbHs32fok2yo1SokY4zkRUCQI/R+78SycnuWTweGhd2dDwT31S5t79rfqGYvMAYd4v4aaXOz36Hk0BYA57RDra88ga3SrKAmZ7b+XXwguc6oezTGb7MH4ks9tXLIoHmvR/VByIQG2OWqTPxLHvTL7rGf5uEkV1fWZz8X4YFce01DRYps3GVgQBGGjEW3UW4s161I7a5E7HIMgYEtNs9ah9EWP+HzA5GPrZQRaQRDWg8CF2V/XGfx0luQOncbFzf0cuRHoXQqDn80iqxITP1ycKXUlvXuL9O4tEgTw3vf3M326m4f+4D18TyKWtkjkLIpe6jbX/qNR1IDhu2fw93o0JxIU38tTPpml+H6e3b9/ASO/ufZPWZOI9at4zQBrfrE9ofhmE3PapffJFCO/lac87eH2rWFF15GjJ4sYrsdkJkEgSXTVW3TVTTxZ4sRgngu9OQzEbJcfVZCEQA4IklD/gk3l91rY8y7BMs1exm4TSS1S+2EX1R8UyH55/s5V+BarnbXI3h2nfsHCnA6vtBKXGPntPEjt87Q1J9oDb2TqZzX6f7+LQsUiXbdpxpQbPqvZ8x4zL9YZ+UoePa/i1tbPOV/WJTJ3xUiO6MQGNCQJyu+1mH+zccPjovBgksLRBPWLFhM/ruKUP9oMqUpCpufRJKk9BtKVbei7AW7Nw3cDJFlCzyn4XkDjvE1iRGfwswqX/6YcGdt5I7WzFqmdBr1PLvZJdN2fYOaF+sK1Kb0nxvwbDYpvdTZyb3xQI3sghppUmHmpvprVFoQVrVX730dqWfFNsE2X2hmLzL4YuXvjlN8VNzCCIAjC+jV2JMb8dpXBEzapWY/CyYDcGZ9zX9baQ44JgiAIwhWq7rPrscuc//U2Tn1978Ly5GCdPV+5gCyD25Qpnc5ROpulOZmg+xGDroeSWPMu5fdbWEWP5DaN3N1xlET7OlM/ZzH1s9rtq3jAhh+9KdImWKennnqKY8eOEQQBf/Znf4bnLW1k+8//+T/zve99j3feeWdh2ZNPPnmnqykIgiAIgiCsU5/+IDxTw0/ubicpDn0uS2JYx3cDLmzPcH44javKxE2XZ96aAuBSX4Lt0+1O0e6HU7jlFh+O5AgC6C61aMQ00i2HuNO+T801V+7kdmWJlqLgNLXQa7Ic7tl17M66pU7O9YaW+X647U5Twh3XTTc8M990c2mQWbmeCJWxrXDdArez9sIg6nnFiwgmiPg8yYkoF/o8mZdHhnn2/EUOT85S1Q3qMYPg+kzgToc3jqxveJEUlWkcRCyL+F7JjSoX9XEd1NkOb7dyMx5a1vTDv31CDu/HA5nwseR44Vkfm3UjtCyIqEtovaLiSKKCMdSIdY8YPV9Sw8dS4ETUI2qbR+1fEeKqs+TvqONXTjqhZXpE0qHVCP8OQcTxEHXctGqx8Od9pX0O6306RfZA+3evfyaDZ99435l9uY5b9+l5PEWh4F+pQ7DqoJMNyYex75bZ+3/uQc+1z2tOzaM16ZDZF1tITL3q8R83mfx6ewbaxN52EEysP4aaNrGm279Hck+d419pn5fTP2mRvStO+mAc2YdWRubsF1OoVoAblyhZi8emikMKJ3T+1vXwfqMp4R8mqYeP3+F0ObTs5EyH0agR5xvDCNcliDjPtULnl4hrnBM+j6ha+PM9JVwu8pi+0agQ1/MjjvOIZYmupYFRcsTn1+fD18fI836H/IhjP+qcpkQsyyTM0DLtunPTvYXwPICGHN7mr8zsDC1zIu4rEsnwd0bdf5gRP5fXCv+uUfcCgbm0XF0On/ekqOtDd8SMSBH3FZ659H7Gj7i/WdZmbVu+lTb49hFt1FtP7bRJZl+OZN2jkRYJmNfSqgE9b3lUd8g0hkTiriAISzUu2DQuWfQ8kaI1LibtWUtqWmbocznchsfYj6sLAyR1qlU1uPD6ELPn86R76mQHahtyvAZJguRQk+RQE8+WOfc/dzL6/W2MfGEUIxdus9mIcvfE6XlssR238mGLmRfrC/fgzcs2F/9Hkb3/Ww9qUcLt2+A35x/R/cfn6CmbSEApYfD2LpGtezv52YDG5x1S39VRJ2XMyc6OO23EQs45uJMGzrSG1rcxj9f51xrEelQGP5Pl8t+UcK6bmEFNKqjJdpvH0OezXPpfJbxVnq+3CmvO5eWjvRw4X+boySKzeYMPd+dpxcPPa1pWIXug3XbkO+vnnJfapdPzRBpZl2hNOMy/2qBxyQrtF0vIkN5ttM/tL3z0ZEyjW2Xo81mCAOZeaeA2fAIvQE3JaGkFSZUggMrxFrWzFr4dYPSojHwlT3qPQe1057OPt8YdLvy3edSkjN6lEh/UqJ1pv79+zqJ+zmLoC1lSuw0qJ248E6wSl8gciJO9K4aWUbCKLjMv1qgcD7dJ3jGiLTDaBt8ma9X+d0tanaZ/USO5Xaf7oST1850fqIIgCIKwFlp5lXOPqeD73PXrJrH5oB1HIHJTBUEQhOtsf3iS2N4G4y8MIikB/Q9PE+9aDIxTEz49R4r0HCni+/CT39xO7nAco1ul/9nFmWx8N6B21iI+oJHaZQC3MTlVWLf++I//mD/7sz9DkiSCIOBrX/vawmtBEPAv/sW/IAiChdclSeLv//2/v4Y1FgRBEARBENacBJLCsqNvA7QmHBLDOm7dI9VyePD4HDHbxbAXO0CvJqZCu0+tp2zSdyV4xZPAVWQ8VYIrsREzhRhj/Qn8ZICtK9i6jK9IWK1wIqq00XvpNgBPlXl12yCPj47zyOVxfrF7B54YbE/YolI7DJz6Yme62/SZ/XUdc8ZpB6leOfWN/nWJ7IEYgQ/VE2sY4HGn+XDxfxRJDGnIukTXw0ky+9pBTOasw+SPq0iqhFP12PNPFgPilKRL/vEialTS+GQ7OXVuv0b+gkui2N7IM/s1AlXCUTdgZK8gCMIWJNqotx7PbF/XFU88s10vf8LDM2D2vhvPVCQIwtY282Kd7b+bp/uRJNDZLFjCraXEJIY+l8V3fCZ+UFm4rq3G+Pt9jL07gJ6wue8rH26KU76i+2z//GUufXeEs1/fTd8jM3QdLa51tT6y5Pb2wFCTP60gGzK9T6ZQYjJTP68SXGkGuvr7BeGx0bYU3XbpLZtYmsxoX5LThcJaV2lL8DMBgRSgne68XV6SIPeVOao/6KL+kwK5r04jRYxvtd4FPkz8pMq238wx9IUcxTeb1M5bBFcSJq15l9akg15QIICex5JMPSdi427EjKm8c7CbnvkWB8+VefKtKaa6E0z1xFG8gN5nUiSGdLS0QuAFVE+ZWDNrn9hs9Kp0PZAkOaJTv2Ax81K9oyTkzF0xcnfHUZMylRMmSJDZH0PPK8iaROCDb/t4VoBvBRCAXlCQZKidszCnlnaSpvca9DyRwi57TPyw0n7PCmRdovfJ9gAI2YPxVSWnAgQeOFUfp2rTuBAeVHHu5QbDX8qy46sFpn5axbN8zBl3oa8ic1eM7seSSJLUntjk59XIWYiRQEvLSKqEpErIioSkgqRc97cqISkSsgoE4NR93JqHZQYwu6pVEzahtWr/u2VDok0+V2Xoc1l2/EGBnhfqFIc0ZrdroIqOcUEQBGGdkmW0ekCgIK5XgiAIwg0ZWZddXxhdsZwsQ+201W68kCFzl4ESk3GqPvWz7QaNvmfTpPca7SexFYLLb9pmHdFqE6zToUOH+JM/+RP+/b//90se7oMr08Vc/RtAkiT+5E/+hP37969llQVBEARBEIQ1tuvvdKHEZOySi2fX2rPYBWB021gzBvmjcZAkKidatKYd8vfGydZsZD/AlyUmuuNk6zYpc+mIqBJwuTeF5nqono/qg+b6aP5iJ3Jv0WR0MEk1G05GFdZGLR7jeG8Xh2bmefTSGC/tHlnrKgnCHaHlFFK7l85kO/HDCk7FQ9YlvNYNGg181nbU8TXkVDwqlfa5vznmoGUVvKZPa8pZ0sYiyZA6WKX+YYbasRzJvQ3Uvhtvs/IOlfIOFa3hk73gYWY3YDSdIAg3tlnblm+lDb59RBv11mP0qAR+QF3MmrqEXvJJX/aZP6wQiEE2BEG4AbfuM/9Gk57HU3hNGSUhZoC7kyQVBj+bRdZlLv9N6aYSUwF2PDRGfT7OzJkuXvyPD5AfrtC1o0zf3nni2Y07GZORt9n9B+eYebWXqZf6CYKNfz2b/EmVoc9n6ftYhpmXakz+uEr/pzL0fSzN1M/aSW5yrB3j6Rsb/Mb8I7JVmQAop3TObs9CQ8S+3hEKWA94xN5Q6X06Rfm9FnbJW/Ftkh6g72zRfCVL5W+6kRM+Wr9NsMdFSmycfdm3Asa/V6H36RS9z6TofixJY9TGnncJAkACxZCZf7NB1wNJmmPO1how8CbMdsV5KWcwPNVg+0Sdwdn2YBhWj0b9vEVz3KE1Ya84gO3tpiRk+p5JkxzRsUsuEz+u0LgYTtCMkj0Uo/fJNPWLFjMv1XDrHtt+M4fRo+KUvfaMsHJ735F1CcVon8/siockQ+5wAs/08Swf3wpQ4u2ZUWvnTGaer3c+o6wMsd52f2ftzK3fL615l0v/s8T2Pyww+Nks0J7t1i65uE2f1A6D+gWL6V/W8O2ldVYSMsltOokRncSwtrANbiTwAnw3IPDa/wZQkzKSLGHbNvynVVRctAVG2+DbZK3a/25Zy1NrzGH0m2UGPpEmKUukShbbPrCY2akxdk/8Vn2NIAiCINwyI2+1UC0o7RUP54IgCMIt5kP1w4iOjCsPrn1Pppl/o4FbFx1YW82/+Tf/hvn5ef7H//gfC8uka4ZnvdoI8Pu///v863/9r+94/QRBEARBEIS1ocQksnfHCbyA5HaD4psNWlMOsta+V9TzKrPP9dK8kFryvvwRH8WQyR6MUX6vRXLEoK7KzGcNdMdnaK7FXNYgZXo0YgqaG6C77eeQ08NZHG1pUpFieKiOT75q0100acZE0tF6czmfI98yGao1uHtihg8Ge9e6SoJwyyVaDhLQiKmoSZkdv9+e/WHyZ1W0tIJv+9jFduDXDRNThQXWnIs1Fx3BZM/qSwJY53/eg3tPmdRddWT1xtvWScpMHxRJLoIgCBuRaKPeWmI9KnbRw1c2fsLKrZC67FE47qFXwcpJVHaJWBFBEJZnl9rPUn5TEcmpd5IPA5/KoOcVxr5bwa3d/LZXNZ8jXzxFq2owc7bA3IU8Z1/azukXdtC3d5780RKpgY05M66iBww8NY2kBky/3EtiuEJzbO1n1rtZvh0w9t0yPY+n6P9YhpkXa0w/X2PgExmqJ02aYw5KrH1PExgrfNhmJ7eTUw1n5cRI4dayD3oEakCWOOk9Mc7/lzmCDk5RctpDyTsoaY/AkWi+lYK3Qbm/hXLIRFpHt6WK66PaAVZCgSAgPqCRuStGYlgj8MGadWmNOySGdTJ7Y7D3ShJexaV4rEnxzSZKXKbv6TTxfo36BQu9oNIat9szSYrm3CU8RebSUJpLgykMx8cHRv5P7611tUCCWK9KYlgnuUNHTSpMPlelft5a1W8YH9RoTTtM/riKmpIZ/lIOWZO4/DdlrJnomUMlmYUZsxPDGkaPimzIKIaEbwU0Rm1aE6u73vlmwIX/Ns/AZzN0P5JCUiUqx1u3NPHXbfiMf6+MmlRwax7dj6aID7QTYoMgINan0ft0GoIAJSYjGxJKrJ1sGwQB5oxL+b0WrSkH3wkIriagugG+t/h35PaX2wmqnrLGmczCurEW7X+3tMfInnO59I0S1R/spDDqMHTSpveCQ6VXRXMCHEOi1itG2BYEQRDWXvc5i8JlFysNc/eIIDtBEAThzph/vUFyh05mf4z0HoOz/3Furask3GGapvGXf/mX/M7v/A5f+9rXeOmll7CsdiKzrus8+eST/MN/+A/5zd/8zTWuqSAIgiAIgnAnpffF6HogufD30OdzC/+2yy56Tl1ITI0NtlCzDoruM/G9BMkRncCDnsdS2CWXFx8bAkmCIKDv5XECCS4Mptg5UefiQIpU06GS0umqWeiOh+761GMaU4U4iuuTaTiUMzqzXTEAdERH5nrzXn8vWXOMbZUapUSM8VxmraskCLdEvmry6IczC39XEhqZPyos/N0ctUOjigs3r+fJFJP/s2fJMqeoM/d8L3PP9zL4O2PE+jbuLDKCIAhCNNFGvbUEPihJmb0nakwOxahntm7cXmzOp+9Vj2a/RPGQTKNfJtBE0q4gCNG0rELucJzswRie6aOkRfvYHROA/msNdUhm/IeVGw62tFrxjMX2+ybZft8kriMzebyXS28PMv0/u9GSDr1HZul/YBZpA14a+h6ZwZwzGPh0lsqJFsU3mxu2/SRwYeZXdSRJIn80wcX/XqR1t0P+aILmWGUhycff4smpO8eqyMB8dotviDXi7PUJ/peNmlY6SkwFMHabGLsXZ2v0TYnKa3m8VxP4Zw20z1eQ1sGtumr7HH6jQqrm0UwqqK6P/qUcdsWjespCkmknCqoS9fMWepeKnlUovdtOSr1q9sU61qxL10NJMvtjV5Ym8Z2A5mWbqZ9XF5IPhSskCUtf+1h2JSaRP5Igsz+GEpfxTB+37jP50wrm1OquydlDMVI7DeZea6BlFYY+n4UAxr5Txqne4OAJWLJvNMecWzbwgtvwGft2me5HU3Q/lCR/b4LSsSbV0yb+Tc7Qfj1zyiVzl0r/pzJoKQVzxmHmxTqSDMmdBrEeFQIJz/SxKwG+1R6IszFmf7Q6+ODWfFxxYAlXrEX7320ZzjTzuQu4wGUddv3dbva91lp4zbMazLxYp352sSOrFfEZN/LAybGOy9b8zmds/cH04VXUAvyg8yeQoUSl47I5fTVbAyaa2Y7LztmplQtdcVwaWlU9VmPCzndcdlAvdVy2X+18OwOctAY6Lnu62d9x2aTSeSetLK3uItITr3dcVpM6Hy2q5a3ujvZAfLzjsmN2V8dlx61cx2Vrzuoeqlazreeszo+VCa3z/RngaHa047JVJ7ZyoStqdufb46Xi7o7LArhB50Py9CWqHZfNqKsLaGh4esdl3z0/fMPXtk3XGJmpk2k5uIrE5U8qSIpEJ0O5NN3O6wDQm+78mM2u4vz/qe4PV1WPHXrniU8/1w92XPZEtfNz42qumwCTZucBdW8Xt3Vctums7nzXl6h1XFZXOr+pj6udPyxVrc7PBQCvze7ouOxqzo3aKtYP4LnmXR2XTeudnw/Gq53vGwPpzn8/ANfv/OF+NedGeZXDfU2and/fdRuNjsv2Gp2fk0abq7u+VZqd33drcuf3KO+UOz++AR7vOttx2X613HHZmGx3XPbZ99PLvu7WZSb/ex68gNQ9q9tHOyUF7f82m822Tl/+8pf58pe/jO/7zM/PA9DV1YUsr6PhEAVBEARBEIRVOfeXR0PL+rsqKJZPsuSjN33idY/knEesGuCpUB5RmR3QSB+zoOHjKXDi6STGLOx9v4FlyJz4jS72H6sRb/o0UgrWfBJjwseXINivQstFz7afafW8yt3nS5wbSWPGVE7tzrLvQoWecvvZe8dk+9mwu2IBS59JPNNHibXvRxtxhfcP5GjGVVR1aZuARbh9JfDCbT+eF37ODiLaiBwr3FVlm+HvUNTw86SjhL/j1Ex4JlH7uu8I3M7uu4Oo55CIdUWJKBjVHhZVLOK9krvCeyWZl0eGefb8Re6ZnKWoJbFVFYh4X8RjeKctdZ0+hgURvY1Bh80s0nURf5GbzQivRKWcCC37kRlu24z6DQM//PvLSvg75Ih9zov6vPrSDSBFrkTEsoh9STIjNlzU/qVH/LB+xOc54WXNy+G2ixPFpW07SjzcFphMm6Flg5kqaiMgf8KjtkPGMyRiZyVqXSrFocX29LnZcJte4LR/h5jt8uDZaTKtcJtptumAJFE81qR6wtywgZVrof+TGdSkTOOiRfn9FoEHpR/sXVJm+08ruFrA/OMSBJA6HWBMg3qlu+L4G9uZuL/d/9SKaFtXI9r5lIgGnK7r+kp0OWL/0sJtxLGIUd7tiDbcuBFuu2tERKlGXYOilvlRx9J1i2QtvO5uI+L6GIv4rIj3Rp0jrh4jS0Scl6JEfYcsL/1trIjrbxQ3olwsFf69HCP8uypaeFlvLtxOHdX/4ETcR1wvFdEv70RcgJSIfTUXC/fLxdTwPjffCF9v5Ij6ekrE7xVx6r/+t7n+dwEwMuHzredFfH5E97By3fXMW0X/C2zetuVbaTNtH9FGvTWUP2iRGNIYutxi6HKLyoctZn9dDwWCK78cXPGzUhHX62tFXeOvF3Utv9ZAfPnYr1oHcTQTjXBfq+QFDL/ZopWXmfhn02K2JkEQQgZfXXxW1t5R0d9VCdQA5x4Xd7eHqWmRbSzX6o8tHzd3orxynNWoWlj29U7ir2LK8jFJirTyubQ7vnwsStEM3ydfK75CHeDGMTrqWyraOYXJX1RpjX+0ZJSv7d23Qok6iW02yR06dn2AC9/vJfDAs32qJ0xq56wVf/dO3P/OyjGH+1f4Wfq15a+RvV+s8cLz95BPxig8o6N9vopkLL3gfXD/xpn9t3rGJHNXDKNLpXbWpPeJNDv/dhdqQqY16fDG3A6C4jLHQwfX+si232tEPdOGPiOinXHJ610rP5N5zeWfz4PS0v1H9n32XapiyzKn0t1QkkFffmWs+srxxW+P3zjmFmAg33ls8I1o0vLbtJP7yZq1/Lr8urRzxc/4wu4Pln09rYSfy6/VOJaiNpxn/Ac3Pi5fvbeTONUaRm+L4S/kqP2/UhTfbmIV3YXzjs6lDj5jeeXvLB/D2f/lEwv/lmQY/nIOvaBS+rCFrEqYZkDjso05eYPzsQyF+xJ0PZDE6FKZeaGG12rvj9WTJtVTJnpO4cN/dj/ZlkVXo8VerYT/8D5G8xlsRQZJYu8/eu0jr+tGsvur76x1FSLF+lWGPpcDqf0s2bhg3dRst0pMoveZNKkdBqX3m7TGHIa/nMNr+Yz/oILXWLvrUeC2k6dLx5oU7kvQ/UiS7keSNMcd6uctzCkHu+Ituf4rcYncPQni/Rpey8ecaZd1mz6pHQZuy8eabbcrpnYb9D2dpnbGZPLd6pJBNszp9TfYiWgLjLaZtsmdbP+7LcmpV/k2zLxYI7M/Rv2cjZqSyB5K0P/xNPbRBLO/rtGaWH8HmSAIgrB5HRwto/jtu4bjI3lSaufJWoIgCILwUTXPpsCTyT5eJHOkCiRXfI+wucmyTE9Pz8oFBUEQBEEQhA1FCgIKZYudZ1pkplwkwJfBSUg0uxTmd8lorYCu8w75Cy5X8xLMtEx63mNsMIEvSwxebHHk5cUAh0TdQwJqaYX3H8yizUo88P78ktyHbVNNtk01mc0bzBZivHKkl6Tlkq477Ll040FyriamAiRbHo+83e6gevPxHM30be1OElbL97l7egYlCAgA1ffpfFglQbi1UmM+2fPt/67qu2Tzdo+Kq6/cua07XmRi6rUKRxIUjiSYe7VO6djqBvrdiiQV0rvbgXrxfg2jR2XqufD534nJKAkPp9C+ipQebc+6bc4ZSAGY2Q04XYwgCIKwaqKNenNzyh6X/lcJLSWT2KbT/WgKLaMw/v3VTQCwkel1n+E3LPRGwPmnDZGYKgjCiqQruWTN37EiBwQRbh/luIL2gYb9oE39z1c30MrNal62aV62qZ+zSO81CLz2zLn9H8/Q/YhH9YyFU/EInADfDQjc9v99JyBwaS+78tqtSGS9WYrmoz7cRN5r4Xw/g/PjNNpvVNfFTIw3ozXp4Fk+mQMx5l6toyYUIKA55tCacAh+d+u2WRwZm0EC3hvsATGwzB3nzGjUXslRPNakefmjt8pbMy7Tz9fofTrFyK48vhtQO2NS+cDEmr+zOTbJHTqxXo3Rb5YWEu1W5EPxzSbWjEvfs2l2/GEXtdMm9Us2dsnFrfvYJY9AkignYpQTMeKOy77ZEvtmS8wm47wz3Hd7V0zoWPZAHFmTKB9vMf9q55OmXKXnFWL9Gl0PJkGCiR9V8CyfoS9mcSoe4z+o4Fvr44HMrfnM/KrO/GsNUrsMUrsNep9KIUkSvhu099+aDzIkhnQCP6A5aqPEZQr3J+l+JEUQBKEBWAEqJ1vMPC9yE4T15U60/932aILqCYvqicWHhLnXmgx8KkNyu87wF/MEwdIbct8L2lMKN30mflIBkbsqCIIg3EKKHzCVj/P2ni6QZfYjbgAFQRCEO0e6Mkq/kvxoI3wKgiAIgiAIgrD+aI7P0HSDrrJJvmqjegGtjMzYvQa1XhU7IaFeNwPi/B6N9HmXrssu8bqPZgZsf9dk+7vtkbkD2l0o5W4VxQnIVtojh6drHo/8sriQ1NqMKUz2JohZHj1FE93x6SlZ9JQsHEXizSPdzHYZXBpO8vgbM8RsH6fmoaUXZyjwbR/5ukSyqZ4YrWSHU2AKd0S+2eL+iSk036euabwxMHRl1lRBWBvlfTJml8TAr12uncRw+/stLh6O42nLBwtWkwY/PLod3fPasxpL8NTJMQwvHNGZ2KaL5NQOBG57lhflyjk9PhieoSU/aZOseFChPSWwcuV3kiSsrAhsFARBEIRNxQen6lM5buJUPIY+nyO5Q6dxcfMPcRMreex6wcSJSVx4MoaZU0SemSAIKwpiAYEawAZN6tuo5BkZ7Q0N524H79DKsyfeaq2JdtLjVXpeIXc4TnqPgZbqrH008K8mrQb4Lu3/OwGN7/nISR9tn4k6fHuvv3LBQ/tsFecHGZyfptE+XUPaiE2HVxLeeh5P4VQ95l9ffZLUZpMyLR65OInu+9R1jZmMGAx/LdTfzqBk3Vu6T9bPWdQvWMR6VZIjOpn9MTJ3xaieNCkdaxG4Ae4qZppU4hKSKhGs8lSqxGUCL8Aurj55pzFqc/HrRXL3xMnsi5E9FAcg8AKcmkdmdIrpTJKpdJLjA91MZlLEXJeDU/M8enGc2YSM19w4sztvVpUTLTL7Y+QOxZl7ud7xPqQkZPqfTZMYbrdD1y9YzLxUIzls0P+JDOasw+SPqvjO+khMvZZnBlQ+NKl8aCLrEnpBxehWMLpU1KQCQUDp3Sbl91sLibWS2k5YVVMyjVEbxZDRMjKSLGGVXOz5O38fIwjrwZ2/5fRh8sdVZAPyRxLE+jQkZbFTUo3L6IX2Ad39YIK5V5p3vIqCIAjC5qS67ZklHFUWo0YJgiAIayK+s0n5xYDqa3mSe0Uw5Vbz9/7e31v1eyRJ4j/9p/90G2ojCIIgCIIg3GoPvTdLutkOYCpmdU7tyBLf0YIlo+Yu7Xj1DInpfTGm90HfGYvhDxczuzwJZod0Lu9J0H/ZYtu5xWeISk5lrt9gXo/jqjL1hEogt78nCAISpsejb88QSBK66/PoW7NcHEpyek+Wk3uyHPmwRGPUpjXhMPDJDACyLnNue4pKRsM0FOpJFSSJmCwG11lPHhyfRA4CTnYXuJQprHV1BAEkCbNb4sKXdGQzwDghM3TGomvCoWvCYWx/jLn88h+hex6uLONp7WBPV5FDyalj3ytjTonzUacu/LciyW3tfni7sjQYRnYDRj5oUc8pNB72FxNTBUEQhE1PtFELzTEHr+Wj5xS2QorH4DEbKy1z/qkYgSrueQRBWJk8LaG9r+Lu9kCElt05HmgvaQTdAe5962NGI7vkMfPC4qQXkgqy2k74krUr/1/4m6V/qxKSJiGr7eVSXMKbV3F+kEfdZRJ7rIacvH1JWHKPh/bpGs6PMri/SKN+skbExG7rXvn9FkpCpuex9szvs7+ub+kZ0O+/PI3m+1zIZzjRJ9qF14JbVbAuxMk8Vbr1MyX7YE65mFMu8280yR6M0fVgkuyBdpJna8qhdro9m6o150YmDWb2x8jfF0fPLqYHDf2iRC2nMjNsUOrRWO5k0LxsgwSZA3EqH6w+ps23A4pvNim+2URNy+hZBS2roGUU1EGfwxOzHJTmeHtbH3OpBADluMFDlyYZ/I0M49+prMvkxa3EnHYpvdckdyjO4OeyTHy/QrDCvq5lZIa/lANg4scVWhMO6T0G23+ngBKTqZ42mflVbdXJ0mvBtwPMKWfFfojAhcalxcEm3JqPNXe7aycInVur9r81Gw/Ft2D+tejE0+5HE+TvTS4ZhUYQBEEQbprv01sxOTBaBmAuE1vb+giCIAhblpr2ie9p0DqbpH7iNo1iGLA5G+Q3wTr9xV/8BdIqen2CIBCBP4IgCIIgCOucmpLRCyqtMZtz21J0l0xyNYd0w0H1gnZHvx+gXI2pWqZZanqPTr2gYDR87ECl2KPjXwmeHd8VxzJkmkmFal5bSERtNiPmfJEkmnGV0zuzHDxbxpUlVD9gsq8dxFDMtd+TOxQnd2X06qt2X6ov+fv1o12YsQ0YubSJSUFAU1O5UMgjr49YPUFY4Mckxu+KY6YUdr/T7geO1T3IA0FAquWguT6lK230mabFQ2emMdx2hMuHgwUudGc4PtTFQxemFz53/vUGrXHRb7wagRNQP2+DDN0PJem6P0H6eItmWqZrwkE3A049mqBQ2AppKYIgdGyzti3fSht8+4g2akFSQdKkFQOMNwO15ZMo+Yw+ZIjEVEEQOmb8WsPPBNgPiUaXO0kZVZCrMuYXzXWbFBy44Lk3d8O87d/5BAG4Z2O0fpGlfj5G6m/PIMdv382lPOCiPlvDfS6Df0FH2bUxZ0yff62BU/XofTKFlpGZeq62ZZPX4o5LzdA5MdC91lXZsprvp5F0n/i+JhDRN3OrBFA5blI7YxEf0pBkiezBGD2Pp5AUqT0j80WL8vstzJn29arwQIKuB5LUz1vMvdLAtwNkQ8L/v/SRm3M4+FaNZlJmelsMKybjahKeJqOmZdy6DwE4VZ/aaYuuBxN4Ta/dtniT3JqPW/NhrN2me+YP7ibmuNw9Oct9l6d5dccg1bhBw9B5c2SAxxqjDHw6w/gPK7c+8XeL0XIKWkrGmnfxWqs8XwYw93KD+nmLoc/nyB9NUHzrxhMNajmFoc9nCXwY+24Zt+aTOxyn5/EUlRMtyu+3sIsbICt1KxNtgdE2+DZZq/a/NUtOXU6sTyfwAxqXRCejIAiCcPN02+Xhk7OkWg4y7XuFiUKcye7blAwkCIIgCB0ofHyOiYsJSr/sRk0WcRuiVW2rCYIN3oIhCIIgCIIgLNj5R10A+F6AfKq0sLw56fCgOwcfLC0fxAKsRx287YvPAROP1JaUcQH3ue1kMJcsL8Z0AHQWO3L7//BEqE5n/ut9AIwXkuyXK6h+gCdB/6RJCw1TV3nlUA+D/+wUgROQORCncDSx8H5bk9CvBPg89M48pi7z/AMDBNLVmVkjOrOibnEjykXeCivhRZIULhj1vb4XjlZzWhEfeLO8iHX1w8skNWLF9HCHeyB3Fl0X6BHL3PZ7S0mDQsNC1Wx8e2kATBBRDzliHaSIx9Con1WOKCdFfF7UU60ftVNE7TrX/VyBFvWl4c+KJcOBMa1aRECQFd4fotbBi6hu1PbUclZomVNd+oNFjgCudfgcKEdVJLxIMsP7UlR9g6jvjTgQJXPpdvLc8OfX3fB2G4/YcQYzVfw9YF6QiJUDDDz6J0z2TpdIW+2+38v5NMo3xtDSCsZjqYX3HpwosufETHsbFtrd2HOv1ikdW/1I/VvdzHfuAqB7wiL/bp1St0Z20qH/vE8rLvPh0TRlw8BuRPzWZmfBdVHn9Kh4B0NZGtSd0c1QmbweDnLKqOFyb86PhJa1rIiTZgRVDR+cpqmFlmlauJx/3XkjMq4j4vj1nYhzUEQ5SQmf++SI82E2E04mNu3wOsT0cJxF2lh63pwnESqTjEecW63w51ut8LKo+kZdXMrNeGjZnq7w1AItN/wd6ev2HT/i88/UekLLPD+8n7sRyxp2eF9SIy6GQcR7JSX8u24fDq9XUlu6jccr2VCZKIVkxDFihI+RlLb0OuU0bE539A3CViPaqLeu1A4DWZVoXAzf1242V597/PAlRRAE4Yb8TIA6pmC8qBHoAc4Rl0CEmd12yikFr88jKGzeexRJAm2viXM2hjtq4FdU5PjtjZFXdjj422zcNxLI2zdmcipA9YSJW/Po/2SG4S/nmPhhZa2rtCba7fOb9xjZCMwzCeL7mkidtvV+RL4d0LjQPnbr5ywkGfS8SmKbRuZAnG2/FaN21qTyoUnh/gTzrzcovr20/WBmf5JL+wLSZZfBiyY7TjWXNrd/tQvP8qkcNykdazL7ch0lnmbgU1nMGYfxH1TwrVuzvqam8vZwH49enODw5Cwv7xwikCRqMZ3Jn1QZ/FyWvo+lmf5lTSSoroKsScSHNJIjOoltOlq63R7pWT5TP6vRHLNXfeowp1yal21i/dEPU7Iukbs7Tv5oAqfmMf6DCl5jMTG1eKzJ/KtiUERBWGt3uv1vXSanGl1qZAe1IAiCIKzGoydmSJou1YTGVD7OaG8KW1+Xlz5BEARhC5FV6P7cNLPf6Wf4N3Nc/O/Fta6SsA5EjVYlAoQEQRAEQRDWN9lYvIeTlaX3c57pAeFOW8mUiP1Sp/UpG3/wBr3rEmgNH6Pik5rxScx7KBaUe1wu3hO/QUbMNYIA1QtwFYnzQ2n2Xa6iBLBzss7OyfbMqHMZAyenUj9nMf9ag/nXG8T6VCr/7x3M9+hIPmy71GTnuQYx2yfZdKknRUTvenCqP89j56bYN1niZKZ/rasjCDekXAlaSo/73MfMkte2lWrw6aUJWU7do/R2E72gIknt2VKbl+3oZF9hWZICvZdNVCege8rCjMt8+GAGL5CQvQBfZuVriSAIgrDliDbqrSG126A15eBUN3+0txtr79OqKfZjQRA6Zz3t4J/0US4oKDUZ9ayCN+DjPqKi9orZVG8HqSShTCnYT23c5MnViH+qTO0vevCmNNT+2z+Bk/JQE/+bWfyTMeDGs9+td80xh7Fvlxn8jSzbfitHebbJdHcHbeWbTMQYfsIdYo3G8JsK+uDaDfIS+GDNu1jzLqVjLdL7DPo+lia9J4Zdcim+c4NjXJKo5TVO5TUIAhQ3QHUCVDeg559cIjGskzscJ3Mgxvh3y0z8qEp8QGPwc1m6H0oy81L9luVF+7LMBwPdPHZhgj2zJc70FgBoTThM/7xK/8czaCmFyeeqeM3N/8yyahKkdujE+jW0rIKeVdAyCpIiYZdd6hcsmqM2Tt2n/+Nphj6XZeaFGpUPwwOcrUSJy3itxd9ANtoJqUaPSmK4PcBb5XiLxmWL7IEYiSGd+IBGSSSmCsK6djvb/9Zdho7erSJrEuaMmDVVEARB+GhitocvwUuH+qDDWQkEQRAE4U6IDVskD9RpnEgTH1RpTdy6jiwp2JwN0pthnZ566qnIB3yAubk5Ll26RL1eR5IkJEniiSeeQBb3MIIgCIIgCOuWbwVM/LBCep9BfFBHTVyZ2fK9Jvl7EhTfbuL+f+L4MZA8kCxIuzZSXcLvv9Kha0Nyu44SkzC6NXKHr8wm9uNwR3HvqM2lu+PtmSaDAMUFLaeQGNIwelQUQ0aJyex9ZQyACwMpTuzIYekKw9MNMg2bq5N6dVct+GQG9wmf5iWbxmWbxkWLub72bHmBDJd2J7m0O0mrrm25IJ/1rJSOYysyg+UGJzNrXRtBuLGJJzRy5zyy59vz6C53FqlfsJh5qY7XEAFHt0LP4ymyH7QDgFxV4sMH0guv+Yo4nwuCcGObtW35Vtro20e0UQuSIm2ZIO9AkXAMCaO2wQ9cQRDuLA2cwx7OYQ9sUM8rqKcU6t/uIvnZEtq2rZFAeafIEzL6r3T8tI+3fWuMTiUpICV8AvPO3GPJBQ95n4X7dhxZa+E7G/e6aJc8Ln+rRN8zaY6eLFJJacwWYsxnY5QzOoG8Ods8VNfl8OQcShAwn4yvdXW2pMCD6os59CETY1drrauzoHbaIjGkk9kfQzZkJAWClcLPJAlPk/A0sIDkmENzzKH0bpPBz2UZ+kKOse+WaU06zL1cp+fJFJm7YjTHHaqnTRoXrZW/YwWVeIwzPXn2zZYwNZXLuXbbZf28zVijzMCnMoz8dp6p56q0JkU+0VWp3QZdDybQcyp2xcOpuDQu29glj+aYjVtb+pw3+ZMqO/+oC/cmnv+MbpV4v8bUz6sLy/o/kSG5Tac5ZtMYtdDzKum9MfL3JnBbPtaMw8SPKzQuinuljUS0BUbb6Ntkrdr/1l1yql1uX7FivRrIiGm5BUEQhJt2biDNvvEqT3wwzUt3iwRVQRAEYX3JPFqi/mGKwgNJxr9bWevqCHfA888/v+zrjuPwF3/xF/zpn/4pzWaTu+++m6997Wt3pnKCIAiCIAhCx5I7dLofSeK7Aa1JBzWlIOsSQRBgzbnEe9tdL7l745jvg+S0/5MdUFyt/ferEtgg+RLJz8ZC39HKSdT7FFp5GaMeoDUC5AYc/WkF9dqO/98v3LCeOybrVFI6Y71JLvemAJA9n0zTYXimwchMAzUuk7krRuaudh2MUzXGRhJYcWXxg0Ri6rozkU+yY65GodWgGE+udXUEIZKdk5m5X0ZtOhjTPvWYTq61NDCletqk9E4Tu7Q1AlDvlCAAX4JSj8aFA0mshLLymwRBEIQtQbRRC57lLwysdK2EunIAselpy77u+ivHYzQdfdnXL9a6ln39wuyNn4GviscWA9hnez26L1qc3p5ZGKSjf8VPEARhK5p4pHbjF2UY+lwW96+ylN5roSZkjC4VJCh/0KJx4eo5dPlsncFXV44JsLzlQ7r9ZYd+ulImWP58nNJXnvXPXeEz5BUi9kt2YsXvaHymxMhv52nNOUz/sob7rzZvsPhbR5duz8HPemijBif/tIXXam/Lh84s/9vbwcrP9rvis5HLncdLnDu3i9y9cYpvbtzZUwG8VsDEj6oktulkD8TYOWixJ1bDqXpM/aKGOdV5Itvp/3L/sq/vH5pe8TPmmsu3zc5dXPneZWFEyRt4ZPIymZqLrUlcvNcgpoZnJGzNrHDMdXB4Odby+2BPvL7s62eL3St+x7eL9yz7uiyvnA200uRujr1yasyx4vDyBT4+tuTP/H0Juu5XOf8fatj/z3B/zlqyfi8JxzyUpEz+3/VTOrj0XNH77MmOPsdrBYx/v8LwF3MMfyHL2HfKVD40Madd/H8yRL7LZmBEx1Uk7JhMKyFzeVeCal5j4MsnVvz8vf/otdCyytMpDjPH3vcmmR/WaI45mNMuo39dov8TGYa+kGX0r0vYxS3edixDz2MpcnfHqV+0mPp5DWu2gwzhK7cMkiKR3mPQHLcXrjnL0TIyg7+RxZx1qF9YvGfwLR+n6jH5iyq7vtpFc8Khfs6iNe6IJGJBWGfWqv1v3WXpdD+0eKOmZ9dd9QRBEIQN5OxwjomuBJmWw8fenSTREiOyCIIgCOuHGvex5z3iAxo7/1aBkd/NM/SlLF0PJT76k1qwCf/bAjRN44//+I/5V//qXxEEAX/+53/OT3/607WuliAIgiAIgnANNSUz+Jksek4l1q2RPRBHTcnYJRevFRDr0UBt9/gGboA2B8qVeB8vAX6Pj7vdxzngYj/oYj7ZnrX0qpmX6kw+V6WyTSU15THyqk3fBw6FCy65GXdpYirgewHmrENzwqY5ZlM7YzKXbc9+KgFHzhQ5fLa4WF6RKacNPthd4OI3itTOWfje4g33tkstHnlxHt3a4p3961zdaAeFJxzR4S+sf5OPqLR0jVzLZrSQ5s3tfQuvtcYdkZh6G9ROm8gBdM04BGJ8AUEQVmut24HX+3+bnGij3vy8lo+a3DrxeOM74mh2QO+4udZVEQRhI/Nh+vkaVtGj6/4EqV0GnhVAAIOfztL9SJIOckaFa7kw8KkMvh0w+VwVt7F5E1OjzL3aQNYkRn63QGq3cdu/T0u7FI6UyN+b2DT3Ac3LNpM/rXL+L+YZ/WYJt+4x/KUs/R9Pt5PHN5kAeOnpXnx1c/x+G032QIzKSXN9tmMG4CtQG5HJnPNIX/TQqjf38OqbAePfK+PbAUNfyKGmZax5l9E9Cd59JMfrT+UZ2xmnmlMxTJ97X6uw7XzzpmPcZn5VZ/z7ZXwnYOjzOYye9rHbTkKvELgB2QNituD+Z9NkD8SY/lWNyR9XO0tMBbR0O1F54JMZ+j+RIXto5W2pJGWGPp/Dt3wmflBZMktu8e0mWkZh6LNZggCaozbFN5siMXUzWOu2tvX43yZ3u9r/1s0dWP5onNzhOOqVkVtL7zWxS1vrgUMQBEG49Y7t6cZWi+yYrvPMe1PU4hqXe5KM9qXwxUyqgiAIwhob/XaJgY9niA9qaIaMLiskBnRy9ySYeq5C45JowNmKnnnmmYV//9mf/Rmf+tSn1q4ygiAIgiAIW8zIa+GRzmfN1MK/u3/hw5UB0z0VFCTklIKWUnAbHuacS/OyQ/n9FoELrX/aSyBLNPMyriFTrIU///CFMyS3tWeP6X3iyne9v/gsYMZl5vp1tP8yi13xcCoeXrPdf3LuL4+GPs+zZXTHY3i2wYHLZRQ3ICo76dT/7zAAkh8QszxyVZt7TpWQgHjTwzaujLB93VuliF65ICoCL6LzLmoS1mQ6HCSsyuH+oUopvO1WGiX9hqKytbzO1iFqVY1keFC8VDw8C8XcbLqzukSNEH9lZWXX567JEp4EY11p/GvKBlr4fV4qvC2VeoftopFZbVE/bNSyzt56/VfIdrhuUdVozYVnA5AifsMgom5B5PYNL4qaUcCphWd60jJLf38/osJeM9wlq6fD+43nhdffa0TMUBW1v6rhCktaxLKI2RgOb5tY8nfUTCwXiuGZHuyImQh64nXkMmS+2653oARInoTvBowUa4wU27PR2CWX6imRJHCrdT2UoHBfEleFiUMGas5DpR0415cIzwQ010qFlkVJx8O/VbUZnilCiTh/e9fNuHOhHJ4RbVTOh5Yl9fAxosvhIEBFCX+nbYeP1e5MeGaRphYO5qo3wut1/bXKiphNJPAjzkFuxDktohxyxDI/fKy6XnimHCNiHQbS4d96IF5d8ndvIryeM83wdUqO+E1bEedRsx4OqFZj4bZNTQn/hrYfXq+qHf68mfrS/TVq/406Bzfs8Hm01AwH5PkRv43ZCu9LvhNxHY1473wjfK0KEkvL9aaWn3nmqqzRCi3rNsL79PVsWwzcK9wc0Ua9eVkzLvl7EsT6VMzpzoKaNzIzqTDXr7P9bBM7plDsWX72V0EQhBtxa+0kjevlDsfpfjSJ3qUy9bMqvrUFotk/InUeMi9LyAWVse+Ut+Q2s0seo39doueJNAOfzFDsbhIE0W2nt0rXA/PMv9XFtq/kufBf52/fF60Ba9Zl7HsVsgdi5I8kGPmdGM0xm/pFm9aEveFnXaxlVDI1l0TdpZlaN2kfW4qsS+v2XKXXA5ykRGWvTGLap+91j0DymHhapdW7+vhorxUwtjCDao6x75QXXjMTCqN7rrR1BAE7TjfZcbpJ8He7aI47lN5tYk6t7hmjOebQHK+w46sFCvclqJ0x0QsqqV0Gkiphlzf/M8tycvfESe+JMfnTCvXzK7fxSCroeRUtJaN3Lz1feObK+3Dv4ymQYfw7laXlJUjtbLfVBV570CMlLuLvBWGju9Xtf2t+l9LzRJLsPXEkXyJQApwd7dHC9b8rM0i48+P95raOP3vO7qwzDaA71lmj/81IquEAhBtxg3DHy3J6VlHv1dSj7IY7Sm6kT6+uXOgae2JTHZc9pHdethHcvt15zgoHvdzIlB8RXHIDCXV1yQZRnWk3MtoMd+LeSE5vrqoe/33y0Y7LxpTO11GOCmC5gaS2uo601dTDUDq/mb0vfnFV9dCkzj9b6e58exyvD3Zc9mI9HECynF3pzhsjVrOPRgW3LMeJ6Ji+ke6epZ3uMz0a1WqaXe83SZccDo2WOThappWSeUsr4MQ6++y4sbr9Lql3vt+t5vz/QWN4VfU42RrouOz5enfHZS+VOj/PqIXVDTjhBp0/uEzXOr/ep2OdXwsBJhuZjstGBYXciHH9NCfLaEYETSynJ7lyMMJVSa3z7dEfDwezLOd8LRxgdCM9Ruf3M3Km83NjxQ4H1yxnrtn59X44Xe64bFRA1nJGa50fWx/vP9Vx2bvjYx2XPWF0fl2B1V1nOwmYuUqVVtdA7Pid3w/+rHZ3x2Wrbuf70qSZ7bgsQN+LHj7QYHEbqmdl4q+oDHw2i58LsE0b/u2qPlbY4N5++20AgiDg9ddfX+PaCIIgCIIgbB2SAliAB3gSktf+t94KcNOAD3YB9DmQPLjajOipUNqloH27RfZgnNi1Hb6vt5NZSoMq5SGVrqkq810GrbiCZSj4ikTlQ5PKSZPBz2RIjiwmYkyOGIztimPH220OvScvd7wutqZwfjDD+cF228ZyLXGBLNGKq7TiKjnLQnV9KjkRsLtePXR2GsUPeHd7lxh8T1i3gmtyvq4mDcuqRPl4k9pZe0mSvXBrGVcSLs4+maCVXV2/syAIgiBcJdqoN6/aOYvsYYfep9OM/lVpratzR5w7kOLgO1UOvV1lfHuM1UVICYIgLK/8fgtr3mXgkxm2/16B6kmT8vtNvNb6TGJaUwEkjkPyXQk3B5e/WVqfsxDeIV4rYOq5KuZ0O8H53K+3seeJztt/V0sxfCrHW2QPxZFkCDZbs0xAu539hElql0H2YIzuR5PISgrP9GmO2cy8WF+3CYbLyRcdAsCMibbgtVI7Y5E9FFt353dJgdRln9oOGasgc/GLOpITMPBrl/5XXMae1biZIau8hs/498oMfylH71MpIs9MksTF/Ulmhgx2/JtxsodiDH0ux/n/Ok/grHIbBTD/eoO+Z9Kkdhq4LR9z2mHq51Xs+a17nQAWZoLufTpNfNCi9E5zcbZxCdSkjJqS0dIKyRGd5A4DWWu3x/tOgFV0MScdqmctzBVmOFWSMskdOrMv1ZfMaB4f1Oh6OEmsR6X4VoPmpMPQ57I4la392wjCZnCr2//WNDl14NMZUjsNfCPAvtfG3eff9NTegiAIgrAcM6Py4eMZ8H26xxx6Ry1SZY+j75R4/dHOEzIFQRAE4XZz9/jUhmwSP9dQihKys8rhMQOiZ3zZ6DbBOr3wwgs3fM3zPJrNJidOnOBf/st/iSRJBEFArba6wQEEQRAEQRCE1ZEUKDyQJL3HQEsr8PVwmV4CAhmkawJ25varlHcoIEH+nEvhnId8cDEb68x/mEXPKmz/vfZAcfkJl/xEO5t15PJiKKyjStify2JOOSRHDKxiu4xRUIk1fey4guwGaLaP0auixGQkoDlhE9yGAaPP7+t8EDDhzpNdn0LDopzQGe9OI9++cVcF4SMJDCj/bYfkLxS0MRm74qJnVXKHElhz3oqBMMLNuzoT912/bBLQHpzgg08lcRKiE14QhA5s1rblW2mDbx/RRi0QQOmdJoOfyaKmZdzaZstMCXMMmXcfyTFwqcWeEw0qT6WYe62xIZNTBEFYn1oTDqPfLJG/N0H2UIzc4ThTP6/SuChmsb9W4jikjsk0DgU07gmw/78iqQWg/F4LWZdQ1EFG7ptET9yeWQJ9W0KOyQRegKRKBPYmvQ4GUD9nUT9nISkQ69NIbtfJ35tA1mUmfhieAXm9Ul2X/ZNl4i2P+S4dXxVtO2tl/o0G2QMxUrsMKsfNta7OAr2gothgFhbjygJNYupRleFfOgz+yuFyQr6pQQLdus/caw0GPpHhwDtVThyNnuSlmVIpvdMks98g0ALwb+7cUjvdPm5lTepohs+tYvr5GpUPWyR3GOTujpO7O47b8Aj8dmKqJC/+9ta8S/GdJs3LNk7VW9XzjqxJ9D6ewrcDamfbE94ktul0P5zE6FYx5xzGvlsmud1g+PM53IZH/cLqJgoS1inRFhhtg2+TtWr/W9PkVD3fHq3VG/Rw79r8jV2CIAjCOiDLzI0YzI0YHP1pmZgprj+CIAjCOhSH5ufbgZpOw4b/uMb1EW6JZ555BklaOdk4CIKFcsPDq5sxXRAEQRAEQVid9L4YhaMJ6hct5t9o0PUvDFACAgVQACWg5CSIjwZkPmy/Z/KLEmV9cWbRmXt15g4EDP27CqldBnbFa8+yWvI48WyC1LzHtnfbnbTndqWY7osRMz0MyydmevSft+h6MAm0k1Kvys85PP6j+cXK/lZ+Sd3P/Pnsbdkmwjp2Jf4obrvg+7R3UkG4A4LV98RLLVDH28+2enbx3NbBY7HwEVROtGhcsun6rRxGs/27dY06TN1lrPBOQRAEYSsQbdQCQHK7jmf6S2bD2Qomt8dBgj2ArEtM/UwkXguCcOu4dZ/ZX9eZf6NB79MpBj6dYfqXNWqnO0/ckCdk0u/JSJZEoEGgByCDZEHtYz5oK3/GeiU3IHlMonF3QOPIBo/2v8UkTUKNywTB7W0zmXm5l+SIzvQLNfzNmph6ncBrJ4+3Jhxakw6Dn8my9x/0UD1pMv9mY+0q5vtkTBtTV+mpNhmoNgiAlqHS0FUM16e/0iBpuUiArUp8eCi7dvUV8K0At+G3BzhdR6xZl2afRO/rXjsxe3u7fr4hMfGUxtDPHYZ+I8vYd8s3ddzXz1o09tnkNImVTlKeFaBlJFK7DGpnbi5pMfDA87bG+aljAZjTLua0S+mdJolhDb2gIkng1H3cuodTa///Zge0lWQY+lIWPasy/asakirR82CC3OEEzTGbse+VaY23Yxi7HkxizbuMfbuMv9oZcgVBuGPWqv1vTZNTS++36HsyjVwTo3kIgiAId1as5qJvkYYWQRAEYWuRgvZ/m81mWqdghaDeqyNSSZLEb/3Wb92hWgmCIAiCIGxN1my7tza1o520o5xSwQU8CXm+3XfRd83wqLX94CUluG7SP1+XmPxZleR2HWtusQfYzCiYGYWuSw6Jsk85p9NKqLQSi90z/v/jAvFBjb6PpZcNbrArHva8i2f51C+ImRe2Il+WOdefYc9UlQfOzfL2wOBaV0nY5GQroPcXPkoTWntbTA3FOouU9CD7v9pRs60jHu43XWqnTBqX7Q0/4vR6N/OrOkpcWkhM/fATSayEyAgWBKEzm7Vt+VbaLNtHtFFvLYlhDS2nosQkEoMa8UGd6V/VYGvlpgIwPRRjx1s13NYWXHlBEO4I3w6Yeq5G38eg98k0rXGno8EAlFEZ4xcaXje4vQGSDZIN2oSE5ErEP4DWvf7CwGUbjTYHEhKt/eL8ey09r7D99woADN0zhRa/PbOmepZM7VyKyokWtVNbc6a7xkWbmZfq9D6RInNXjMxdMcyJKr4E89kYtYR+R+oxMl/h4MT8kkP56p25dM24GT5QTBqc6c/R3HlHqiasQEnKaNn1lZwKMPGESu9bHn2vefiaRHOwvXe5CYnJp1SGvuMz/OUcEz+q4NZu5hwcYMVWvviUjzUZ+HSW7KH4TSenCsvz7YD6eRvO39r+weROg1i3RnPcpnA0gfEJFd8JmHmpTuWD1kI5vUsh1qtRfLspElM3EdEWGG2zbJM73f63Zsmp8WGN3sdTeJaP+awIohAEQRDuLDO9eAncfr7O5ZEEvrpBW/AEQRAEQdhQOhmZCuDQoUP803/6T29zbQRBEARBEDafvlcyoWUDsWpoWbdWI/Bh+ltxfFumZ7tL+R1lyeyl10ufgvQpn8mHXMy8hOSDk5TwNYm57+xj7rrydqv9Waf2K6TLDvPpWDv59Rrnvn4EgA/9gJjpgiRx6HSZrorF5b4EH+xtBygpSjhwIPDCdZSUcEdT4IbbvVwzvJ5RyyT5us+L6pELwve4Uf1dUbfCjVos4vMiFvkRb47qU4u63e6gF1GOCv7qsB5mNTwjodWMmM4iYjtF8iLKXfkdTm3L01Uz6a222KlWGM3kFt8WtZpR8SZR9YjaRh32vvrxiH1ODX+xZIaDdwLjunJuuG6SHbGsGdGWG7VaEQsDPaK+nfY0R/w2/nXbM4j6/SLI1x9bQBBEHOcR+6ZuhJc5dvj4He4phZb1JsIzRH266/iSv//X4X76P54huV2HABqjNvtt6P/rWWZeqC8cG7Ih0fVAsp3wkFFAgtZEgNfyYa9G6b0mc3++hjNRbFHxwXZAZWVYQcr5XD3L6kr4olFsJELLos7fcsQxkjCc0DI14jsuTnct/fyIOmdSrdCyUi0XWmZEfGcQdU6LWDZVDN8fRJ3TI4/h69bf9zvrT4q+Jkd8ZzN8/AZ6+HzQaIavN4NdldCyPenw7Op5tbnk74IeDryN+p0tLx9RLhzfIUW812yFvyOqXNUK3wtE/a7Xn29LzXiozM58MbSsNxHeL8+XukLLnIgZyVUt/F41Hl5/2wpf92vzydAy01xaLhnxWW7E/jXmh2fJ8bxwuV0980s/qyECQoVooo166xj4TGZhMCa36WPOOEz9vLplA8b7xkwUQ6LyfvjeQxAE4VZymz6yJjHyu3kaF2zm3oh+NpZKEvrbKuplBXfEo/pUsLR9I4D4MZnYcQm5LlN7Iohu+1rnlDoESoAf0Qy4lXmmj9fyUeIyEx/00LtvnsK2cDv2zQoCqJ1NM/PrHnxHpnrSvGWfvRFVPmjRHLOJ92v0PJ5i90QV1fcJLku8eLifRvz2Tk/cVWtyaGIeV5a4UMig+AGWpnC2LwOyjGG7pE0bS1WoxTSQ2898cZorfLJwJ5Tfb1E4kiBzV2x9HUuKxMyDClotIHvWW0hOBbCzMpe/XWbws1m2/06e6imL8vEWTjmiY+kGKsdNBkcMtp1vMd+r00oqBHL4QqR3t9u24v0aSlLG62Bghi1HAi2j0PNEivp5i+qJ9bEf2WUXp+qhZRRa4w6lY00aoza+tdiGl95r0PtUGrvsUv5APEsJwkZxp9v/1iQ5tfBAgsL9CQIfxr5bpvt/C3d6CYIgCMLtdvbeBDvfa7L7fIOdFxqcOJhheiDckS0IgiAIG0rA5pyFZJOs00ojUgHs3LmTP/zDP+Qf/+N/TDIZDmITBEEQBEEQbk7gA65E4EjggmkZzP2sF6/WDjpxijpGAQI/wJxysEseWlYhvltDspZ23gy8vjQ5prJDwe1XqXZFB7BUcxrVnAbL9DX7skQz0X7/sf0FekomEz2i/0QIe/WuPj5+bIz9xTlKRoyaISL7hFsrPqCR2mlgTjtM/6qGXfRI7zXoeyaNmlKYfbGG2/ApPJAgdziOOeMw+3IdSZbI3h1HyypM/aJK7fTWTHpYa4mh9rXEFd0dgiCs1mZtW76VNsH2EW3UW4ustZ9lGymFY58NJ+Zf9XT2nRU/6+3KtmVfL7bCA0Fcb6W9r2ouv7/15OorfsfdhcnoFzxQX0xQO2vjVEWwvCAIt5dRaA984tsBye06sX6VsWcreM3F80+sT2XwN7J4ps/UW1cGDrjBiTK122Dgkxmqf1mnvEKCffrF7mVf1zvIbtXl5WfwdFeYAGK2lVrydzLlkfIs6uMxWl3KlXrMR711S/FaAef/j3mUmMT+/2uGE6/tYKB3KrJsQV35Gvjdg0uv9YUHEnQ9kKRxyWL212Vx/QOcsodT9qieNKn8cA+yG3DolzWOTM9y9qHEktEVdXnlBL5KffnGFymzOCDRvSdnCIAX7u/D1hfTNwxjsf2shgT4GCwucyMGngx9T9TAjtcIIgbPup4eW/64PzXXu+zrjcbKbdR6xKBj1/JXWA+AVHz59sbezMrHylxz+X6XgecHQsuqgPGiR+ELaez/PYf5G9HH6p0WPDsOQPWuGL1Pp0j+8Rz1c4vbyAEuf6tE7p442QNxcofjNMdsyh+0aFyyV7xBb1yyKb7TZCew80wTu+Iy/r0Kbn3p+aT8Xot4n0ZiWCc+oFE/uzHbhd2fjSz7umIGJP/BFG7Dxy61zxFqUkbPK1jzLl4rvEEzB2L0PJpE1pcey+smOXXe4+LXi0gqxHo1rDkX3w5AhsSwTmZ/jPRug+opk5kXawS3Z5JvYa2ItsBom2CbrEX73x1PTu1+LEnucByv6TP6zfKShy1BEARBuJPmtxmMdiXpm7a460SVg8erzPYYYgZVQRAEQRBuiwsXLiz7uqqq5HI5EewjCIIgCILwESkTEtqoglyT8DMB9h6Xxvd7QuVuFMbVuGQT+KBlFbSsEkpMjZK96JG9WKfYq3Hu3gSu/tHal2xdYbxP3BcK0XxZ5uW7+nn6+CQPTo3z/Lad+LJo0xRundaEQ/28RWqXgZZRsIsetTMWXsun79kMO/5wabBjrFdj4kcVvFawYpCscPvVL1hkD8bpOuOB5DB7UEXygRgbcoYdQRAE4dYRbdRbz/j3Kgx+NoN0SAx8JJ1RoSFRfFvMPiYIwu038aMqktweLE9Nywx/KceOPyhgzbu4DZ/AC0jtNLDmXMZ/WCFwlg8er5+zKPU06Xk8haxLFN/aWOeyRo+MHZfIX3QXklOFRUNfzOFUVGLbbl2bihKXyN+boHSsydyr0TP3CuCrEpfvjrPnjSZdYw7z2/Rb9tl90y1y8zayD4oXYDg+U13xJYmpwsZSPizT97zH0I88Zg/E1k1yIUD1pElqp073I8klyakAvhVQfKNJ6a0mqd0G2UNxBj+Txal5tCYdrHkXe96lNeVEJh7Ov96gcDSBXXFRYjLbf69A+YMWpWPNhdk1JUVCL7T3bd/cPLlBhVMOqSkfJDAqPqoFfD4HQHPCRssoaKn2dS0IAkrHWsy/tnjOTe816Hs6TfW0SWvcBlmi7+k01uzyidp3mqTA8BdzxHq19gC+sy5aSkZNKtglVwxEKQgbzFq1/93ROxyjVyV3OI5T87n0jSJsnmuPIAiCsFHJMtMDcWQfDpyo0jdtMjkkOmYEQRAEQbj1tm/fvtZVEAThRiTQC+2ge4L231dHwksMa3Q/lsKcdJh9tbFigIAgCIKwdmRdYuDTGRLP6XhpHz8foF6UUUd1lBELb9RY8TMalyxSO6PL+XmfoMfHH/C4mMuQGveIFwO0Rvs/vR5QmHFIP19l9K44M7cwkEUQrtdI6HxY6OFgcZaHJsd4dWj5Eb0FYbVSu9rnQi27GDTaHHO49I0i8QENWZdABlmV8N0gclR4YW20JhaDm7pOuyRmPeKlgPr9EuZB8TsJgiBsZaKNeutR4hLJ7QZndqw8k9VmJ19UCYbbs6UJgiDcCcGV+Gi35nP5W2Uy+wz0vIqalJF1mfIHLYpvNTqegWzu1QaeHdD9UBItozD9y9rtq/ytJkkUd6v0HXeY3+tjZcQga9dyGz5GAZK7bl0Saf5IgsAPxKAMHSgPaMwPa2x7v0W1W8WJf/T9M950uefD8sLfAeBLcGEodcP3COufk5OY+A2F/DGfvqfTZA/EqHxoUr9o4Ztr2+YmKaB3qciqRGqnjppWUJMynunTmnIxpxwCH2pnLGpnLIwelcz+GEa3SmqngaxJNEZtJn5YCX94AGf+fBZoD7iQuztO4WiCwtEEl79dxpx26HsmhZqQmX+9QXNsfSVefhRdp11UCxq9MqVdKlZOxv1HU6R2G8T7VWpnLcwpB7vkkdpl0P1wEt/yKR1rERvQ6H0mTeOSxfQvaqgpma6H2olganp9DdTQ/WgKvaAy8ZMKSkwmMaRhF13KH7Sw58XzkyBsNGvV/ndHk1Mz+2NIksT4d8oiMVUQBEFYV6b7DO46AT0zlkhOFQRBEDY0KWj/t9lsxnUSBGH9yN0Tp+fRFM0xm9lX6gx/KYdb8xn7dpnux1MYeRWjoCLrElO/qC0krgqCIAh3jp5XGP5SjsCH5phN5cMWSqzdCa5lFKqnTJAg1qfR+ISNNxiABFIN0t8yCJoyysEmcjwAV8JvSeiWj9tQ8VsyXktBTbvUzlsktxs0J2ysORdZlcgejAPgfNKCZPsi4NclqjtVqjvb9VPMgD3fa48arDkBu99v0sgo2CltTbaXsDWMZ7J0mU36mw3ump/h+EB4hmBBuBmBB9aci9GtUj25dAYA3w5oXLLXqGZCJwIPLj2tk5jx6TnhEi+1r13atITkgbU7wBfdIIIgRNisbcu3ktg+wkYTXIkjDmQxfbpUlPH3d5gBJgiCcIt5zXaiykdVeruJU/Ho/0Sa1qQTemZfzyrbFPo/cMifc5k6Kgb1u9bEjyrc8y+SzPykj8GvjKMXPnpiV2qXQfWUiW+LG9hOjN4d59Ccy45jLc4+nPjI906thIovga3J/PL+fpBFQvZm4esS8w8pVP7dHF0PJOh9OkXfM2kmf1qhfn7t2kzTe2MLM3gOfDqL7wS4DQ8lLtNtyLgNj/oFm/o5i9aUgzXrMjtbX3h/z+MpMvsNlJiEt0yirVvzmXulQaxPI96vse3LORqjFsmR9kCHdmVzJTJOHdUZftVm8j4NJ9U+jtWKR+ntJqXrypbeaSKp0P1Iiu5H2ono5qzDzEt1jB6V4S/m8G2fmRdr7T7NdUJNyWQPxZh7pUHjQnsfXk+zAgu3l2gLjCa2yc25s3PDX7lXczfRdN2CIAjC5uCrMpYhUyjaqLaPq4sGAUEQBEEQBEHYqGRdQsspOGUP3wnIHY4TeAFGt0piWEdJyDgVj/K7LaqnTKzZdlBSYlin96k0ii6jdMkMfCaDkV9sPkvvjREf0qlfsJh/rUHgB6gJGbfuL4yALQiCINwesiGjxNrtNZl9MTL7ls760vVgkrlDKvJxl/KftmiOXgkCkED+bJYkOsxpmDFwMhKx+QDPAysuU+1SaW1T6B216P9YOzDq3G/0MN/b7kwfrNYZOGNxttaHZ7Y7Opr20qRTyQ/YZjgYVvuCYBsSvifTKMdAuiaQJaI3K7AiRkiOiH0JtPDFRlIiLkBRHWZR1ym7s/av0Md12mwWta5qROX8iJX1OlwWRY74jut6w2Q9HCCRSYcDBOuN8OxCrhnRtRZRt8CJ2FBRdYtYJFkR743YTdx4wNvbennm/GW21apMJNJU4vGlH9/pdosS9daI+spmxPpLnY38LZlL11WKiF0JOlwFKWo/j9i//HjEseREHXQRi2Lh9/r20nUNovbpiJUwSxGzV0W9N2K/Me3w9o3ar+fqyfB73fA+/Ctl35K/+14B73IAv4Adf1oAGd7t7WGme+n+tfur74TrK6wL9h+Mo27T4XNZAj/Aa/kYYwrGmMSYnKQ40L7ema1wQLAfcf5q1cOzissR53Qp4tx//TJNC++rjVb48x0rvK9GLYsUdW6NOC11fO6/7nslJWI9I5ZpejigWFXD55FmLbz+UsSxr0Rc9x0//Htl1fB6bTfmlvw97WRDZeaU8AwuPYnwzD0zjXC5qLpF/Q6GFk4KKsTDM/mUzXhoWcUJL7ueHHExyOvh7dGVDH9nywkPKuLFwudlywnvh61G+DfUEuHfPxZbukyN2G7lqXRoWeQ1OWKfO2X3Lfnbb4pgQkHY6nw7wK64pCous0Phc9VWEqQDlHd1ep9KMfNCfeU3CIIgrFP1cxatAzEy+4wNk5yqNX12/cLE1aG4+86GrW8IPvR9Zprxbw4x9f0Bhn57HCVx8wlealpGSyuYU5tn9sLbzdMlLt0bZ+9rTXa/3uTsI+E2tdWqpVTSNTEwxmbVmnAY+24FJSmz6291ER/U1zQ5tTVhM/NiDXPWxa16SxJMY30qqd0GqV0Gubvji4mq5y1akw4EUDzWJLXHYNtv56lfsHDrPrUzFl4zOghi7Ntluh9Nkt4XI97fbk9xW/5i39wm4STaDTLJWZ9yauXOseIbTRJDOvgBxWOLfZWDn85il1zGv1fBd9ZX1lvhvgS+FWyYewpBENavO3qXr+gSQRCI2SUEQRCEdenkgQz3Hivz4OvzvPFQl0hQFQRBEDamgM35zLXB1unZZ5+9JZ8jSRI///nPb8lnCcJW0vtUivSedkCx7/jIWvve3ql61M9ZJHfoGAWVvo+lSe810PMKxWMNCkeSxPs0fC9AViQSQzp2xUXPqgRBgCRJqAmZ3KE4ek4h1qshaxJO1ePi14trucqCIAibnjnlcOFIjK4xB6Puo5sBEou3iaV9ClYK3Bj0fyLN+f8yT3qvQeH+RPs8fqWcr4OvQfGQwkQ+SSslLySPFgc1DrxUx7B9Dr1X4fRdaaaGYlR7Naq9y8+AGsgS7z6cZc+HdQpzDroVcOTVCkeoLJSZycVoxFV0xyduuRRq7U7pE0N5xgtJLE0EZgk3QZZ5eccQHz9ziXvnpnlh2461rpGwSbjDPq3HHZQZGbkmcd+JeV4/3E0xF5FUK6xLzTGbmRdqWEUXa9al9V92cfjlGq4mZk4TBOEGNmvb8q20gbaPaKMWAGRNQk0qOHr7+p8pOqTLLq4qUerRsOOdDSqzKeR8mFVIbhez9QmCsPGV328x+Nks2UMxKsfXdzKJYgYMv2bjyxLnn41FDgAjgGz49H9+kom/HmLqB/0MfHES2bi5kXEz+2N4lk9jkyWJ3VZBQNeV7VUv3Jr7o7mCQbbm0l9sMdX90ZNdhfXJa7SPNf0W7Tc3y6n6N7wemNMu5rTL3MuNdqLqrsVEVc/ycWoebs3HnHJI7TTIH04AoCZk5l4JD1p21dwrjWVf3wzMvERtQGbgLYd6v4Ibj76GZQ7ESO0yMKcdxr9fJriSl64kZAr3JzC6VcoftNZdYiqA0a3SuGSLmba3KtEWGG0DbZP11P53RyMdjG6VwCM0QvfEI7WOPyP7VudVfiJ7puOyNX91Hak5JTyS5q0QNULpcvJq5xf1pGx1XPZYY6TjslrUMNa3iBY5zHW0Lqnz9QM4aIx3XPZ9dbjjsnGl89GGinai47IATbfzBtKa3fmIhwl1dQ+hq/nshtR5nfNG58eVvMqzfnIV6+j4nT8keJHD1N7YHrXzdbyslTouO6l3fu4Yl1d3nokrnW+7lNL5cThtZVZVj6a7fADgtZJ653V2vcUE1MaAwmTRYGDU4skXZglkmOvXOXNve4Rix1vdA2R/cr7jsrOt8CjTN1LVVzei6WSz89+82Fx51Omrkkbn27lsdf65AJrS+bWlJ3X7HnB3pDpPMMhpnR/fL07t7rhsJra661vWCI8AfiN1p/N9adAor6oeY81cx2XnrdvTABc1C8RyhtPljsvuTs2tXOiKSXN15zvLuz236K/WO9/vurXVjRbcH6t2XHbGihj1/Ub10Fd3fE9YuY7Lnq93dVz27FRPx2V3/sG7HZftlBuI0Sw3oueffx5J+mgda1cT4QRBWL34gIZddpl/o4mWlskeiqOlFaonWxTfbpE/svg8nhhuP7cWjiQXjjtZkQj8AEmW0LPta3Pjkk1qx+L9U2Jo8XnXqd2+thFBEARhUXbWJTPnYSZl5naoyG579rHUuEfh9DXnYl1mxx8W0NIKQRDguwHFoyq1nfKS4KdWc2lbj5VQOH0wzeFjFWQf7vqwRq5kM36/QSCvfF9mJRSO35+he9pmz/E62nWdzL1lE8rh9x0YL3FgvMR7I11c7u78mUkQrrJVlblknO5G5+1CgrAiCZw9Ps4eH+2UjDol89D7c1wYSuHLEs2YipqSces3Fygp3AEBVD5cDEqLXZnp4NBrdY4/nKLa3Xm/iyAIgrDxiDZqAViYeTk35zB4sbjwnBoAgQTTwwYXDm6BZIkApCkFv9tj4pud92sKgiCsV41LNqX3mvQ8nsKp+jQvr88kxOS0x9AbFhIw+qghElNXoGVc+j43xeS3B7n0n7eT2lcn/1AJNb262TdlXcK3g4XkKGFlRsOnMNneYPGaT6zqwUe8RRodTrJztMGRUyVOmR4XhlcXPyZsHLWzJv3PZlDTMm5tfbeVLiSqvtIg1qsSH9TQ0gpqWkFLy/i2j9v0qV+0Kb19e3JlNhRJIj3Z/k0lL4DrcgbUpMzOv9WOQWxN2OTvTRDrVZn4YfuZY/gLWfS82t6m51cXB3ynmLMuiUHRTiwIG9V6av+7qcj3oS9k0QsqkgSSKiHJEPgQuAFWyaV2xqT6YfgEqqYUXBGsJwiCIKxjFw6lKHdpDF8wSVVceiZszty71rUSBEEQNovkdg1kCbvk4lR9cofiZPbHkA2J1qRD8e0GTnlpQ6XRp8L0Kr5ks45otRnXSRCE20ZNtpON6ufa7VPVkyY7vtpF4cEkvgel95vkDycY/0EFc8qh/xNpktsNJEnCbfqoCRlJlmhO2CQG20mo1yamAnimjxKTsYouUz8TAU2CIAg3S03LxHpUGqP2ssEyye06hfF2gVjDp7hNY3K/QUq34X6V1KTP0MuLA7uYMw6SKqHGZSQV1FaAUQpoDizfsTLfa3Ds/hwjF5sU5m36Jy1ib3icfSixMMPqsiSJuX4DyQ+46732wD/P3zuAp0gUqhZ9pSb5mk0prXNmWxZfkjhyuki+YXHP6DyVhE41sbqByQQBwFQVJED2fXxZXrG8IKyGs9vn4kyWA+cr7By/ZlCzP+pi+pc1qqfW9ywtQlvfpWsSVRs+1e41rIwgCOvTZm1bvpXE9hE2GN8OmPxJhe7fKiwkpo7uiTOxM07fZZPtp5oYpk+wq7NH3g2rISHVZLz7TaxZkakjCMLmMPdKAz2n0vtUiot/2fng+3dKetxl26s2jV6Z8QcNXJGY2pFYn8W2r45SP5WmfCxH/XSK/MNF8g/WO75WtyYd8vckUOISXkvcwHbCSimcPxonUfXITzgceMmhcr+EkwOncHP7rqsrvHC0n8fem2b/pSqNuMZM1+om+BA2hvp5C/cRn76n00z+pLouZ8eMYs64mDPi3ng58jWziTqpcL9L4cHFQdGnf1Wn66EkyR3t+BIlJqHn26la07+o0ppYn5NTKIa0YfZZ4TYQbYHRxDa5KatKTh35vTyJXAzpygjhTs3Db/r4ToCsSChxiXi/RmJAp+dRn9J7LYpvLI6aICngiNFzBUEQhHWu1G9Q6jfY/3aVrmkHfB9EQJcgCILwEcSHNQY/nUHWwteTwG/P5JTea5DeaxC4AU7dx7cCZEOChAf/eQ0qLXxkQSBaKgRhLRTub3cAzLy0GDTvmQGj3yox8tt5eh5NUb9oMfHjCs0xG0ld7BQAUBOL5+rEoL4wg+r1Lnx9HlkRnbqCIAg3q++ZNLE+deEc7FQ9yh+0qJ4wl3SCJkZ0MnsNJG3puXjwpEVy3kV3fVQzQLsyYaQdB70F6d2xJeVzZ31yZ33Gn1Zp9S3fzlPu0il36RRmLe55p0Ju2mX3m03OPdBhgirgGIvf4csSlq4y2a0y2ZMIlX15Xz/5hkW2aVOPidGJhZuTb1r4IBJThdtDhdlCjAPnK0sW2yUXc2Z9BtUIYaN3JeiatBm4aDF03mRmuxgMQRAEYbMTbdQCQPOyw9nDSQ69WSOQ4PLe9nPpxM44zZTCoTdrmOfjxHe31rimt9GVuTSUN/S1rYcgCMKtFEDlwxaDn8muu9n61KbP0Fs21SGFsYf1TT4Cwq2npjxy95fJHK5QeqNA8eVu7Esxeu+ZJ7enjKys8P643I5DEclGq1LcplME5rfp7HinSeG19jFVfAiau29uH27FVV482sczb05x9NQ8z9/XjxW7qXnFhHUscGHqZ1UGP5Nh5HfzzLxQX7czWguro9cXz6PxWY94yUc5msAuue04v90x7LJL/aLNjj8oADD7SjtO5Wq/pl1yaY6t0zZ0GRLbdMrvbeJnQUHYAtZL+9+q7nC0lII56+JbPpUTJo0L0RfO/JE4+aMJuu5Pkr83Qf2cxfwbDQIP1LiE0aPS/UgSJSFjzbjt2YEq6+fBSBAEQRAAbENGAlQb3NiKxQVBEG6l0t4AAQAASURBVAThhvqeSSMpEsW3G9gVDz2roKYUWpM21RPtWf3UrEzhaJJ4v4qWVpCyEPhQm7TWuPbCzfg7f+fvrHUVBGHTUxIy6T0G1rxLa9whPqCRuStGateVmU636xTuT9C8bDP9ixpOyaP4VpOuBxOkdhgkt+v4doDb8NEyN+7FLb7VoOv/z95/R8mR3Yfd97dSV+cwOQGDvAAWmxM3L5e7pEgxi1agKFOkKUuyX8uH77FfPueYx9JrScfkoexH72M+kh7bMiXLpERTIsW0DMvd5UaGzVgssMgDDCaHzqHiff9oLAaDKsz0YAHMTM/9nIOD6erq6lvVFe+9v9+9LQmAb/ugKNTGbPDAs9dGBZ8kSdJ6E+nQSO9uVrZUTlgUDzVI7zLpvitJx61xRv7XPL4tMLIaA+9KYxc8lAvi7XwFMjPe4mnAfCoK350m1m+Q2bOQhdx3BHMvVKn913pzRqAjpGxn/uHac3/PdZk8f0eO236WJzfhkj3oc2pL85rgucEAQN9vTssWLa7b3xxVWwBeBBTt4m0gQoN82iSffjNISEDI8oUXvF6JCzcMNDdOYMaLfv3yLvwKNbgwLRlsWPfD1sEOKW9Y2d5SeZf/sG54gWnlSjBrvdcIuUdwgttXcVvsnBTWES/k91JCdhcRslHUN5Oa+z4Jx6EYMQksLbiqLZdNaJf5Xids17xgmhLylX4quBKKGbJic8GO5krIAhWvtd+w1fVvqc1XD/lRQ8oRuu+HHdNhv2vIZ2uVYPCh4wT365+VtyxevBc8Vnf/m9fgVzvI769RO21Tn3AQre5f0pqQr8XZN1LGV+DwQJZ8PhE6n3BCztUhx4PnB6elcrXAtEZ98bEZtn/5IdMi0eC1RQ05x1v1YGKHSCw46kPY+aBaD543/JBjUzMWH8PiwpMX0JUrB6bFjOA6TBVTgWmqETxHRCLBdcgkgh3FNqUKgWk1L7her1WHFr0erecC8xye7QlMq9aC5xGvEexmYiaDdZh6JHiSqFSDDW4n3JDlhWw7L+y8eYEz5WxL0wrl4HU/kwyOAu2G7JsNO7jPJdPB30ZXg7+r5Sxe19AeN0Zr1x81ZPtm0ouPQU+Xdcsbmayjls5n/u5JSvckyb9ao+fPZxa95368k/GpDqzepfvuhZ3XzteXKC1bjpq7dHCoscx3VO3lg0tHyp2BaYov2IGNrS0TzSNJkrTORHsN3LqPe96gQRkjeF97vmrI88KFtsVnl3zf8i/e9VwIKPyfKfyMxuz/M0tEtqW15Af70hd5xyE+VKDjtgSVsWHs4hC1MzbCF+BDfdIJ9OWPDRo0pl3EBh4QsfcnF9ueCwyrGv5GHGberXKiGmPbs3WMkwrzg+EjntrVZY4nR6GBzvPbernj+BR3vjrD49cOLhooxQ+rNzzPe3a9vvR3AMaupSvpXpjbvOwyCrWlR3UNe54/X29nccn3AeyQ5//zFSvLd9INq5M532Bi+XJ8eODkku/vrwwt+T7Age9tX/S6BORrPsOv1BlMZWhMO0w/VcGa3cAH4jqkP3R60WvfVOATXQBsefLsufaOxXWqWlSldtqm48azyWkFKDp49eaxrUaUZtvIKlwOIzmN3renMLIaiqLguwJ8gTXrMv69EvGhCJqpYhdkRb8krVdrqf5vRcGpdslj4huVZefLv1In/0qdzL4oHbckSO0ySe0yURQFs8tg04ezAAgPIlmN1C4T3xbURm3mX65hz8kTnCRJkrT66olmw0Q67zDfLzOIS5IkSZdOj6tYcy5zPw920HuTW/SZ/nGwE5srVpY9TRHhnXnXu/W2Tl/60pdWuwiS1Da0qEJiOIJiqFjTDo3pZgNOepdJ19uaAUJu3UePqTgVD6fsY3aoxDdFzs4XRTUUnLKHNety4n/MERsy6Lwtgdmho5nN7MFO0Vs0guqbOm9LMvl4icaUi1OUdVaSJEmXg1td6GwhBDhFl6mnHJyqT8eNcdK7oxRfr9NzXxJFU5j6cRk771L9yjbMqo9hCRJFl76znW5OD8U5uSWJqysIVWH4yCjWjLsoOFU1FDpvTeDVfOoTzqIOW0uppBauDZtGa+eCUy9Gd33etn+ho++B7Tn6ZmvsHC0TtT3yqQg/29eNCBmVW5Iu1VCpjAKMJYMBT5J0WQhB731JvLpP/uUaXn2dPaRLRDo07n11CoBnr++lnJCjhkmSFNSudcuX03raPrKOWjqfcARTTwTboFBAMxXs6DrauS9BatRHAJN3yJHKJElqL7E+A7HGRsf0RyLEByOc+XYBXwamXha1Mw61MwUinRq5G+PEeg1QQNEVcjfEqU86TD9dPtf3PrnVpPCaHAVvSS4kj/mkjvl4cYX8DSpOZnGdvdAVFB+82Fuvy59LxzjdmWR4rkJXucFsJv6WlymtPXZc5eidcdJTLpu+4zD0gSxjjxRpTKzRUTOl5SnQmHaw5l1KhxpYcy5D78sS7TUQviD/Sp3sdTHS10Q5+hcz9NyfpPuuJNFeg8lHS0w9Wab3/hS5G2LkX7n65+XUzijRHoPqaZvaGRstqpK7IUZi2ERPqXA2+WDm2iiV4zLB2UYk6wLDradtspbq/1ZU4zL6tTy6EswCeTHFAw2KBxpEunRy18eIdGgoqoI16zLz0yp+zcfIqnTcnCC+KUJyu0lyu4nvCKonbaaeLJ/LYC5JkiRJV9v0gMm2QzWGj9ZkcKokSZK0YnpGpfPWBMnhCIqqUDq8dIZSSZIkKVzP/SmSWxfux4sH60w/VaEyYtNxs48aUdFjzeyyhf11CvvrKDrEByP03JdET2jnPi+EwL3NZ/QfC/jWQm2ioiroqfCs+W/WU/lrrHFfkiRpPfMtwfTTZXruTZHabpLabiJ8QWPSwWv4dN+VpPOOBKrW7PSx+ZfOjuz1eLMj7fTmCCPXx9BtQdeYw+YzNTafqfGjt/c251Mhd9NC547S4Qbpa5rJCvreEcyY3ph2mh18xmwM28eJLGQtN62FRorXr80sv26Kgq2rRNzm5647nl/0fq5sMzxRYWRQBhFKl89QqYwAxpLLjwggSZciXneJDUSY+FFJBqauU4ktzWeiqVxUBqZKkiRJknSO2a2jqAp+ur3v8eITPo0uBTsbMkK8JEnSOpZ/pcbAuzNk9kYpvr42+iN4r8aonbGpj8lgrMvNnvOYemxxsolov0HPvUk2/1KO8jEL4QkUVcGe3+CjNXqgn1JRLFA8BTxQPMABraSiTSvg+tT7FYyyYOAHHrVBhdqAQqNHwUsomCWfeMFnetfK6lEy5QZ3vjGFKqBhaEynYrwxmOXNAT/V1Rg+Ubp6FIVSn8GZfyww8O4Mg+/JcOYfC1hzG/yYXKf8hmD064VF0yYfK7HpQzm0mErm2mbbY3K7ydSPy0w/WUH4kNkbpef+JMZF+qBcLYXX68SHDBKbI0RyGvlXakw8WmLgFzII783kB7IvjCRJl8dVSQdmz7pMPR6SfQ1wCv659/SUSsfNcRLDEVK7TJJbI5z8uzx+TUaoSpIkSVefH1GZ7YvQPWlz6+PzjOyIMzVogiobLCRJkqSldd2dILuvOUqT1xDM/7RC8cBVagwSZ/+1m3ZcJ0mSWjLzXIX6pIOiQLTXoHioeT51Ch6n/z7Plo92npu3+64knbcnUHWF4ut1hA9O2UNRQU9oTD1epvfBFN13JigerGPNuefO16quUHyjjpHSiA82GxlP/s0cbs2X5yBJkqTLRQUFED4UX29QOWGhxVU0UyWS1UjtiqJFm/Uu1RELPaER62smzCwcqJ87Z/ectin0Gpy4OcH+HSbXHClhuD6KANXz2fxLOczOZvPH9FNligcbWLMu3XeHj3oa7TGI9hh03Bxn6MlZXrotSzHbvBZYUY0nHujF11rLju5rCj+5qYctZ8r0ztYRqsLp3gSzuSilhEG2bFONtZ4EVJJakbYsaoYu6y2lK+bul6YBcPLeKpdEulSRnEYpbvDi7q7VLookSWtZu9YtX05y+0htZvOHm8mg3J723rnNkqDaJ5+XJElqP9VTNgA996bWTHCqKKpUR9dGWTaCxoTD6b/Pk90XI7XTRI+rzL9So3R4Y4+AF3tGxxjREKoADYRG839d4KcF1vU+s/0mbkpBcQXpw4LYuE/3z5r3RBMPasRHHVwDyn0rCy7rz9fQBHgKGJ7P8HyFzfMVACxdZTqTuNyrK61BwoPx7xcZ+kCW3gdTnP5afvkPSeuCU/I58TdzxPoNot06WkylPuGcqy+Yf76K8ATxoQhmh059wlmVUVMBvKrP6NcLRPt0MntjdN+TRFEU3LqP12jGZ2kxFTtvr0r5pDVA1gWGk9vkklyV4NRWuWWf6SebN2DpvSY996bofyjF2LeKq1wySZIkaaM6ckMC11DoG7W45vUqu16vUktonBmOMrU5ttrFkyRJktYaFTZ9MEu0x8AueYw/UsApyGQ7UriZmRnOnDlDpVJBiIvXatx3331XsVSStPa4ZZ/Cq29W1i+utHdKPme+WSC9J0p80ECNqKhGM3goc23svPk8pn5cpnzUwshoZK+PkdoRpTJi4db9cyOvZnbHcMrNed2aj1uV53BJkqTLafC9GeIDEcpHG1h5j/iAQWPaZe7nVerjDsWDDRJbIgz8QobU9igA+Vdr5G6Ik90XwzUUDt6TxKz5lDuazRu+pnBoz8KIpt1TjXOBqVNPlimdTWpQPFinMetiz7n49vmjZ4OeVIlkdWJDBtVf7KSaWNx00mpg6pvqUZ1DO3Ic2pFDXHApKaTN8A9J0iXqrFZRgclkePC1JL1VnfkG2tlzmbXRR91Yp4ysRmqbyeGuOCgru6ZJkiRJ7U3WUW8s0V6d3A1xKiMW5SMWm385t/Bmm8dtqo7Al3miJElqU9VR+1w715qggp5YQ+XZCHwo7K9T2L86wU9rTdddCfQRldq9Du62i7f1ulazjkToCsVrFYrXqmQO+OQO+Gh1Qc9Rh9ntBmKF7QNTuTjbJ8tMZ2O8tKWXjnKd7VNFPFXhlS3db2ndpPVFuDDzbJVNH8wSGzCoj8sRpduGD/UxJ3SUcK8hmH2uClSJ9ujNZOirrDHp0pgsk3+lRmKLSWPKAR9iAwZmp075+MZOaCBJ7e5q1f+tqeDU85UOWnTflSI+ECE2oFMfl42dkiRJ0ipQVU7sS3Jid5zeUZuecYtk2eWag1UGRhu8fGdGjkggSZK0gcVqLoOTVUrJCPG6y7aPd6JGFConLCZ+WFrt4klr1Je+9CW+8IUvcPjw4WXnVRQF15XPw5K0lPqE08xEeZYWV+l9ewojqVJ4rU5lxMY7r8J//oUa8y/WSO006bkvhVvxmHu9Tulwg82/lMNIadQnHJyiHBVKkiTpctPMZh1KameUFGAXPTqGIjhlj7E/GCQ955I90YDKwnnbKXnUxmzigxEm/yFP7L80R+97Mxw1d8F3mD065RvizP6kgnvecorf2R4oT6URDBS1rLPNJue3J4tg5xNVCzYm+yHzKeolBgGFtVWHLSrkO0PpIQ1Nfshn9ZAvdi+o+9KCy1KVkOWHzKelgtmXVTU4n1UP6TUcUl7hhaxD6LTFL+1CSJBw2O8XsiwRsl6t/g5Ki30QRFh1Y8h3aHWFLfMlBHDazLa2cMCPhq1DcJJqhaxXSNlCt0mYkNmUC34bPxIyU9jvYAdHLFDDtm/YdqsEp4V9rzBa2044izeKGg8+w8XiwX0/bganzReCQca+G3IOCjmmvWqw2VdPBjvHJOPB0UsuPFV1vPcIwLmEAQCNGUdmi16nuu9OggKlWCRw3tTM4HOPH7brX3gtoJng4ULpaLAjU2eituj1+HwmMI8fcpwbIcelFnL9Db0+hgi73kQiwfXXost3FCwXg8lLLae1rhfRSHD5Yeu1tWM+MK3brASmOSEXjVO1jsC0irP42jdTDZ5vqrXg9dEPOd+GESHnWxFy7Q67X/JD5gu7hbowttoJuV9wYq2N9OA5wfWqWcHlxc3g75VJBDt8p8yQfT9aDUw7U84uel21IoF5wo5LrxLcv6KZ4LpeuB96jqzbkMLJOuqNKbHFJLmt+U9PVjHPJn06/j9m6fynwetzO/FMBb0ub2YlSWpP9TGbjpvjq12Mc7RdFulSlNKhBnZe3o9KV1d6d5Tc9c3jwd2ysoAw1RIYJYGvAWfruztOOkxcG1lZgKovEEC62nyenE/FmE/JQVA2qsakg1v1iA/J4NSNqDG9tp6l7XkPe36hrtbsaj4TFl+XyQ0kqR1d7fq/NRucCjD5eIn+h9IMvi9L+YjF1BPl1S6SJEmStFHpKuNbYoxviYHvs/eVCp3TNte+VOb1W9u7oUaSJEm6uL1HCnQWbaDZ0cjXFGafq1J4bRUrbQTt2Vm0Tdbp3/7bf8t//s//GWDJTFSSJF06r+Yz/t3i0jMJKB+xsOc8sjfEyF4XI3dDHK/ho0UhMRyR2YUlSZKugIkfFNny0U4ASocbaDGFSEaj9/4UvU80k7sUunWO35CgktXp/tARjJRG5aSN8ARGSkNPqXhVPzAi6ZusaZfJR2WiGGnjyFp1bFXF1dd0k5+0DqV2mfQ9mMat++dGuJbWJ7fioagRbj88w8+u6cZXFUrxCK4uE29KknSBdq1bvpzaYPvIOuqNza37VE5YdN2eAODUV+fx7fbfD6ysgllo//WUJGljsuY91IiKnlJxy6s/Opt2Qx33cYPB92cZ/Xp+TZRJ2jiqpywKr+lkr4uR/HqE6ntsxBKx26otiI0JEqOC2KRAKDB3q0ptk4Ib8XCiangiwSXkMzFmUybdZYu+fJXJXOKtrZS07tlFDyMj6++ltadywqLztgSdtyWYeSaYFE/aAGRdYLg22CarUf+3pq901RM2J/7XPJvelyF9TZT4JgO/XEFNyYcVSZIkaRWpKgdvTnPjTwp0zDp0TlrM9YWMtiBJkiS1PcP18RU4tDODAMz/97HVLpK0hr3wwgv8p//0n1DODvOgXDjcwwVkxyBJurJiAwaqoTD7syozz5XpvC1JZk8UQGZyliRJutzOdt5wSj7WvIvZoZO+pnnO9V0fe97D6DdwTJV8t0HvKYvrni3Dp7ovukjP8nGrPsITiLOnbUVh8ehpKrgln2nZoCq1qbhjowvBRFR2cJIuv87bEtSnHKafLGPPy/vj9Wz6yQr2vEf33UnuODwDQCWq89M9vbiyaUOSJGlDkXXUG5sWVfBtn5lnK2R2R1E0heFfaY62bT/rU7u7fe/5FJ+26FwqSZIUxp5rjnBkdui4ZXuVSwNKVDD9VJlNH84R7TGolK3VLpK0gXh1wfxLVbLXxVCrCvoZFWdXeMxBbMyn+zkf1YNGF+RvUKkMK/hRBb0k0G1wI4LtT9UpDmjMDxv4keUjVYcnS+SqNgKoRI3LvIbSelQ/45C7KY4WU/Dq8qZUWjvcSjMxZffdSfKv1mRCCUlqE6tV/7emg1MB/JrP6DfzDP9KJ3pco/z5KOPfay3r+YNHW8+Ovl2dXlG5VKX1k++I3dXyvHF1ZQ+HjtBanvcnpR0tzztrt96RoT+zzGgkF5h3ky3Pe1TtbHnehLKybVfwl0iHc4Ht8ZmW5+0yWh/hN62ubBSW/bVNLc9bcmMtz1twWp8XIKa3nh27P9b6cVheQQt40lhZpcXm2HzL8443si3P++3CTSsqx9HYRMvzHm/0tDxvUmt9e/THVzZyxOFib8vzJlbwu+xNT66oHM4KUlDZfuuXt75E69vDF4svzo13QervFfa+VmJml4DI4vmna6mWl12sR1uet+6srNJCUVq/acjGGi3P6/mt/yZ7cyv7vUtO69vD9lu/FrorKDPARD3d8rwr2UcTkdavWanIys53K9nvNLX1+5mnZ1q/jwDImK1f4zbF8i3Pe7TS+rmxN76yzsf3dLQeVHhX/GjL877SGF5ROQ5H+lqed6Te+r1S2VnBdTa9sv3umnjrx3hPpPV7pZcKrd/7AFRXsI6840zLs25l/KLvRX81B3GVyBoKSlVE81+7aYd1+tKXvnTu76Ue6hVFkZ1+JOkqGHp/dtFr3xMUXqtTH7dxiu3bEUuSJOlqivbq9NyfIpLTUBQFt+Zj510qJxqoUZX4QARVV4n2qNi6guYIth5s7XlSM1U0s4Vn8S5oTDvY8y71lIZvLN34EiZecxmaqNI/Xce0m8/SpaTOVG+USkLHtH3y2QjlSOt1FJJ0OQyX8yjASCq72kWR2pAWVVFUmbilXRReq/PCv95N3PLoLdTYPVpk92iBA3uzq100SZLWkHatW76c1vv2kXXUG1tj2iW9Owo+HP/SLP0Pp0kMN9vW1EmV0jL9EPpjS/cPM1V32TKU3aX7AZz2cku+b7vLP3efnOlY9Dpie+wYnebw9hSnZ5JspfU2QkmSpPXArfq4NZ/ElgjVUzY+S9d/Zozl6189lq531Zfpb3TN70eoHRBc/+UyWjx83nEru+Qyjt/Weh82STqfVxcc/8tZtn2yk/r/7VA63MApe3DBrjj4PgUnpjL2nSJe7YI3Mxr8WgfRSnNIucS8z8ABByEE1RGbmecquGWfG56sLfpYx7M+8dPgq5C/DTo3FVmuZ1e+tnT/7VbusZbrtz5fXb6/fGl2mbgBbenng/4W+uHe37F0f7sD1YFll5G3l16XVvqSZrTqsvMsR4ilz7VH/+qWc38brscDL4+jfGYLR7cs3Kvu/M0X33I5JOmtqk82Y0K06NoYgV26umRdYLj1vk1Wq/5vzQenAgy8O4seUxGeoHREZtGRJEmS1ogIlO4UpJ9V6Pq6Qm23wNoEXoZzV9jOIza9rzsogBsBO6mS36RT2KKBurJASUmSJGntUHTofSCFkdGCldSSdBE//elPgeZD/759+/irv/orbr31VqD5sP/oo4/y0ksv8e/+3b+ju7ubL3/5y2zZsmUVSyxJ7W3qyTK996covF6nMelgdupk9sXI3dBs0Kqetpl4tIRw1nmtoyRJ0irpuT9JZk+zU8XUk2WELzBSGmaHTqTTIJJZ6CDglD0amQindsW57vlmJ4paUuOVOzK4uoIiQHMFsTmBYft4ukKq7NA/2SDWWD5oquttSbqebnYSqSY0fFVB8wS6V0ZzBYqAelyj0GMwr0epxXRqMR3bUMmUHd72SjB5Ybrikq4sJEUa7Y1zYEewk63vXlD/44V0WPBDpr2VaqOwS1fYd4R+toX5QpbvhyQEi8aCyblMI5j4MGYEO9dUI5HAtHI1ZPvawY4mopV1DZul1ZyMYY+AeshGcYNfErp5w1o4w/rPhOzqXY0arqJQNVtP9AagOMGChOVkFUbYjx3y2ZD9WoRtk5XHhgOgNkIOiLDFhx1fLd7KKSG/V9h2EsFdM/Alqhr80rAkcYYW/FHjiWDHy3otmIwr7PhqhOxLqWSww+mtvaOBaSfKwUS7qqGgGpocYaqN7PjUywBocRX+aSf9Z8rM7NappRZ3GVBD9lfbDXYrcEOCQ7yQE13WWLy/alpw+b4WPM7D5utJBRMSliPBE3i1ETxYw9YrLGFnR7QWmFZ1Fy9PDTne9JDyzswFk0lGosHrXlj/j7l6sLNlWALO0/lgEE+tEjxvGObi73VDrqGZTHDdKyHnIKcS3L52NThNCdkmZjz4ew3mgsFOO9PB+6/xWmbR64MTwQS7tZDf3vOC2y3sfqFRC362UQ9Zr5DzvJMKfkfY71WzFwd+hQVZhZ27q1roBSjgwvL6dVl3LS0m66g3Nt/yURQFNaLg26I5OMTZ06H549aT5643XfMWCjDdtbLnJkmSpPVk/sUqPfemqJ5e/ZFTAWLXVKkfiZP/TjfZd86hZ5cPrpOky8l3BKWDDTpujtNxc5zS4QZTTywO4LTnXbLXxUlfEyX/8uLnYafoMf10GS2qoJoqueubz+iKopDcapLcamLnXWarPn5CpetxH3OqeWvlmTDxQZp9Q2XIgwQ4usaJgTQ7zhQZ6UtTj66L8B1pgzCSzforpyyTVEpSu1it+r91cXXzzlaYF99oUDku79QkSZKktcPaChVbkHxBIXlAJXkAxNneOl1qlTf7OjRSCroliM/5JOZsBvbD5HUR5revbBRUSZIkaZVp0Ht/itQOExRwSj6TP1rZqORXnKA9O462wTqNjIwAzYf8z3zmM9x8882L3t+xYwcPPvgg8/PzfO5zn+MTn/gEL7/88iqUVJI2htKhBtnrYmSvjeHtMPHqPo0ph+LrdbSoSs99KTZ/JMupv219lHdJkiSpSU+p5wJToXkPXXqjwdSPyyg6JLaYdN2RwEg1O+MbKQ2j6J0LTAVQfIFrNBtEhQJuRGGu82yThhBce7CI7oXfJAqgGtNJ1oOdnhLV8MbVRMUjUfEYJDwj/3wmwoFdOepRjajlkSvYZMs2myeqzGZNDm/LLrdZJOmy0l0X0/eYM5fOrC9Jl0I5rwV58L0ZJh8r4dXb4MFcAsCr+Zz66jzDv9LBTc8Uee32NKVO2VYhSRLtW7d8Oa3z7SPrqDc2t9LsvBDJajSmzz4vr/N9uhWbxmrMdJg0Yuuim6QkSdIlKb7eIDZg0PtAioZjwyo/4hk9Dh0fnCH/3S5m/7aP2O4qiZvL6BkZpCpdPdNPVygcrJPZGyOzN0rhQB1rZmEfrE84ZK+DrjsS2HMu1VF70b1R8fWFtoLZ56ooGsQGI/Q+kESPa0RyOgPfgnq/T3QKvCj4OtS2IActkQJG+lJsmSizZbLMoS3BRGOStFqMjIbvCPzGBng4lIJkXWC4db5NVqv+b13Uukz8qMTwR3Jkr42R2Bxh/JECdl5meJQkSZLWhvo1UN8pMKYFxgRoNVBrIGoqig92XOHU3Waz0sH36Tzq0vOGQ/+rNtnTLqfuDGadliRJktaO2JBB+poosT4D/Wy2MLfiM/1Umdpoq0PrSBKUywvBFvv27Qu873nNQIkPfehDfO5zn+PUqVN87nOf4z/+x/941cooSRvNmX8skNgcQUuo6DGV+FCEnvtTjH23iFf3zwVNSZIkSSvjln2O/49ZUrui9NyTBCC9O0q0X8dIaSiqgjXv4tk+WqR5j+0DTlRlbEuUyc1RxBJ9N1QfqnGdTNlhrDfObM6klDCwDRXHUFEUBcUXvPOZcQCODaeIew4DZxYHnp7cE6fU0Wwm0VxB56RN96iN7i9ucZrPRHjp2k48vVmoRlRnvNdgvDfBwR3ndSKQzRbSVbRlvowCjCYzy84rSSslXKictEhuNYkPtTZan7S+2HmP8e8XGfiFDFvfqPLq3dnVLpIkSZJ0Fcg66o2tMePiNXziw5GF4NQNwLQ85nLynlaSpPY3+5MqWz8WRTut4m1f/YpKo9Oh+6MT1F5PUnkxTf1QEr3bRku5KIZAUYxmEK0uEDqQ8qHPg9g6jwaQ1hR7zmPmmQqxPoPuu5OMfaeAOHsbVBmxmXqyTGZvlIH3ZHBrPtaMw9QTZbyQIC3hQe20zcn/OU+032DTB7IAxCaaMSzzd4A1IINSpXCepjLWnWBopsrhzVl8VVntIkkSqqmQ2hWlNrY2Rl6XJOnyWK36v3URnIoLp/4uT/e9STJ7o2z+5Q7KRyymnigv/1lJkiRJuhpUcPqa/940XYuHzKcyd02EuZ06wz+xSE757H6kTjnr8NqdsiOZJEnSWhDt10lfEyM2YGAkVRRVQQiBcASNKYf8K3WqI7JSRlq5WCx27uE/lUoBEI1GaTSaQRKzs7Ns3bqVZDJ57jPf+MY3ZMcfSbqCfFtQPmade60YNQbfk2HofVlUQ2H+peoqlk6SJGl9821B8UAdhCC1I4pv+yiGgnDB7NQxOxY3T5y+Js7YtgtGgLxIPyRfU3j+tk4AXDc8kcAdr8yc+/vkUBIj4TG2Kc7e/cVzo6d2TNpMbI2em6/UabB/cyeqD6ovUH2Bpyt4muxQIq09/aUKPjAbDamDlKTLYOIHJbZ8rAPhCjxLEOnQcMo+wpGdRNtF9bSNAOoJDYQARXaKkyRJaneyjnqDE1Abs4n1b6wR02sxnVjdW+1iSJIkXXFuxac2bhM5rq2J4FQARYfEDRXie6s0TkWxTsbwGyp+XQNbA1cBBxRXQbGbz6Rii4N4m7XMkiVpBQRMP1Nh8L0Ztn6sk9LhBvMv1fAtQelQg9KhBuk9UXrvT6EPm2jxKl5j6XuHxoTDsf86Q+6ve+h8VlC8UQamSssb7UmybaJM73yNia7EahdH2uDMHp3+h9OouiJjsiSpzaxW/d/6CE49a+bpCvn9NQbfnSF9TZTE1ggTPyxRPyNHK5IkSZLWGVXl1N0xYrMugy/ZpAsu0YpLI7muLs2SJEltI9Kl0/dgikhWWwhGdQWNGZfqKZviGw382tpowFmOIpr/2k07rFNHR8e5B/98Pg9ANptlcnISgG9961vcdttt/PCHPwRACMHo6OjqFFaSNijhCMYeKdJ7fxIhIP9KfbWLJEmStK5F+3T0pMbkYyXMLp2BX2gm5rLmXMzOxXUg41uiYYu4ZEIBy1D56U3d+JoKeFRTOs/f1YHZ8DEcHxEPuclUFHytGQArSWtZwnYQKOjCx0V2fJIukQD9H2Nck18YWdpKKVTflsBIqBjJZgKAHZ/qQlEVvIbP2HeLWDMbZ6SttubDbH+E7gmb7ol5ZvsiHNuXQJirXTBJki4X3VnZ+bpd65Yvp/W+fWQdtaSZKnpsYz0/1GMayaq8f5UkaWMoH7XoGUyi1ECsoXxmiiGI7agT27HQ7jZuZRfNI6oKjOooL0dQvp7A7HZk/YN02TQmHE793TyZvTEye6Okd0WZ+FGJ+lgz/kC4Czf6dqG1pBbCB/1sPJebku0J0vKqMYPZtMk1owVmM5e3TUySVqr/nWm8qs+ZH5Zwq2urT2Qkp5HcbqKZCk7Fp3y4ETqitfTWybrAcOt9m6xW/d+6i4Bxiz6n/i5P9voYXW9LMPDuDMf/2+xqF0uSJEmSLkm9S2fsFtj2pMW1z5d59e4MbmRjNQZJkiSttr6HUiS3N3vdWbMu1dM2pUMN3MraqniR1r/u7m5OnToFwMxMcySvHTt2MDk5iRCCz33uc3znO9/h4MGDKEozSNowNlYGc0laC4QjmPyRzAwpSZL0ViWGIwy8uxmMmthkYHY172tOfnkOt+wTyWkktkRIbDHJv1yj8VAvXNDnwzQWdz6KRIKdkRKxYBZ9Q/M59kAMFIUEDRJAobIwKqtraGCA52pQWfxZJaS1SYhgxxLfCdbfCCukTufCz+ohzxlqSAtX2LQwIWXDa7EjTNhXhD0GGRdMDCmbH/KdjUbwXta2gyPd2mbwd+1JVQLTLtwfAMr1YASV4wS/w7WWbw4TfvBzQgtuEOXC7QFQavG+PWTbCT3kh9BCpl3wFTPpGD2lOg+MjzCeS7B/uBNjKrg9wpYf9tOH7nFvYTcMi5cVYet1wWeFGdy+IqwV2A1+gR92eIUcl0rYfh62rqHrtfzv5TaC+1spZFotGvy9YvHgOa0zGzwe5ovBzPph56q6FQlMG7l9cQKWrjtVcjcs9Fg1ywLzxsU9WGeeqWAXPPrflSZ7XYypx+X9crso/P4YmV/JEcnpdE3aGE8U2fF/zQfmy7vBXs3PTW4NTGvYwfPhkWL3otdayLlAUVurh/P84DHdFa8Gpl3bORmYtjsRnJbUGoFpWa0WmHak0bfo9VP+jsA8jhe8juiRYIdWEXIa8b3ges0Wk4FpMyI4zSkEOzMq8eA188J7nFjCDsxju8FzlVMLnke0kOWHUUN+V98POVc5wf2mYMeC06zF06LRYBJz1w3+Dk49uHxhh9zLhZQtVMi1oOAFz8t5P/h7XXjRVEP2kVTI/W3CDP5e04Xg8nd87OWzy4XeB9IYA3AiWAppA5N11FJ8KEJjemMNAqG7Po4uA0YkSdoYKicseh5Iop3WcHevs1GjEwJ2O4itDsoP4vS/K83IV+bD6ysl6RK4ZZ+5n1Up7K/R+/Y0g+/JMPrNAta0S/mYRecdHpVjVsv7XP+70iT3C9wkNIbkvYbUmte2dXLXgUnueW2S4i6T8lGr5Xp46eqJDRrEhyJURywaU+2XKMHs0TGSGpOPla96YKpqKhgZjUhaw8ic/ZfW0GIqpcMNVEMhd0MM3xa4VZ90WiOzN8apr8p7Aklq1WrV/63b6JfC/jrWnIuqKWz+SBY9s25XRZIkSdrg6p06k5tMzIbPrU/kyU0FG50lSZKkK2Pw/RlSO6LYeY+RL88z+g8F5p+vre/AVNHG/9a5ffv2nfv7yJEjANx7770AKIqC53m8+uqrOI6DEAJFUbjppptWpayS1NYUyOyLMfjeDF13BTuPSpIkSZeHW1u4pza7DIQvqI3ZKAroKRXfEZSPWEz8sERj2sWwPFIlh02nqux5vcjAWDAwZEUU2RlEam8v7OjlZ9t7qUc0BvJV3vXKaa6fHyfqBoNXJOlicjfFifUvbnD2PUHpcDNgrz7RDFwwchqK2hxpq3pK7mPtxOzRKbzeDFgWviD/Sn2ZT0iStNYlhiNs+80uElsjOOUVBiSsdv3vevm3jsk66o0tsbmZcGD+hbf4vL2OqJ6gI29TSskga0mSNgbfEnibfSIv6+hHtPUZxGGCuKeBHlMZ/ic5stfH0KKyrle6fLy6YPz7Rax5l647zrYVC7CmXczu1sf8Sm5tJp6bf5vcP6XW1aM6z+3ro5iI0PdgmuFfzpHeE5XnuTXEyGgMvS9Lx01xNn0oR/+70ijBXGjrWmqbiVv3aUxemcRFWlQh2quT2mnScWucvnek2PThLNt+s5Ptn+hi84dz9D2UJnNtDCOt4RQ96hM2nbfEye6LMf9ijRP/c47TX8sz9kiRSEbDzK27MRnXh9WuY1vL/9ax1ar/W9dH6dSTFfrekSLSqTP4CxlOfTW/2kWSJEmSpEtyYl+SYqfBrlcr7H2pQi1R4+W7MqDL5AuSJElXSt9DKeIDEaqnLcYfKa12caQN4KabbuKv/uqvEELw7W9/m9/7vd/jk5/8JF/4whfwPA/lvAAKcXYYjX/1r/7VahVXktpW3ztSpHY0R5aJD0XQTJXZn1fxrnJGSEmSpHZnzbiM/N080W4dPdms3+i6I8mWj3aGzr/t6dlFr/snGhxIpSlndHw5wokkhZrLxHgis4m++Sp7x+bptqp0z1QZjWc4kuoCVdYtSheX3hNd6IB3nrFvFmhMu0w90RwdNXNtlO67k+Sui+PWfaqnZHLFdhHrNxj6QBYA3xGohsLgL2YQbh1lXfcikKSNS42r9D2cRvgw/kiB8pgMOJcWk3XUG5gCHbfGqU84VE9vnGQjPbMNDE8w3hccBV6SJKldWXc6mD8zMJ8z0E+oNO53ILbapVqhDp8z3yyQvT5G5x0Juu5IUDrSYPanVXxrnUcLSGuDD+WjFp23LdSNNWZccje2drCkd0fP/d3zo2YUS/F6BScDVh8I2aYhLaEe1Xnpmm72/ZtX6bg1Ts+9Sbg3SX3SYf7FGvWxKxMwKLWm/+E0Ttlj8rESyW0muevjKLqC8Nrj+qMaCuk9UUpvNN5yAJ4WVYhvihDJNUc/PTcKqrnQNuVWPeyihzXnUjlp4xRdnKKPU/LwncUFmP1JFeEJxHmD1cpcxJK0cqtV/7eum5XsWZfTX80z8IsZ4kMG6T0mKFA6uHSjqFXT8WyVeHbjVLZJkiRJa99cv8nPOg12vF6la9LmticLvHxPFteUncgkSZIut9iATnK7iTXrtF9gahtkbwrVBuv0/ve/H99vBr9FIs0M5du3b+eLX/wi//Jf/ks8b/FIBp/5zGf48Ic/fNXLKUntrnTEOhecCpC+Jkpqp0lj2sUpepSONGSDjyRJ0mXiFDycwsI9TuW4hZ7UQDnbmKgqDL4nc9HP7/t581796HUJpoeiF51Pkja6yY4Ekx0JOk953JifYHOtSF+9TN6MU9d1PFXB0jRmoklsfV03DUqXiZHV6L0/Ffqe2a3TmF7o/VF8vUF1xCbSoWHNeYs6hkjrW2PaoXy0gZ5UKR21sOdchj6QpfKTDMm7iyiyaUKS1g/fZ8dIha2/3gEqTHy/RH38Ek7Y7Vq3fDmt8+0j66g3ruTnhjBPWhy6M0n5t3oC72/V5pZdRt1bevTRPnP59ra+yNLzWN7SzyszlWBylQvt7Z8693fXGz5WF2zZvrB+MmxfkqR2N/5AM9lUrN+g7+E0kSMGp/8+j283b2TuenX5ftPXRCeWfP+R+euWfP8749cu+x2dyaVH8k5+1WIGmLMEqRGfbDRG4sYYczdp1AYVhK6QjjSWXEb+7vllyyFtXHbBQzUU9JSKW/axZh00M3Hutflk30U/688LyicEtS6Vzlc89Dpk9jePMc+AiQdU7A6Vjmj1LZfzkZG9y86jq0snYa7XI8suw0gufW7wvaWHjizaywf2Hq5dfJsCbIouP0iZL5ausDqU7112GV+q373k+84y6wqwKze95Pu/seVnyy7j2W/uwAachocxqmAeNxgayGJv9qne4TP7Djlo22owMhpzz1dxSj7JLSb1cbutEiNkro2i6Ar5/Zf+ZBTrN0jvbvazUVQFp+LhFD2sGZfKcQu72HztlFbWnhC2nVM7TJxyM7hVugJkXWC4db5NVqv+ry1aoCcfK7Lt41303p9uTvBKlA6HB6iefqWXNx7bDiiAQDM8FE0gXBVFEWR7y+y9+zg9m4tXrfySJEmS9CY/onLkphTVYzWGj9a59ck8r9yZoZFqi0u2JEnSmtH3cBoEnPlOYbWLIm0gw8PD/Ot//a8D0//5P//n3HvvvXzta19jbGyM7u5uPvShD3HLLbesQiklqf3VTttURiySW0wqJy3mX6yx+SM5Yn0GsT6D9DVRjv33GdnpXpIk6QpwSj5OaaGThJFZvoHfjiiUs0t3gJUkqakSifJM71a2l2bZVCvQ06hwflJpwSzFiMlLPf24Mkh1YwtpWK+N2Yw/UkR4wffcqo9bXbqTm7T+xPoNUjujZ/+OIDyBoio0DiRpHEiSesc85o66DFKVpDWuZ7rOtUeKGK7AtQWTj5Won5FJt6Rwso56Y+q8I0HHSYuRa2OUOzfW87VWB6EAngBNDrkjSdLGUp9wGP1Gns0fydF9d5KpJ8qrXaRL4psKxWs0KptVul706P1ps+LCi4C9RaF6s4CNdXmTLpPGlIPwBMktJoXX6lgzzcbhaLdOpbx0oKbToZDvUHB9lepmldRxn+4Xmvum5kCkCHbHFV8FqU2IKNg7BfYOj8hJhfgLKomfqcyudsE2KKfoEe01SO+KggqTj6/P6+fFpK+JUjlm4S1T3x8bNEgMRzBSGm6lOdKp8ATpPVGi3QZOxSP/Sp3C/hpe4/JH8mlRhdiAQWZvjPyrSye0kCRpsdWq/2uLlme/AbM/rRLt0Ultj5LcGb14cOpLAwBsvmmc8mycejGK8BUicRvX0Zg9k+Wpr96KHnEY3DnDpr2TJNJ1Uh1LZ9iRJEmSpMtpbEccK6axa3+Fm54tcuC2FOXO5TNYSZIkSctLjHroMY38/hq+vM2X1og9e/bw7//9v1/tYkjShjHxwxJddyTI3RDHzrtMPVleNHKU2aXTmJTRqZIkSVdaJLc4OHU+E6ESN4g3XIQCh7dnqMXPNmPUQDcWIqYUX5CouvRGqwjAyqj4kWZH00wkmO23XDcD05SQfqlqSIZx22qtd5OeCgYBeM7iiB5FDTbQ7viNlwPTjnwp2AgUiQeX73vBiKELvxNAWCGBwF7IBgjrq3vBtLB1CCP84MJ8gmWrVYO/zemQTO6aHoyY07Tg7xWLBreToy+ez7GDzWN+yHr59eB8ImQaesg2MUIi/EICvBQ9uA7CbS0SLJJY3EnKMprLOkiKg6TA94k7Hrrrk2i4bJkqkytbPDA2woHNHYz2LNz/aPmQdQ1ZVaGErKvW4j4Rso0VsXwHcSVk+wpCOk6E7XNayO8Q9h0h2zysvBjB71UuWP9sNjgiguu39pt2J4Of7Y211vllvhQPTNNDjhv/sU1YwJlxj6FnF46X6ik7NDBVal/1KRc7BZGzu5iiKTQ6FaJzzX26/FgHfq1I/MYKWsgxtyUTHIFmpp4MTGvYi6+jIuTQCjt396WC+37JDl4z4iGX6YwRvBfIaMFOTB16JTCt7AVH+sg7i4+vhBHspDplBUcjNkKuBV7ItTvs2qqGXZdCznNh52At5NqiXzAtbFkxM7hebjJY3pgZ/L1qjeC1O2z94yHfMT6dDUyrO8GLULG0eLQ8z24xcroevA9SQu6DhNHaNU4JuRZEosE6hFbuK5OJYAW1FbLumQ+8sbgMOvTvMsldH28mfPFh9qUa+RdlZz3p0sk66vaUGI7QcVOcU3tjTG2NrnZxrrri9QpdTwuMEji51S6NJEnS1eeWfWaerdD3YBpr1qXw2vodP9qLKUzdrWEUwcwLjLIgc0ygFxSKD/mwfB5ESVrEtwSVExadt8VpTDs0plyckkfHzQlUU0XMCuwcLSW4qPUtnqc6KJNiSJdAAXubQHF84s+r50bxla6u+qRDdl8Mr+Fz5psF3Ep7/QZu1Sc2aJC9IUZ9olnHp8dVzC6daLeO2aWjJ5oXVbfWHFU6NmiQ3hNF1RVqZ2zGvlOgdoUSo8UGDLrvSmJ2NevH7EJzNFZJki6PK1n/1xbBqQCFV+uk95qktkepHG9W4P/fO3cF5uu+B7L7FH7yR3Fqow6w+MSommU6b0uQ2hFl5EA/p14fQAjB6b/PY89duRbZSKdGYnME4UPluNXyhWzop8EGvouZagQbxC6mN9p6lodZp/UyANySaD2XR59WanneMTe7onLMu62XW1Nav7HIasGOAxedV11Z45Cptt4x1vJbP7x7zda380p1mcFG3cshbwcbhpfycmFTy/OmjdajVCx/ZbUaP25c0/K8Bav1dVTDOgRdRN1dWaqwTKT17bGSeW9NnFxROaJq6zeyT1SD5/+L8Vvo/HSpkpHWb4iNsE5S18BozmDTUw7X/bzMxO065WGdir2yINXpuXTL88YTrZc5HWv99z5U6G153pUSK/gN7+k5vqJlF5xgh66LGam2nu4srOPK5TJfa/3c0Zlo/TpUtFfWWOmH9mYNZ3utX7OqTuv7f2e09WsywISdbXneUaOz5Xkr3sq2Xclt/Td0VnAdWsm1YiXnXIC8m1h+prNO1VvfdjV3Zee72Vprx+zA6yWEEMz+bGX7yHqhEN6ffL1rh3V66KGH+NSnPsWHPvQhTDPYmVKSpKvIh9mfVEluNcleH2fmmQrFQ3Uye5rX4U0fzHHyf821XUODJEnSWlM7bTP7sypddzSfKTqKNrGGR8PUyJRtbt0/i6upzOZMjmxPkyg7GK4gXXTYcSxY7zh5o0F+2/rvhaRGFYZmKlx/Yp4zXQn2b2/9OUqSFlFV6tFm4E45aTLZlaA7X+Omo3Ncd2qezTMVfnZNtxxFdYOqDmicfKfC1h+erau8/MnNpTUsPmQw+N4sXNAk7OvQ9dtjOJMRnDMmkc0ys5skrSWJbRF67k2hRRUURUH4gsoJm8nHS3AZurO0a93y5bTet4+so954FL2511ayG/Oe/82RU93Wu8xJkiS1nfIRi0iuRvfdSXxXAFeuz9IVpyg4WXCyzeubMuyQ+aFK+nGV8v0+Qo77IK3Q7M+rpHZG2fShHG7dx2/4oEDPfUmUR328CBSvU3ByCuaUQLOgcL2CMBY/GXgxmHqbRu6gR6QE2SM++X3rv61CWh3WVkH0dRh8T4axR4oyQPUqKx9pEMlqzD1fxc63XzbH6acrdNwap/P2BOp5wfdvBqKWjlqYnTqNSYf5C5KgKTqIK5zjffC9GRRVYeJHJeoTzrIjvEpvjawLDLfet8lq1f+1Vc2TcEAIQe6GOEaqeVMnBDglj/IxCzwoHbbI7ouT2hE9G5y6mG/BzDNVZp6pEunU6Lg5QWq7iRZTuSy1+RfofXuK1A4T5byTe9cdCSonLDxb4FY8yoctXHlilSRJ2pDqPc0OQlt+ZNP/cxejKqjskDVpkiRJb0W84mHNulfi9l6SlvT444/zxBNPkMlk+PVf/3U+8YlPcPPNN692sSRpQxv9ZoHe+5P0PhDsnaTFVBmcKkmSdJmphkKs3yA2YGCkNaK9Ol5jcTRUzPKIWc2b9ajlAz7JmsuWsfDkMqUhDcUTpCZ8+l5xiOZ9andf6TW5MrSESt+DKeKDETjRHI3O8OS1SLq8ZnJxHr0pxs3HZugpNnj4lTFeG+5gQpfDCG1EdkalkVGIFgXddydRDIX8S3LUvY3AuUintsqwiqJCZMAmMrCOOyxLUhuKDRr0P5xGeFA5YVM9bVE+ahE2mLgkXYyso954KsctrJtcBo7VOXL7BovQFILkUUGjD4S+3ruWSpIkvTVzP6ui6go99yVx8zX03BWOLLlK3G4oPuSTfkIl902V6s0Ca4uQo6hKLXPLPqe/lie92yR7XRxiKuXjFvlXavD5LMmjgo4XBSDwNVA9QED+1sX3FrEpQe9Pm+0angFOXN57SG9BBMoPecT/p8KmD2YZ/16p2c9Nuioa0y5j3ymudjGuGKfoMfVYmZmnK+jJZnJTryHwastXMF2pwNTElgh9D6VRFFBUhfqkQ+WYHC1Vki7VatX/tVVwavmoRXxThNROk46bF4/e1PuAwLcFqqEghKB0dPksr/acR2PKIbXdBH+hg4yRVclcG6NwoI5bvPSa/sy+KOlrojgVj/LRBtXTNtl9cZLbIiS3myhK8+a087YEY98pUh+7MsNfS5IkSWubk1Y5/p4IW39o0/W6Rz7pUO5b2Qi4kiRJUpNq+yBo70o7QXuOdtJG61QoFPizP/sz/uzP/ozrr7+eT33qU3z0ox8ll5OdwSXpavOqPuOPlIj26Az8YgbNVM+91/+uNCP/a34VSydJktReBt6TIbE5mHBL0X2mnixz4P/YRbZsk6o4GK7PXM4kWXPozFt0zy9ugJzoj1LIRZjsi9LX0Rzyzcz7dB5xKW7WMK5wJhrFF/TPVplPm1iRS2tmUX1BouZQi+loCZWOG2PNzi9nTWeinOxPMZuJXa5iS9I5vqrywq5eevJVbjoxx/Uj8wybVV7o75OjqG4wHQddosWFB+5ot/z9Nwqn6HHqf88z8MkOjPMGI290y86TkrQWZfZF6b4zCT6c/Mo8fgsdBi9Ju9YtX05tsn1kHfXG4tZ9tDZuFruY6DgYxWDwiCRJ0kY1+5MKye0mjdcTJO9pn6AbtxcK7/dJvKCQek4l8aLAHhT4UajmtLYc9U66vKw5l5lnXSI5nfhQBLNDI7U9Te11n+INKqVrFRQfnCSk3xCkXxcUbhSLkl/U+xQqQwrJM4KpezQaPeoS3yhJy/PTcOYbeQbek2HoA1kmflgMHZRNki6Vbwvs+bVxjYxkNVRdYea5Cva8S03GTF09si4wXJtsk6td/9d2LYxTj5eZ+nEZPaU2hxlWwewxSG4ziXbpOHWf6afK1Mdbq3WrTzoIIUhfE6M+3uzkMvzLHSiqQnZfDGvWZfqpCtZMa8uLDeh03p5Ai2sYSRXfEYs6Ok5OlBZm1qDnniSZPTE6bokzNtY+D4SSJEnSyvhRlZPvjLDjOzbbX6hz4B0abkxWYkiSJK1UrOajAI4cCU9aRYrSTJoE8Oqrr/J7v/d7/Jt/82/40Ic+xCc+8QkefvjhVS6hJG08jWmXE1+aw+zU6X1HCrNDb5vKRkmSpLXCKYc3cI7+Qx6vIdA9n4ap4WoKhuuTqLkkai6aJ6ib2rnRVH0FOuZsNE8w3WOeW46VUxm/oxn8mrnC67JzpMTWMxVGepMc3NpxScvYMl7mmlNn2wN+o/Pc9MaMw5lvFjj83265HEWVpCVN5xI8elOMW47O0F1q8ODIKfb39jCZ2mAjKm1guaPN9s3iG3WKBxpYcxswamEDS++KLgpMrQ4p+ME8EpIkraLusQZbD9Uw7knhO4LxHxSvXGCqtKHIOuqNo+vOBIlNEY4Om8vP3GaSRwVWJ9jdq10SSZKktUH4UHqjgZGNk7ijhGK0T0OYH4fyfYJawcM8rhAZV9ALComtJna+ttrFk9aJ80dKTAxH6P1ghv5HfIQCdgeUdyvUhhSy+wWxMUFt+LwEGIpCZVglecZj4AmP6duhslX27ZTeGq8hOPOtAn0PpRl4d4bpJyuUDi8/OJskrZQaUVAjCoqmoKjN0UvRmv8rKihn/3ZK3uVP+qBCYuvZ51UBtTMyMFWSLperXf/XdsGpAPgsGtHUzluUD1/a0M7WtItX80ntNLHmXcwuHUVVcKsedtEj1m+w6cPZZvaAgodwBQgQbz63ieaIrcWDdYQHg+/LNotoC5ySx9SPyxf/co9zI3ZEMtollV+SJElqH35UZeI2nf6fu+x7rMLMlggTuyL4EVmRIUmS1Crv7G212sa314po/ms37bBOv/Ebv8E3v/lNSqVmEIKiNBsrhBBYlsVXv/pVvvrVr7Jp0yY+8YlP8Ju/+ZsMDw+vZpElacOx5lxOfy2P2aFfNIhKkiRJujQzT1dwKz5ddySYT0XQPcFEV5zNv6kRsz22/3yqpeWoAkzbp2faohqpc0ILhqKOieC0SCQYcNWoBSNwhB8cUWXnx18697fZo7P5w81sonODBmbCPvdeNBJsMO1ILO78NFFIAzC51eSaU81ptq4ScX1e2dHBxB1xxPsVjJDyxqN2YFrdMgLTPDvkgSdkvUKFzXfBJVGPBa+Rvh+sn/K91r5TCZlNiOBE1wk2aUUiwY4YW3PBkc97Y6VFr09VgkHFU+VgQKaXCpbDCSmH3QgpWzT4G1r14O9lmMH5bC84XxjDWPxbOGqwHMILqTs87/nKV1Se39VLz2ydW0amuW56mrH+RPNNPRj8okSC00Qt+L1KyO+vhPyuIr54/c8/pt5kN4LbQ4kEHxKFG7KuYfthyPOlCFkv3JDP1oPHlzAXf7ZSjQY/FyKVrAemeSHHUskJLi+iBY/DZDzYFpqOBqdtTuTP/e0+rKA9apLZHSPaYzD3syrVU8HfQGpPsz+tUv9sktRhQeqoYP4OBTUieG52W2DeihO8Zg4mg4mVU5HgPmenqoteayGVPHEjuN9ZXvDcUrWC5ShU4oFpJ2c7A9NeSG0OTLujeyQwLYwrFh/7c/Xgd1puyPkh5HxjGK0FgXsh5++OVPC8Ee/KB6ZV7OB2ql2w7bZ1Bj/XGw32XXhhclNgmhVyLVTV4Mq6Ieflshc8pykh+0R+LnhdvnB7ambwXBh2z6fngvMZIefRaj0YuBUzg/d32Xjwd3ig52hgWjNN4mLfGrlu0eueD7wRmAea95wD70qjJzR8T5A/UGP2J1e+U3271i1fTut9+8g66o1FjSjkboiTf7XG/Hs32Ki4rsCcguINSvhDpyRJ0gZVPFin4+YYjaMxYnvbL2jTy0LtFoHig1qF4uvBe3dJakX1lM34+1Qic2BUBLFRQdezAjfRfCDIvSiobV78cFAbUBh/u0bqhE/Xix5eDMTgapReWuusvIFm+vBmtfIS3X+FCxM/KNF9T5Let6fwGv66qL/VogpaXF0zI3NKF6fosPWfdqLqrT03jX+/SHXk8uyD8SGD7ruTGBmN4ut1GXy9CmRdYLj1vk1Wq/6vPYNTL7Ppp8r0PZyh+84kQgjcqsfEj0o0Jly0uErX2xLEhwyi3edtzgvOz6kd0WbUsYCRv53HLbeWzXLihyV6354itctk80eynP77wuVbMUmSJGndKQ/r2JbGpgMWfcdt+o7bi/pSCQXsuML4NSb5TTLFuSRJ0oVco1mjp7RYoSJJl9Nf//VfY1kW3/72t/nbv/1bHnnkESyr2Wnz/EqA06dP8x/+w3/gD//wD3nwwQf54Q9/uJrFlqSNRyBHjJIkSbpCiofqxAYMOs7GOKRPB4Na3jTdEeXE5hQNU8MxVBRfoPgCzReoAjTPpxI30Ll6I0eppnIuMHW2M0Ihe2l1L6on2Ld/Yd0N12e8M854d+KylFOSLsV0NoGnKviqfF7eKJSKQvS7C0FiZofOwLubwf2j38jTmJL3xBuBm1KoboXUUUFiRFDZJc8BkrTa0ntMeu5LgYDCwTozz1S4ire8UpuTddQbi28LrDmX5DaTGyuT+MN+oD/bm7LG8gFKL84FEz2cb3t8dtll3J88tOT728zpJd8/WXpw2e+o3z9FbNBAeV+W4v8xd/lH9pEkSVrH3IqPNmxTO5DEv8a9aPx+VF161LKYtvT72cTyQaE7MzNLvl9vIXlbyggJYikr6Efi+DfZ+NY6jyyQVlXjoSnO38NiAwaJrRGSW03qRxys/18wwVMVqOkw+ItZOr7hcvp/BxNDXSj546VDOUxt+Tq6zcmlv2esFkzoeaFjU11Lvr9cMsrjoz3Lfsd0Nrnk+9d2Ty67jIIdW/L9ZEjitAuFJcc833w1mJTsQkZ26Qf1b+0NJk4D0JMqWz/WfK8DEJ5g+pkKpUPB89mJr9y48LcQ3Hxgjq735xjbnWM+16zX3fbRV5Yt61t15L/fuuT7uz71wqLXWkxh28eb+1P5eIPppyryfHwFnPy765d8vyO99DNexmzuc0IIvO/a1LIqhWs0hMq5f0Uniq+CUBTScy7bX66h/U43zmCESk4j995jl1R2PaXSfWeS5DaT2rjNxKMlGcgsSZfRatX/yeDUFlRPORz/77Nk9kVpTLlYMws3el7NZ+rxJUY/BdQo5K6PE+01mHu+2nJg6pumniiDAuldUYZ/NcfYI0Xckmx9kCRJ2qjmtpjMbTHJTDhkJ5xmtjdPoHpgWIJo2WfrSw1y4w4n7pCdGiVJksIomuxoJ60O0zT5yEc+wkc+8hFKpRL/8A//wFe+8hV+/OMf43nNijZFURBCIITgscceW+USS5IkSZIkXR5aVKHn/hTRnoVmiXpEw4pojPQnmeyLo3o+Nx2apzvfwLQ9iunzgj9VBQEs3e3pMhOCvSMFNn2ik/JRi+y+ZqeH2pjNqw/2XvLoK/GaS+f8QlZhAby2fYONYiOtOblyHcMXjHQs3UFIah/CFHh9HtpkcLRHry7bITcMT5B9pfl7q2t/0AVJans99ydJ747i24LTf59fcd8SSWqFrKPeWMa/X6T77iTJH5vY99p42zdGh18j2UxW65Q2xvpKkiSthL67gfWDDKKooWTb7zypHjDAFPh7r2pNsrQB1Mcd6uMOs89Wl5xPuFA9bZG7KY4aUfBtGZQnLYhkm3WxtXGb8mGL+CaD7ruS1CccnMIS52RF4bXdOa4/lOfW1+Y4vjnF8eHUVSr1ymSvWwjuTW2PUjvjhAbfSmuD4oEbU0CBevfiYXwbjYW2g3yfwfTmCN2nbXpHbCpZjalLOMfFBg0G3p3Ba/hMPFqicnz5gHJJklZuNer/lhgIXLpQ8UBjUWBqq/wGzP28xti3izQmLy3L8NTjZQoH6xgZjS2/1sHWj3cy/Cs5Ij+IoL+sg2wslCRJ2nCK/Qanbo4zcmucE3ckOHZXgkNvT/Lye5JUsyq5SY/dT1TAlw3XkiRJb+o93azQqJ1u4xto0cb/2kw6neYTn/gEjz76KGfOnOFP//RP2bVrF0KIc1mqJEmSJEmS2kXP/SmSW000s9ksMdER47nre3l5VycTnc2Gal9TOTacBsC0V79jlOYLhicraKZ6LjDVt33GHylecmAqQCVl8OoNWeqxZqOuCihL3O9qnk9H3qLvVAPDkvU80pWxezKPAI72Zle7KNLVYoD9Czb1j9apjDTrS+yix8m/mcORSXI3jK7nfKJnByirD8q6CElaLaldJlt/o4PMnhhO0WPkK3OrE5i62vW/6+VfG5F11O3PLftMfL+EUAXq+MbpJtiYcRFC0PeONFp846y3JElSK7R+BxB4k8uPTLoeKXkN0edBe66etE5UTtrgw9D7s+gJeS8iLYhvaiZlnfh+idLhBlM/LqOosOVXOxj+1RxDH8oy8J40nbfFiTYWx5w4hsaL13VybDjFjtNlBqaWHhlztfhu88G5eraPnkwYs3ZEaj5Gw6fvqEX/cw6bf2iz7Zs2sXlBZdPS5ypfVxi5Ic6L785gxRSSBQ9FX77eQIsqbPn1Dnb8Vhc99yfpf1ea+rjDqb+bl4Gpa8Fq17Gt5X+XwWc/+1kURUFRFP7oj/7o8iz0Elyt+j85cuo6MvNUhcKrNbrvTmJ26uhJFWVCQZvQ0F/VcW9wcW+6tOBXSZIkqY3oKofvT7L1+Rq5cZeHfzrBS3s6mMvFVrtkkiRJqypWdBk61sBToXqqjYNTpXWnVCrx3e9+l29961scP35cdvqRJEmSJKltxAYN9LhKdcSm+Ead5Fbz3Hv983X65+sAuKrCZHeM45vSFFMRXri2i1o0OJLfUjTXJ17zKKeDvY5My2NwrEahI0Il01qziCIENx2Z48I7s/Ixi/imCMmygx1RcQwVoa78/m2u2+SoEFy/vwjA3pE8c+koiYZDsuaSsB3idQ/NX9z6JRSY2hxd8fdJ0lK2jxfIVS0K8Qi2IZsONxqlqJDc0jw/F16t4VZlYGo7i3Rq9NyXwp5zmX6qQqNXIX6mea1JHhXkb5d1EpJ0Vfg+uVmHgfekifUZqBEV4QsKB2rMPLP0KDzS+vfZz36WP/7jPwbgD//wD/nsZz+7yiWSddQbgXOrQ+TnEdwbXUSqzaKsQ9gFD2vGJbnNRPiCyR+VV7tIkiRJa4ZiCpSchz/bnnVASlnB72n/a520tjkFjzPfLDD43gxbPtpB9ZSN7wnMnE7htRpeQ6DoCrVRG8UTCE3ef7er9J4osQEDs0NHi6vosWYAYGqHSfFgA+HC+PeKmN0GmqmgmgpaTCWzL8Y9L0xxdEuGU4OJhYSpisKJ4TS5os3QZI3ZVVw3AN3zyeyLUjlu4dWb5978KzW6bk+Q2GxSn3Soj8mRrK8W1RPsPVIkXnc5eXcMT4do2SdWaQalbj7QHMHW08DqVGh0KhS3atT6FJxUa4H0PSMWZl1w4sY43l/MLDt/7sY4RqrZ5pvZE6N0uMHMMxWEDHmS2tyhQ4f4whe+sNrFWORK1/+159NFG3OKPuOPlM69HnouiTqqEvlJBP1VHXzwu3y0UQ11XkUYAr/Px+/1yY56JE8JtBqgghsFJ6PQ6IbakIKbPntRcX0ogtJQEAkBydVZV0mSJOmtOXlbnPJJi02vWdz2+hzTHVFe2t0BqszGJUnSxtNz2mLrgRqKgAN3poj92fKVI+uabGtZ82zb5tvf/jZf+cpX+N73vodlNbPByYz0kiRJkiS1Cz2hMvS+7KJpo10J6hGdXePFxfP6gqGpGkNTNU5/LY8155IBjv71zYvm2/nxlwLfc+yvbyJqedz38jSqgGev78VXmiOvpmoOe04tfNcbWw1mFZOOksX20yXKkQavbelYNArqrn/2AgCKBrlf7YCzDaanBpIMj1fI7I2R2Rtj4OdzQPPW2zZUynGDQjpCJWEQb7jsGmnW4//onn78sx1LMkWb604WSVdtrIjGme7Eue8dmqkxNHPxLNeeqnBwS5bRVAIKC+UVTkg9jx9yP6mFPCSEPTeoIRPDPnuBeKIRmBZ2V1tvBIOHPScYiKyErJaqBgPmDK21jNsD5uJ9zlCCyxIiWOKiFQwE1qPBTM6xjmDnCssNNsHNa/HANCVk2Fw15HfwvGD5qsULyue2Vu+nNJrzqb7P7SMT5OoWtqby8+29Sw/jC+iRYI8BN2z3qoc0QerB7a5FFk8L+x10I/g7R8xgOUwj+DsUConAND9kn9PM4Hf4IdtchEy78BHOqQb3c0UPbqQywWSC5Upwmh+yTYyQbeKHHPth6z9ZSC163TtV5zqKuHWf4sHgsSy1l+F/0gFArNcgtSuK+uLCvpk2GuSSNV4v9Ac+13CCx/R0LRWY5vjB85B9wfkwogePX8cPHpeThXRgWjQScr4N2fejZnA+M+R7T1Y7A9PUkPNgxTEXvc6YwWPllq4zgWkFJ3hMn6lkA9OyZj0wzQ7ZJnU3eH7ZnMgHpl3XFyxLVFm8TY7WewPzzNjBjgEdieD9iaEGz0FJI3h9DDt/he03ZcMMTGvlniEeD35nKuQ63Z8oBaYNx+cD00w1uI94tHZttfzgMfLiTcHPbt91kuy+GGanjqIpiE0RvJpP8WCV2Z/XYC3kB5B1y1fUWuqYJuuoNw41oqCNaAhTNPuBXUVCgDsVQY15aJmrM2KSokP/O9OYnTrl4xaFA/IeV5Ik6UJqh4s/v7LkgOuCAKoKJNfCjbW00dl5j1NfzZPaaZLeE0VBwXcEvW9fXN9ResVn/pY2PB4lOm9P0HFzvBmgOengVn28uo+d92hMLdTT1M441M4srrdRDAX93w+z+0SRRM3h4M7sooroM/1xbjyUp5TTsPOrMzKp4Xi889UzcE+K3I1xTn1lHuEDPpz66jyRDp3qiBwZ86oQgo6CzTXHSqSqzfqt6x51UL1gs18lp3HstjiJzCUM7CEEQ280sKMKs0MGuWVm11MquRsXt4v5tk9ia4TKCUsGqK4Vsi7wshNC8Nu//dsYhsE999zD448/vmpluZr1fzI4db1TwR/2afQ0iH49ivFas5FGIEAFxVfQppo3rSYCXwWrC1QH9CroE4L4BHTsF4izLR3NXWyhoUxoAr/fx77Rhq6rvH6SJEnSWzK71eRINMcdr8/RO9/g+qN59l8T7GwhSZK07tk+qblmRZ1tKjhRFdWH/pMNusYconUfT4PDNyWo5vSQ7p+SdOUJIfjRj37EV77yFb7xjW9QLpfPTQdQFAVFUc693rdvH5/85CdXrbySJEmSJEmXKntdjO67g8ENQ7NVntrXx45TBVQjvLFD+AIjo+EUg43pRlYjtcNEj6kohoJqKAy9OEHMXpj37v1TFy3X9tMldp9sBimW4zqbSxWSDYfJXJy5lEnNXAiCEB5MPlZi0wdzHNqWwXCa9eeCxUGXCmA6PmbRoqsYbGTfPFYh1vCINTwyJRvVF2gCTNdn76nConnrEY03hrOUEga+0QxI9VQFX1VAUUKD4iTprXjg6Cim6zGbiPLzHT0yqd0GVY812xHd8up0YpKursknSnS9LYkeU1H1s9eVbhftFyooUdkLRZKulK67EmT2xlB1BeEL7KJH+ZhF8bUa/iX0BZTWp7XQMU3WUW88Wlxl8D0Z1IKK/ZBNizH3l411OE75iWaXZXNHjdFrexnaNRVI8HI5ddwcJzYQYfx7xUAnf0mSJKlJ7fBwzkQQIph0a93TgUa7rZS0Xvm2oPh6g+LrC8ky9ISKGlGIb4rQfVcSNyn313aV2mFSOFBn5pnKij8rHMHh7VnKCYPrjhTIZ00mehaC/KY7YzQiRbrelmD8e8GkXFea4gtuOTGDAIQnMJIaiqEgrOazpJ33Vi1odiO67lCB/ukG5YTOc7d2Ybg+A/UqbkShkdKop1R0W2AlVIT6Fs45isLYriibDjW45qdV5pMqbuXiCSF8S1Aft4n2G+eC4FK7omT2KaR2Rhn/bvGin5Wk9ewv//Ivefrpp/n85z/PwYMHr/r3r1b9nwxOXefOvO38G5YKiS0R9KRK9ZSNW26e7KP9OtEeA2vGoT4eTDEQGzRIDEcwO3V8V+DVBV7Nw7cFekojMRxBd1Wio1F8W1AdsZl7oXpu+WdWWHN597HWW1caovVd1F9hObZEWh/MvuQHs6NfzO7IxTs/XSihrCzlQyM+0vK8fmhe+nAVN5iNdilZI5i992I69GrL85bd1rdzXF9ZBbKhtp4Jcc4KZhK/mKi2snLU3EjL84ZlGL6YrYm5lucdq2dbnhdAD8l+fDH9Zus3igUvOErAUhzRenaoTKT1ffSO3EjL855qrCyoU11BOpFZu/X9biXLBUgO20wMa0QfcRiYqVN54OLnv9lK6+WYLbY+tHYyvrJspI7X+u89lGl9v+syyisqh6G0vv8fK7eewWGm2vp27qnWSMz6KD6UBjXs9NLXu2ys9W1darR+/q/WV3atKNVaP6f3Z1uvILkmM93yvAfmgxn+lzJTb32fDsuofzEpfWUZwFZyDR+MFVqeNyxz+8WMWdmW5wWYtVrfdjON1udV3zG67Dwdt8bJXhdDM1VgcWXem9l9hCcon7SYfLyM7s/IfCsb3Gc/+1n++I//GIA//MM/5LOf/exV++7BwUGmpprPC2EP+0II0uk0v/Zrv8YnP/lJbrvttqtWNkmSJEmSpMtJNRc/18ylTF7e3sVDr4wxOFfj5JfniPUZmF06nbcufkYe/pXmiG6Tj5VQhEAoClHLZXiywvA/yeE7ArfqY6RUFF2B8wJTq6ZG1PYuOtCn4S28ofkCT1HoqFh0VBae27xPdCJcgWIoaJHmM3iuZNMzW+fEUJJTAykSdaeZANLz0TxBouHSP1vDVwFFIVFfqPfddTJYF9EwNKyISqLuovsLZYrZHumqzURXHKWF0Uol6a3oLNeIuh6ncykODHRDyMi00sYwMN6sT4/2GCgqzez2UtsqH7YoH7ZAgZ2/3Q2A9t4yiuw1IEmXXWqnSfa6hVFS3brP/ItV8q/W18YIqdJVt9od00DWUW80iqEw9IEsigbWuy1E7uo/Z0a21uFscKp1LM4zx25k+w2j3PrwwUW5cRxLY2Kkizk/SSTukOiuo+r+igOmFE+Q3RejeKAuA1MlSZKWoHa4YKmImoqSaKObUwX87S7q/gj+Fjkcm3TlDLw7TXxThJlnK4sCT1vhVn2oglOq0/W2hHw+bGOqoeBW3lqA5nhfgp0jJbrnGouCU4WqcHBnlpttn9ROk/LRqztC6Z4zeXIVi1e2drFv/xSNkodvyXat1WBaHv3TDU4NJTi8PXUu64SyefG+t8JQkYua3BGlmtXY8WKNzMc6aUw5zD1fDX3+8m3BmW8F+3endpj0PZRGT6nn4pEkqV3MzMzwmc98hr179/LpT3+a3/qt37rqZVit+j/ZzNRmqiPBwM/GhEtj4uIPWvUxh/rYxSvkZp5uZmrpuDVOcqtJalfzn1fzKR+3mH+pir+ye2tJkiRpFdQ7VIyqvJFfTxIFl23PWudCFXsPOvgKOHEFK6XgRxRcA7yIgmcqNDIqlQ45woW0ceRujtF5awLP9ikdbmDnXYQALaqgmiqqplA62qC+wRqfFdH8124uxzodOnSIL3zhC299QZdocnLy3EP+mxnh3vz7gQce4JOf/CQf+chHiEZbD/CXJEmSJElaC8wuna67EhgpjbHvFPGdxTdvEdfn/tfG8RUoJCMMbY6Q3GaiRhTqEw6x/uaIpdXTNtaMg9mt0/eONA89P4anqkSdsw2omkJjzCGxeXECuELCQPMFqfOCQl/Y3YWvNO8jTccj6nrYhooV0dA9n0zZIVN0iFsOputTM3V010fDx7MEZmIhcVZnvsHJTSmODacRioJlavgXjGJajhvccGw+sG0sQ6WUMs6NgFo1DE4MpPG05vN7umKzZarE0EwNgJglM0lLV4jvLxoZdThfQgBHenKrVyZpTZjuiTJ0NkBVS8jOIO0s2qsjBJg5jcQWE+ELFFWBmgpp+btL0uXiu1D/fpbeByMgwCl55F+tUTp0dTuKXop2rVu+nC51+6yFjmkg66g3mkhOI5LRmH6qTOr/tTpdBFVTkLynQOXZDIjmPnf81U3YDYO3vfsAesRj4mQnz37rBhzLCHx+851j9F8/gxFvLcBIqM2gXM+WJzNJkqSlqB3N86o/r6G2U3Aq4N9uoU5qaM9FgdpqF0dqU5FOHUVV6Lk3RWJzhMnHyvgrvP8QHrgVn+zrCla3gtUlR1BtN74r0BNvvS9nPmPSO1snVXEoJxfumWc6Y5SPNui+O0ntjI1XX7wP6gmVzL4YTsmjdLixKBA62qeT3hmldLRBY3Jlwfx981W2Tpc5MpBh3+l5FBWmHl/ZoDHS5dM92wzicXTlLQ2HrngCsyDQGgKhKVgZBQgfYr3cZbD/wTSD/3aU9J4oA+/OMPbdIvXx1vpoVs/YCF+Q2BxZcYC/dHnJusBwb2WbfPrTn2Z+fp6vf/3rGEawnuNqWK36PxmcKrXErfpMP1lh+skKkZxKx61JEpsMctc3R6pyyj7low2qIzbWjMw4JEmStBZ5poICdBxymN+zOjc80sp0jdkowMwunUqvSnrcIz7jY1YFkerZbCbnzS+AsRsE89vCR2nuOGnTd9Cm3KszeqtsVJbWOQ06b03g1n1O/nXrI4hLG5cQgt/+7d/GMAzuueceHn/88VUvz9DQEB//+Mf55Cc/ydatW1e1PJIkSZIkSW/Fpg9nm8EtQM+9SUpHmg2JxUN1Gnd20Fuoc6I3xemeFDcenyX7YJramI1b8VFUsOYVIjmN+FBz1L76hINT8lHuSGO4C63ldt6l+fTb5NZ8nrl7gFrMIFO2uPWNWY5uynCmO46vLW7wVy8YiXSiB7yGxjWjeXZMlohbZ+u1TRXNVKmMWBT217HzLkf+2w3LNuiOdcepJnVUIdA9wa0HZgHIZyO8tjuHOLt9XGtxs0wpGWF/qpP9Ozpb3NqSFE53fToKdXJVm1TNJmE5mI53bnTes90IEICvKGhCYGsqti6bCje6SqK5DzRmHVRddoJrV6qpsOlD4cHo/iET7Y76VS6RJLUn65U41gtJ8BTqEzZj3ynKUXAkYG10TLuQrKNuL6qpEOnQifXq2HmP6qlm/y1r1qXnvhT2YRvvmtVJhhS7rooxaFH8dhea67P3zhMceG473/+fb6N7sMDJAwP0bZ3jtnceZIo0VjnC/IksYy/1Mvqzfk7/ZJCO7Xl2vXNk2e8yGs3OltEe+ZwjSZK0FCXlgy4Q8zpsarNk3wb4W1zUI/JaIF05sz+p0v9wGqfkERuI0PdQivFHSitezsQPS/R9Kkf/jzyKuxXyN6hvKbhMWlvKxy0ye6LMvVgjtc2kerrZLrZSB67Jkai73HBwjp/c3IOnL7R/TT9bYfhXOui+J8nkowsBomaPzuAvZlA0BUWDzJ4oY98tnhvdtPeBFJGsTubaGNPPVCgeaLFuUAh2TBSZTkfRPAFCcPprebyGjG5bLZbZTLZbTF16XUP6uEfXay7aBbcEfUmX47ckqKe1wGc8Q6F81KJ83GLg3Rn635lm9BsFnOLyz51+Q9CYdEjvjsrgVKmtPPbYY3z5y1/mYx/7GPfff/9qFwe4uvV/8u5bWjE77zP5aPMmOjagk7s5QbzfoPOWBJ23JJpD/frgWz5u1ccp+dTOWOsiE6gkSVI7m7lOIz3q0XXAIzHhM3aPgR85r6Om67Pj1TLJkosV1ZjrNZgeMheNqCBdRa5P3ykLz4Dpa3VQVWoXNqL5ProFeqOZsWjzT21637AvGpzae9BGtyE36pIdrZybLhRwIgqFboOxHSZWQt4iSmtf7sY4iqow/dTKK3fb3pu9jdvNW1ynv/zLv+Tpp5/m85//PAcPHrw8ZboEhmHw/ve/n3/2z/4Z73znO89lp5IkSZIkSVrPGtMusb5mo2d8KML8SzUmHy9ROW7BMxWqEQWvPsOOAYPs+7OMfbdAbdRB0cFIadh5j1P//Qb65uv0dtRJb7WJOD5KdaEVdCZj8uI9g+c6Zqiej1AUfBQUBKV0hMdvHwDAtzS4oO3TC6neUCMeM90mCSfG6f4kO08V6SjbTHTH2H/vwMJ3KcGbbCGCC8yr8eYfGox0WWyZLdM306AuqhwcPBt8qobc2IrgPWHo7a8WMjV0WrBzQ9htpxIynx4JNhq7drDR+UJeyAZOx4MNyn7Iutbc4PJFSP8M1QhOjOjB8s7UE4Fpz7nbFr3emZ4JzBM2TVeDy8/owU4ap+sdgWlzVrAc2zOzgWlHCt2BaaV6MKmYEMHtpBo+Ecvlrlenidr+uSRmbwag2ppG2dRpaBq+qmB4PhHPI+J5+IrCa33dKGdHAVbqIb9DyH7jhExUQn6bsH1TNYPbMxqzF72uV4P1WkrIskTYrh9yfAk/WN5Iwg5M685UAtOqVrAs5WrIb3PBd2iRYDk8N3iMXBisDuHrFbbvh82XDDnmaqoZmJZJLN6H3xx1OtplMPwrHcw8V6GwXwYqthvfEvi2j3q2TaAyYlE8UKf8nwaop5Iws7AfayFpweshx0PYtLDrgX7BubraCH4uZgaPy4FcMbgeIecgxwuev1LRYLv0YKIQmDZaCQbsTuTTgWm6vvg47EgER99RleCxmtCD5UibwWN1qpYMTBMh69oRa23UnwEjH5gWVRb3LjtttZYYI2z7GiHXx13J6ZbmOx0JXjPPVLOBaQU9FphWtxd3sjND7gPC9l+1xWmWHzwvn6oFy1u+N3g9B5XeB1Okd0XxLJ+ZZ8uUj6zD/hHtWrd8OV3C9llrHdNkHXV7ieQ0et+RItq1cI5sTDtUT9kgYPQf82z+SI7ITyJYBY/6LT6EPB/PO8Hnlwtp6tId6Y9We0Knq3lI/lBHRODkl4oc/L86MLIluu9KUJwexJ53efq/wlP/n70XfDKPFlVIbDXxGhkmX7qOvmdGqY0G7xvOV3tfhkhOtndLkiRdzESj+cyTyAoqMzEajWAwy8/ZFph2vrD77vN1tvDsEva8dL6werkL7UlMhE6fqPbhdchBdqQrp3LcYipSpufeJIqqkNhsYmQ1nMLKkoFYsy6nPjdD9oYY3STx/3eZ2eeqi+bJPRt8Lr2QqS69v/fGlh/V8pQRntTsTV5IPf75fGf5Pqal2aXvOX9aXD5gJpZc+tzRmVz+/NNwl75XrIecFy90uBB+7/sm80cdzNUEue81GPh0N7F887w5eleEykBzW+oPnV5yGds++sq5v+fTKls+2skNXzhK4bWFuluhg9/wSW4xgTIokNxu0n1nArvgMf7dIqldUXruSZK7Psbc883tM/XjMps+2PzNe+5JktgcYebZSmhg4a5PvXDu7/SeKJn7UxSeL7Ftb5T5l2oyMHWVbP3V/c3/P94JMZXuPzhBegUDzM1+excAHRM2vS9ZTG2KMDVsYkVVNFeQLHrsernK3teLVH8xPJHFFIAPk4+WGPpglqEPZsm/XKN4oB7azne+4qEGvQ+mGPpglvmXas3nPLkrXX2yLjDc2W1SKi3um2yaJqYZbHcDaDQa/M7v/A6ZTIY/+ZM/udIlXNZq1P/JmhjpLamPu9THmw2DsUGDWL+B2aFjpFW0uIrZoRPtVkhtN0nttBn7VrARUZIkSbpKdJWTvxBh8FmH2Kxgx7dsSkMq0zfr+BGVrT+0MarNTmfxik/HrMO2QzXGtsYY3RGVQapXWazmowqY2apffNurKm4M3LN9NGqdLomZC57qfJ/EjE/PUQfdhmKfRiOlYlZ9PE9FEYKIJYhWPXrO2PScsXENhVKHznyvwXy/ga/L315ae5LDEYQvqJ5cugFakgBmZmb4zGc+w969e/n0pz/Nb/3Wb61KOf70T/+Uj33sY3R0LN94IEmSJEmStJ5M/KDI8K92oJkqbtWjMe0gxhfe9+rNFhw90Xy+HPzFLHbBJZJtNlGc/Js57IjG6b4kp/uawRmKEGieIFF3uP3gDLO52KIIy3Mjo77FkagKaZNX0s1GpJODKQpVizN9iUvOTt5TrHHb8cXBGVtnSzQMndlklErcwFdl52/p8ukoWsRsH1tTONrRQT4epRyJLF2XJ3dB6Tze2dZi3xXUx2xqY7Kupd2ohkLHLXHqky7RXh3hNUf4cIoe9czyCQgkSboIFaI9OtFeg9R2k2iPgTXncvprweBgqf202jltrXVMk3XU7afjljiaqTLxaAl73iV3Y5xIduH6Llwo7K/Tc18K85CGlxHYu65iz1MBiad1RBwqD7vYX2h2dncKXnN0sTcfWy7ybO81BKVDDerjDj33JRl4T5qZZ6sXH9lJBbNDp3xMjr4jSZK0HC8n0Obar5JIeFAfjZO5vrDaRZHaXOlQg8akQ3yomYTLrVz6KPWFV+sIV9BzbwpFUZh5NphIT1p/3LhCaUgjM+rh6aC50Puqcy44NYyeUsnsjRHrN5j8UQm34tN9d4LMvmYHUbfWTDajJ1TMTp3O2xPoSY3ZnzWDmjtvT9BxUzOR6sSPyqT3ROm+s9nu5jsLzwGNSZeZn1TovjPJ9NNlcjfFGf7VHNVTNtURm+qIFQg67f+F9Nkg2GaQauWkzfyLrSVSk66cuZ9WyN2cYOj9WaZ+XG4mDm5RpO6z/bUa+R6DE9cvBI/Hqi5DR5vPXM7Q8g2xvi0Y+1aBLb/RSfddSby6T/no0uUoH7VwKz5ddyYYfE8Gp+wx9/Pqsp+TpKtp06ZNi17//u//Pn/wB38QOu8f/dEfcezYMb74xS/S29t7FUp3catV/yeDU6XLpj7mUB9bnBlBjats/bUcqqFizclMRJIkSavNj6iMvt0kPuHR96JDetQnPWrjxsCow8QmkxP7kuD7DJ1oMHiizubjdTYdbz5ojOyKMb49vsprsTG8mWQwZCCWi4pUBAqw+ad1YiUfvSFQvWZ/QwHUciqn7lgYDbd6QZbxWNFl6FiD7KxDx5RD55SD2N8cVXWsL8bxbUkZpCytDRqYnTpO+S32Qm9Tilg4h7STt7JOn/70p5mfn+frX/86hrF8hsMr5fd+7/dW7bslSZIkSZKuJK8uOPGlObS4im/5ZK6N0X1Xs7HbmnMZ+04Bry7ouHWhYfPNwFSv4ePZIaMdKgqurlBMmTx6xxAA6hVO3TrdGWO2JzgqYkuE4BdfGlk0qRQzMFyfmOOxZ2IegNlklJ/t7HuLJZWkBZNdMawTRSKuT9U0KEcvcR+WNqx4qVm/UjluMfuzKl5N1re0m577kqR2LpwbfFcw9MEsEz8oIrs6StLKRbp0eu9LYnbr5zLOCyGonraagVbrWLvWLV9Ob26fVjunraWOaSDrqNuRW/HRtjTbb+28h1PxiA0ubgcpHmxg/pcoye/rqEUFhLhqCWvUAmgFhco7XETYo0qLt55O0WPs20W63pag554k2euiFF6toyVU9LhK7YyD8ATZ62NoMZXiGzI4VZIkaTl+VmCcUJvn4jbqClQfj+FbGoltVSC22sWR2pyd97DzF0masULF1xsIH3rvT4EKM0/LWpt2ML1Px0or5LfrJCc8Bp936DjiUBwOhvDEBg2G3pc991pPahgpjex1C/11e+5J0veOFMrZJKiNaYfT/5A/N2qvnlw4oW/6QHNZhQN1nKIXuEcuHWqQvS5G7oY4k4+WiOR00nui9D6QAlJM/KCI70JjyiGS1c4FpvqeoPBanfnnq3LExTWgdNiifNyi9/4U/Q+nsW9zqU845F+u4ZQu/sClOT57ni/jq3Bybwyj4ZMsuCQLHoMnGpSzGpX32fgdrf3IXkMw8f0ig7+YxezWWwoyrU84jH69gNmjk7shTt870hipKvMvyaDnq0XWBYZ7c5uMjo6STqfPTb/YqKmHDh3iC1/4AjfffDO/+7u/ezWKuKTVqv+TwanSFTX8S1kUXWHyiRLlwzKTgSRJ0lpR69c48V6N2KRHz2suZlHgROHE3rMPsqrKmR1xzmyL0j1m0z1hkZ1z6ZhxGN++umXfKOxYs6JAb7R+56+dzW6VmfAQGjhRhUZKpdapUuwzsNNL1ybXMzpHb2l2HlYdn84Jh44pm8ycy9bTNTaN1Tm8I8XEoAxQlq6exJYIsT4d1VRxys2KtOx1cVBh7vnqKpdOWg8ee+wxvvzlL/Oxj32M+++/f7WLI0mSJEmS1NbeDGjqvG0hCNXs1Nn28S6O/bcZigfqdN/dzMLcc28KgBN/NXfxBQpBrmyzbaxEb77B/l05xnsTF59/lU2no5iOzytbuqhEjeboqy7kaha3npwi4vl0VBoovkDI0VOly0VVefbGHh54YZIbJmZ4fMfaPUaktWl+0CD31Xkyu2PEBgwmHi1hTcuEs+3C7GnWq51P1RVUXWHTB3PMrlK5JGk90vKQ/Qnov5QFwJp1qZywaEw51KdcuPRBcqR1qJXOaWutY5rUnuaer6KnNPofTnOqMI9b9jGSGorWfDb3PUH5cAPFBsWH6CENraRQfbt3VQKR1Frz2dfLXJ7errM/rVI9ZdN5e4Ke+1LNhFcNn8yeZvBRfdJh4odF7Dl5UpYkSVqOl/NRPB21rOBfpvP0WlAdSaAnHcxuCxmcKq03pUMNENBzfxIjrTHzzDIBqj5EDyvgmbDHhlj7HMvtwk2ozO05O5BIrwY49O536d3vMj4coXrKPjdvcmvzubL0RoP07ii9DyTPJXqd/XmVrtsTaDGV+Vdq1M/Y2EUP94KBHaafLDPzTAVFU+h6W4JIVmP2pxVESHWvbwvOfLNA/8NpNn0ox/TTZc58o0Dv21Okr4nS/65Mcx2qHif/Zp5TX5tHj6nYBQ+3IhMcriXChcnHypSOWiQ2R0hsiZDeFaVy0mqOhjtq45/XD1nRYPcLVYyG4PU7U0QaPnuer6B54Kswti3K6K4o13YsHSSqRRUSW030mIrwBeXjFoUDdXLXN/sXzz7XWt9Oa9pl8tES1lycrtsT+K6gsP/yBP5L0luRTqcX1f9dzL/4F/8C13X58z//c9QNPACUDE6VrpjB92bQExpzL1ZlYKokSdIaVe/TONWnLUyoXHBTpKrMbIoysynKLT/Ok867ROoedkxDurLcSHM8GHMFD/JvvC+KcFV8lbc8wqlvqMxsNpnZ3Kz0yB122XmizLWHS2w7VeHkcILJ3hi+vnFvpKUrS6/4DP/TDvR48HwjfMHcCzUqx+Q95kZUKi0efcA0zYtmpWo0GvzO7/wOmUyGP/mTP7kaxZMkSZIkSZKA03+fJ3dTjMzuhc4/Q+/PMvqPBZLbTXI3LCQ9UgwF1VgcqDk0VWHfiTzqBf0orj+SJ1lzOLI1eyWLf2kUhed3hIyIqigUYxEiXvP5/lR3SgamSpedFdUZ744zOFMj0bCoRsOfkSQpjK8rTP+4glfzSe+J0f9QmlP/ez60w5K0vqiGwtD7MqjGEnW4QjSTKUiSdFFqDbJPgXE2p0p93GHysbIcaXqDa6VzmuyYJl0NwoP5F6uktpts+lAO3xbYBZfkNpPcjXF8V9B5SwK+2ZzfiwuMMRXzoMDtFng9V3YUVRFtPtirNQUveXmCJeoTDmPfLhAbMKhPOqi6wrbf7MKtepz5x8Jl+Q5JkqSNwM+ePUcX2is4FU9BjfryUVdat0pvNHCrPj33Jhn+5RzWM4L6PoGXXTyfWoLEyyrmaQUwoaDCgzKYay3zogoTNxn0v+zgGdD7YIqRv53Hbwi0hEp2X7NNLb07CnAuMBWg6/ZmUsrqqM38C9WL1t0KF4QrAMHU4+Vly+SWfaafrrD5l3J03p6gNuYw9USZ6afLdN6aIHdjnNoZBwB7zsOWmbnWtNppm9ppm9mfQubaGKkdJn3vSCOEoDHlUjtjn0vuY867zAxE6D1t0TVmU83oHL0pgRNRWmvHdGHLr3eiGgpuzUfRm9955lsFsvtiZPbGWg5OfVP+pRpapBlY3Zh2aUw6l7glJOnqevnll1EUhfe///2B94rFIgCf//zn+eIXv8imTZt4/vnnr3YRrwoZnCpdEek9JvGhCLUxm/nn5dDakiRJ7eDwDUmu/2mJm54u8PI9GWpqZLWL1PaECupKnq9U9YoFi57ZnODMUIy9b5Ton2yw93CZPYfLOIZCMR1hsjfKVI/5loNiJQlAtX22PGqjxlTy+2sUXq/jVn3MjubjizXvguwgeXHi7L92c3adNm3atGjy7//+7/MHf/AHoR/5oz/6I44dO8YXv/hFent7r3ABJUmSJOnqMjIag7+YwUhreJaPNecy93yNxoRspJFWn1P0mP5xhfkXa2z6cA49phLp1EHA3M+rDL0/i6eB5sH2T3WhCIj9f1/HnncxUhoD78ksWl4lqZGsNBu8rQ6FeKJx7r1GPVg/oWjBG2JVCU5TLox+BbozwUzkNdsITKtUo8EVjwUfVPyqQcTzEcDpzhQHBzpBXNCoG3b/HlI2QtYhTNj6K2HrHzKfpgWDLHxt8bN+X0cpME+xHtwec4VkYJrrBBMQhZVN+MGGbz9kmrhwWwK2F/wO31h8bkzrwU46FS8Y0DndSAWmZZLBz3YYwQb2vBUPTJuqB5cX1sQf0YP7khOy7dTz9pORTQkGZ2pszRd5vbfn3HQ/pCUwbFcSIftD6L7phpQ4eIiQ7ApuE0MLdlzJzy7eJooe3AfDyluvBH8vqxFSXxlS3LDfMKxsrh+s59o9MBWYljQWJ88qWMFROcZLweCVSiG4j4QdlxEzuD90poLbd0t6PvgdTnA73Z4bCUzz9ytAg8bJKIXvdZO9Lkb+ZdmZbb2Lb44sCkyt5yCWX3i/sF3F8bRAcGrZCZ44TKO1yjhPDx50uzpnFr0+Pt8VmCcWsvyGGyxH2DnTdYPHatjx6/rB82jYd7huyHXkgmvQtBu8xr0kNgWm9SWC18yHuw4Fph2uBRNcHMj3B6ZFteC9/plqNjDt/6ncH5jWHVt8jxN2rgq7X9LU4Hk5rtuBaXNOcOTuPjO4/im9EZjWHQ3efyVCvmOsvPgesVgJ3n9o6WB5iyHr+po9EJgmHhwLTEvtLNP9QApUaEw2g1LbenSQdq1bvpxWsH1kxzTparHnPca+WyS+2UB4UDpYJ3t2pJrxR4ooKqT/SxJ9RiH2koYfFcReal7v6jd7WPuu3HnNy4EfFURGFOo9l+8EI3zOdZL3XMHJL89dtmVLkiRtFCLWPEdreQV3eLVLc/kYGYfi62nsfEiFlSStE7VRm1P/e57M3hgd6QTmdxVq1wnq1y0kFom/pmCeVnC6BMasAicNqDdgUoNxHW60oKhCtweyO9+aUdiuU9iuo1mCHf9Qo/e+FBM/KoEnqI7axPqMcwldnbJH4UCdxpSD8JojnTrFyx8c6hQ9rDkXs1Nn+Jdz1CccjJSGkW4OUCbjQNYf4ULh1TqFV+tocZXEJoP4ZpPM3hhaVEE5G3zaPW5TS6gUegxG9sRwzRWcLHSonrJI7YhSOWFRPtpg04dydN+VZPz7RQZ+IUNiS4TqSLCObymzP6sSGzDovjvB6D8UVvRZ6RLIusBwl7BNPM9jairYhvimSqVCpVIhGg3pY9AmZHCqdEV03ZnEdwRj3y6udlEkSZKky6SSMzh2bZwdr9e49ckiU90WE31RSikD25S3FFfEWrvpV1UO7s3yxi6f3ukGfVMNUmWHrjmL7jmLfQehmtA4tSnB1IAMVJUuke+z5Yc2qgvTT5UpHVro4GlNy4hUCUZHRxdlpL/YqKmHDh3iC1/4AjfffDO/+7u/e7WKJ0mSJElXRWqXSd+DC9dDzVSJD0SIfyDC0b+YWeKTknR1uWWfk389R3zYYPDdWXb+TjfVUxal7mYn2PSMdy7orP/hYODWwRtSzPQtNNCEBTGuB42IziM3bl3tYkhtrpqM4CoKvZUqr8vcPNIl8orNjpvxTREZnNoGKsctJrXSufvG+Wt1Bp9p1q+N36VTHdSgIYeSkaQwalyl9/4kic0RhCsY+06RxoSsn5ZWTnZMk66W2qhNbXSh029j0oF9Mex5F68hSPQKvO5mUKraUPAjAtVWiL6qopYUxJDA23IFglRVsHf5mAdUnM1X7pneLbdx4gBJkqQryOvzMY5pWNd5EMzTsy6l9xUp7M8w/UQPsLIR2yRpLREuFPbXUb4YI75fIfGqCqpPfV/znsraKoiegMbOs8GpAF85LxHgG2cT+d3egL0XLLwO0cci+D0+9i1u2xz/64lnKsy/XKPrjiTxAYPaGYfx7zZjLrSYgqIrV+0e17cFp7+WR9EhvTtGfNCgetqmdLiBNSPrQtY7r+ZTOmxROrzQB7PnviSZvTFsU+HQHSns2KX18518rExj2qXj1jjJbc3+e74jqI7YVEYs+t6RZurHZSrHrWWW1GRkNbLXxYj2GHiW3wysl4960jpQKBQu+t5v/uZv8td//df84R/+IZ/97GevXqFWgYwkkS67rjvjaBGVmZ8EM5xKkiRJ69v05hi1lM7ul8v0zjTom2lmuBZAw1R57dosxUx4kJC0MtGyiyLASq+9zkG+rjIxEGdioJlxV3V9Bibr9E80SJcdrn2jxJ7DkO+IcHxbgkpm8agVXdN1Np+qkSq7vJl03dfh5DtMnJQMaL0a/BowYSCmNShpkPJR+h0YdFm1QZF9n9SYT/crLnoD5ndplP6itYoJaTFFtDyg0rry5jql0+lFwakX8y/+xb/AdV3+/M//HFUGy0uSJEltJnd9cKQ1gMaMHDVVWpuU88Y5SwybMOPh6eAaUMtpnLwtRt+/naD3gWbHicpJi8aUw+xDwZHVzqfbPp3zDeZzJkJZe8/PknS1ncmk2VoosnN2jqNdnatdHGkdil1bofpakvhAhL6H00w9UULI/kfrWvmIRfnI2eQl/2SI0w8pbP6Rw8BzLlO3QsjgnJK0oeVujJG5NoaebNYnWjMuo98qwAY5F7Zr3fLltJLtIzumSaupMesihCCxxaT0xtlRq1Xw4wK1plB5l0vkpIo+oWAeU/HHDerDVvgw5W+RPewT3a+hzcjndkmSpLXGutEj8U2VyEEN+7rLPxrfalANQfcDM0x8a5D+d2lUT9s0Jh3sfHusn7QBaVC7SQA+8VcUrC0CxYbYQRWhCJwBAb9Rgr85rx/NByrwZAwKGozoaFEfb6sPCqhTCrHvNft3arMq6qyK9cDKRjaU3rrYrEfHzQkA0tdEyVwbI9qj4zUEZ75VwFsiMDXao5PZF8Ps1PEaPtNPVS7LiKrCheKBOsUDMmlhu5t+qsKxf9XHvufK7Hm+zIE7U3jGJfStE80g+vIxi00fzAIQH2p2Pp18tMTAuzP0P5zm1Pz8ktdhRYfuO5Ok90bxaj75/TVKhxoyMPUqkHWB4eQ2uTQyOFV6y977ev7c374NR/9bF1rE5Z6vjIfOX/ZiLS/72fKulue1/JXtzjtjF89OeaEtkdmW5+1WW2+Ziioru5D3aOWW5702dmZFy16Jk1ZPy/PG1dYfWnojpZbnnaynlp/pPK5oPdPolsRcy/MWnNb3ZwB1BVerfanwYyjMTfGRluc9GBlseV6ASSvT8ryn6x0tz/tKYWhF5YiorT88pSOtPxyNNlovs+Wt7DzTa7a+T6/kHFZQVrbfdZq1luftjraQWKALqjvh2GSGzISDWRWYFZ/UrMdtL89z+L4Y9dzi9ZmYzq6ozIbZ+rl0JcfVM/M7VlSOvBXe4TvMZLH189LOruWvK7nXmk9W7o0u3bHWEz5UnNaDgw2t9eMqEVm6k7vdCaeuNcE36D7q0Dni0jFn0zFnI5Rm8CmA5jZv3AVgJxWcuILm+0RnYfMzFrV+hcqQRqMn/Bo5b7f+m5QbKwuU7kq2njFxrNL6uXEwubKR5Ifj8y3P+8pNK1myS2xAp+e+FEZGQznbcVsIgaIoiNejCCFwHEFt1Gb+pRr2XKv7SH75Wc5Sz5s3NqCTviZGbMBAT6rNcviCwms15v+i9XOXJIV5+eWXURSF97///YH3isXmcfn5z3+eL37xi2zatInnn3/+ahdRkiRJklpi9uh0vS2BAjglH8/yMbt0fE9w/L/PkrsxTtcdzcbL0X8orGpZJeliqqdsjv7FDMltEXruT6GZKtrZR//0tMe1j1bhtoXnveRWk8TmCMMnaozsTIQuM1r1uP3p5vPFa7uzzOVM7IhM7y1tbIc7O+gvV9iWL2BrKqdyudUukrTOiIaKlnTxyzqp7SbTTykIV7bCtxMrp1IaVkmf8ul9wSXaVeHYLXG8iEzsJW1sRsFn4Nc7MFIavtusI597oYY13WJ7lQLp3VGSWyNYsy7zL9VkcL8kSavKKXhUTth03hanOmIxc1cB1VTIfLyTuReri9rhYoMGQ+/LMvvepdsGdZbuszRzken970xjd7qM/cvW2xMlSZKkK2fqzsX92brvTpBqRBn/vQJeo1kHcMfBpc/ZOWPp/jV3p48uW45XqpuXfP/wrcsn4xwhe9H3MnvL9NyXIrm12Xfo6F9c7EolSWtb/u5mP7JiRGH7J7uI/hfvXPDX2CNFan9uM/6dLezRqmheMynosVoP7j0Km59vEC0qRJ8SuD/wsaYdYsPNY6I+6TD/QpXet6eInDTIvqdBI3nxNpZGfenRDrTY8g/BHZmlzx2t9APNRpfuG5yONJZdxr25Y0u+/1J56fMTwNQyfdi9ty/d/3vL73SD0ey7l9q50L9dT4D67T4UQ6E8H0V3zm4TAbGyR/eITWreo5FQKXbpJGY8hjablDIGs10m44Mx/P8/e/8ZZEeW3XmCP9f+9HuhBYCATiCBVEitKqsyk1VZRVaxSHY1ZbPZnJ5pzq6N7czYrNnMbs/ajPV+WtsvY2O2zekmh8Vms9nspizJEplZmZWVlVohASS0Ci1ePP1c3/3ggQgE/CEQARkRuD+zMODdd93fdffr7veee/7naEtBYbb+o0+veSySu5P8N04xUdTY+vUiD397nrAVEQWCyBN4lRCvHFCdDXCmrn1vh62I0W9V2PE73ehplW3/uEToRAS12AdaXENkOvRSgfQWk/akz+i3KlKUKpFsUKQ4VXJTmfjxIETQ//zqhZ8SiUQi2Zh4GZWZ3Uviv/RcwN432ux9vc2RX8gQpKUzy41gT0BkQrR6DeT6QFWZuceicq+O3oroORZglyN0NzaUOBmFxoDG7D4N9LiPGGrI4Os+6UlB8ZSgeCqe0LoFGH9GJ8zIvnSjpLca9H0utxjtvXXRo3HapTXhE9Qi9JxKeptJetAgNWSQ3WmR3WkReQtC1Q+Ti9GZnSZdD6UXhK7Quugz8ePaisYBs1ujsN8mvcXEyGsoqoIQAuELnKmAxlmX6pG2dNq5UcTC32bjOo4pDEOmpq4+N2k0GjQaDWx79YFMJBKJRCK5nSg6DH+lgGarCCFIDS0tJlY+aZPeYi4KU8/9xeqDnEgkd4rGGQ93rkL+/95H1+jSwL/ar2GfjB0G9Ezs/NC84DGiKXTNenz8aIFQV+ma9ijNehheRO/kUlC8+z6rAPCjZwcRqszEIrmLUVV+tm0Lz56/yL7ZMlYQ8tngyhmIJRIAb9Kk/Df9i5/L7zepfuYQuZvRwHB3o3qC5qBKdjRCDaEwG2C1I1pSnCq5W4kiej8IyZ8RkFWpHG4x87PVBbLUcyqqoWAWNbofz2AWdJwpn+L9aRRVYfat1QfEXDdsVtvyzUSeH8kGYuZnDbZ9o0T/C3nGv1vF7jNQVIX6yeUO++0JnygUpAaNNQSuXR3ZnSbZnRbVY3L9TyKRSNYrc++3yO216Xokw8wbqw+ev96pHXfoeSKD34iYfm31SWEkkvVKasAAwK8vjdcK+2zc2YDIUDjytWxim3NPxUlQuv/LMQZeyJEZWfL1HPtWBRHBhb+aZ/irRe59u84nz+QJLGkjuh24cwFWt05ln0rubOxsV92jUtulogZQ+jBg59nks6vepXHq0TSVAR0UhVbVZOuFFrm6z94TdXpmXT46JINWSlaHXwm58Nfz5PbYaJaCoilotkJqwKCwz0bRFPxaSPmDFrXjzoo2kaARceGv59n2ayWsLp3meZfsLovaceeamX1DJ74H6qdkttTbjrQFdkaek+tCilMlNw2vptM4ncUo+uR2bcCFFolEIpHcEK1undNPptj1Zpt7Xm9x5ItpUKWx4nrQ5yNUH5o77nRLbowgrTL58MpR0y4x8TkDogi9BSPfC1AAqwo7vhtQ36Iw87BGJI1f10Vmh8ngF/MgoHHaZfr1OtEVic2DekTtiEPtyIIzeFaldChNdrtJdpdFdteCUHXUQ0SQ2WaiWSoiEgTNaPF3dv5eN5M/rtG6EEew1HMqhf02mRELo6ihLkRmiwKBOxfQvOBRO+os7kMiuZlUKpWrfvd7v/d7/Omf/in/6l/9K/7lv/yXt69REolEIpGsEavHQLNVqkfaGEWN9PDS+LrroTQ8FP8/9KJrLupIJLeT1JBBfq9N+aMWfmV53/SrIXP/cgLrFwtktsZ92vppk9L/0kAxIPjEJnw7Q3a/AQ7kagEH/7dRZt5oMPLf9WG2BZEKlySogvj/kQrpbDzZCaLk/NHzksshmpaci2RNN1HW9pPbCrFKEax6xepV2GG71S5wddhUuXL/gJVKZhVIWV6irNFMBmlROkQmj6LlPzzfSiXq2EbSy9jp0DbR4fiFSF4v1Uw+08wOZQ3HStbTk21peMvtE5/V+xN1WkHShhF2aNuck8zmq6nJvlRupxNlbc9IlEUd+pLeYX+ZVLJv1htXXItBhwB4bbCfZ96fZkelihmGHB684ng7mVg6lQXJtikdHMqFl9zYdZP3jZ5KHteV11pEyd+0U8n+e2W/BAj8ZGR/00r2m5abvNadruGe7mRGjX25ZACkHmO54+aEl4w2N9NM9ptMIRnlf0dXMthEzU3eq5aWvBA9VtKB1FCTx++L5HlyZ5bfS8Un0qS/kaK9XxB2xWXHZ3rRAoHhxc9hz1bp+/rxxL5O/OFjibK9f/BOokxye1FUOH5ugN3jFQbHqovlx3fkGSMHS0Xs/K2PEtsHP05mjPhcbzLLxA5rOlHmi+XPg+9zMFGn7iX7ecNP3qutDs9R00zeD26Hd/ex2eSzv9O7sNP4wLKWv1sHc0nnwGaH9nZ6xnfinvRkomxnKvkMOtPuTZRNKslMHU6YPE+j9eKyzymjUxai5LF3eifV/eR561RmEsC8CmmBkorHBZ2ONa8XE2UzXtKpdrK5/FgtK3ntww7jQF4YTRQJwO7XGXypgJ5S8WshY9+t4Fevbqs2Sxo9T2XRUyqoYHUt9TNnOj6fdn987o381bPNSCQSye0ibEVMvVxj6BcLlB5MoaVVgmaIX7viWRfFc3WzcHOfXdldFoO/kAeQdiuJRCJZx0SOoPxBi57HM1Q+bSfsuRsV1VBQTZW5d+qryvomkax3lIUpaPOsx/yHLYa/VlxMPjD7scvEQROhdbZDtC54nPmTOVBAz8QLLJcyGYZtwdw7TYZeKpAvB5QHV+frJ7kxRr9VQf32AFZZUPwMxr+g4fSpKIFg5G8CFAHn77NpFZfG6G5KJbCX2z0CQ+XsrtiGcui9Mrq/eX3w0ttM8nssQiei/GGbsLV5j/V2EtQj5j9oJb9Qwe4zKB6w6f98ju7HMnjzAX4tpDXq40z6CAGaraClVIychtW7ZCsb/34tuc+rIWLbWvXTa2c+lkg2Gt/85jf55je/eaebcVuQ4lTJTcGd17nwn0cAGPrSyqnoJRKJRLJ5qffpTO02GDjls/1dl3OPJ50VJdem6+3439qBu2ywpqoEWTj9KzpmDYonQvIXBblRge4EjD2/PoxfeitCFRGRqaI7EV0LQszZ7QbROsww0PNYBgSc+XezRKucvweNiJnXG8y8HgtVux5Ok9keRzYGiHzB/CetOPL7gp0nv9+i75kcw18pIoRY9BBXFAURCrxaSOuiR/VoG78ijUMSiUQikUgkl9AyKpEb0f1IBnvAYPTvKyCg79kshQPxnErAMmFq5UgL1VYhFGgpFb8WYRS12NFPRnGUrAO6DqVJbzHJ77M5++dzBPXkHECzlpwkststvG9aGL9aQbvXITppIcpLM+LiwRTubIDRFrTyCuma4Pwhm1ZJY//LcaDEeuGumkFLJCsS6SqvP9rHUx/MMFxv0DRNznTLaOmSq2MfbGEdaKEoEMwYzP6kB/uMin0G/D6B2oAn2+VlevtaSae126J+xpXRzNcxmq3Q/XiGwv4U8/MtJktp7lkQp85lLSb6kkL6TqSnQ9IzEXP79Ks6OkokiwhB8VSIOFIAXwEEYoeP8mwLVtflbilmSaX/+TxWjw4C5t5rUn6vgxPeAkZRI3+PTX5vbB9vnPNQFCi/18QoanQ/nMEsLTmLzn/cotzJqU8iuYy7yTFNcmdpjfrUjjl0P55BBFA9lgyQArF4NH+Pjd1vMPadKpF3AwYmBXoez1B6ME39lMPsW02ChhwwSiQSyXqmerhN4d4UA8/nGPtO9dobbACMhaALQr6CJJuExlmP1pjH0FcKiFCgXGaf6Tnjo0QCzYeJAyaBrZCfCKj36UTmZXYcQcdxWe8zsbjRs9ef39tmRFEXEkOcjygdiXC6FJwe0FoCoy5QBMw9qDKzLRmccyXmSyYj55rsP1JlvmQyOZgMJLZRMbs0hr6cx5sL0bMq+X0pKofbzH/UurG5i+TqROBM+kxO+pQ/apHbZWPkVOxeg8L+pF+4EAJvPqRyuEX12NpFpooqbc4SyUZHemtIrhurV6dwr82pPyoRtuOJXO8zM9h9yQjWEolEIrl7mDhok58JKU4EdJ33KI+sD0HhRsKoQpCBKKdyV3p2GSpeN0w/qTL7cMS27wekZmH733u0HwJ3z51pllmN2PK6h+6Agrfo839pWjx01MPNKLQLGvUeleqQkYhWdltRYfAX8hhFjfaEv2ph6pUEjYjp1xrwGqg2RD7QIVBm7ZhL46xL6f40Rl5Dz6h4lZDaZ46MQnm7EWxOUcpmPCaJRCKR3PWM/EYJs7jcRGv16LgzAemtS3Op4oGlBZ72lI+e0chuvyLD2YEUzrTPxb+p3NI2SySrIb3lsv57f4rZnzUTdUa/VaH0YJruR5ayCYZHbYxnmxhfreL/MI+YWMr61fdcFhRI1wTNkkptQEfzlwaJJ+9PZte6YwhBd9Ul5YRMZLL4usycJbkDqCpvHurl8z+fYu9cmfmUzXxaBpKTXB1lwcil9/q0D0QYry04cWrg7hZMBBl8UyUwVXQvYt9HDfIv5kkdbTP9+lLW1mLTIdf2yLgBGW8hM+Nui/qpZPZfya2n6+H0orPQg2fn+OGhrbx2cIjnPh2nu+Hy+bcn+emj/bRSV7gNKLGw1e436H4sg/V6vP5bHdHws9JRSLICQtD3UUDpVMiS9VyBsyaiqcJvrHF/TQU8BUrXuVYiBKqpEHkC1YTBLxVIDcVjzPa4z8TLdaKrZdpQoeuhNN2PLo1XJ35YpXFmyR9iy9eL+PUQs6gvOgc3z3lE7gY1Zm5W2/LNRJ4fyQak/H4LRVWIAnFV8Xz1aJvQjcjutCg+kKL87lI9PauiZzX8ekjYXPl5rNoKgy/mSQ0ZzPysQeVwZzGsRCKRSNYXIoLJH9UY/lqBHf+0m3P/KUPfs9OkB9fBc1wBs6Rh9xlY3TqqpRC2I5rnPdrjfsdNsrss+j6Xxa+HuNOd60gkGw4BEz+oMfKbXeip2B+tPelTOdwm/bslus/FvlmBpeBlFIYOe0SaixJC+E+7qZ9yaI/6NC96y90RFTCyGmM7LRolKSu5FSgaiAVfO7OkMfLrXfGH9yPavQrTT2l0HY4ofhZX8nJQ26F29M9biXM7MgS6wo4zTQYnHJqZzXM97T4DRVG4+DfzKLpC8YEUpfvTFA7YTL1cp3lBalduJd5cyNzc0lqvnlGxuuP+FTgRkRMRtCLEdbqI1k66DH/FZugrBSqftmktXE+joFE4aBM2I/SMRvnDFmErwixpFO5NUT3axpvfHBnf7xjSFtgZeU6ui83z1pHcVrK7LAZezKEoClEQkt3VoOeJWawuOZGTSCQSCZx8NsXB7zfZ9pGLk5URtS6hBhF7j9XpbkcIE0Ibwgw4veAOAWp8rvw8GBUwpyMYvKNNvuNEpsq5X9Tp/Sgkf06Qe0sj84GgdTDC2Q/cpu6lOhEjL3soIdSHVTxNxXAFoa5Q3qqjRDBwwiNVi7CaAaVxEJ94oIDQFIIS1J4WRLfJV7r4QIruRzOouoIz49+0yJbXErhGDsy9IyPCSyQSiUQikVwNRYPcXhtvPqT0QGpRmDr90zp9z+aAOFMFgN8IcaZ8Kp+2UQ2F4V8qAlA/4dA462EWtYSwVUYUlawXnGkfuy92+m+djxcQzS6N1KBB/aRL5AlEAOX3WtSOOfQ/nyM9bCJmdYK300TzKmImFkWFboRmqfjVkOqhFHMjBs5C1Pv0woKjZ4CbXh8C0O6Kw71nKmTbCyuwWxUu9ObvbKMkdy+qyptbh3nu3EUeHZvglR3bCHS5NCi5Nt42mP2dhYzsC/a3ydklcXOmuuRlckl0mtlu0v1Yhj0nJxBAy9RpWQZaFNH1Yp7Ir9I8L52EbjeVow7ZXRZ6WsMII3aNVbCC5aKSZ9+dWvz/u/f3YPXoDP1iYdHR0ZldWv81GwJ/HcWDkKwzhKDvw4DS6QWnsP0uSi5CTOhw0YBpHWfawu7rLFYXAkRbRbEjcEGZ0tB/HD97gufbcB197/HvVuD3e5aNT51pn4kf1jpmi9EyKlZJI/QEfc9ksXp0mhc9VENh4oc1Il/Q97ksekbFmQloj3t0HYrFq0ErIvIE7QnpMyGRSNYXQTNi6if1Feu0Lvq0Rn1SgyaaFY8BzG6N3iezywJQtcY85t5pdgxMa/XoDH4pj6IrjH2nelXBkEQikUjWJ+5swPm/KJPdZZP+NY2Lf7eFnb9zFiN3e4ORCwFiVqf7cRO7X8fuNVANBREJvEpI5ApSAwalB9LMf9KidcEjM2JhljT8WoiIoHgwRf20w/RrDZlRT7KpiDzBhb8sM/y1IlaXTmrAQM+oUI6INFDDOIsqgJtVqA7q+CmF1L+rkL/HpnRfmvmPW8z+PBaZaSkF1VSJQoHpCNRQEGlyrXEllLqCUlegKJai/a3A0FfyZLZZsVh+NiCzLR5blz9sUf1XOVKTgp73QtLjgvp2heoeFa+ggKbAGuMDCFXh4kiGsS1pnnl9hu45d6361nVL2I5tOHpWxa9FlN9tUf20Tf/zeQZezHH6T+akmOw2EjQjgubNs/W3LnhM/LBK6aE0Q1/OM/duC6ukkd1loagKQgiIIL3FwC2HZLabqJpCdrfF2T+du2ntkEgkN4ZcgZasGqMYp+JGhZ7HMyDg/F+V+eLrs3e6aRKJRCJZZ0S6yqmnUux9o809P20zmJqgmjWZLdhM9KQWRZh3Gw++XyFfC2KHroWIMwqQ+yz+GGQj3D5Qwrhca6w5ANbmRFeZeURl5lDE0BGX1AmV7Aca6U8E7f0R7fu5tSLVIGLHD2Nh6sRjOvURnZZvJKrVFqKtq0FEfiIkNxNgNyJSTogxA6UfKcz9yq23gvR9Pkdhn03oRUz8uE5DZqW461BE/LfZuJnH9M1vfpNvfvObN2+HEolEIpGsAkWHwS/GC5CX8BshM2804oVjIGiGi44SQT2O+unOBWiWSuOcS3a7hTsXELYiLv5thd6ns4RuROO0i5ZSaV2Ugg/J+uDi31RQLQUEi306u92i+7EMvU9lmX6jgTsT4M0HBM2IsW9X2f9XNuFRi/CT5ZkdI18w8cMK7TGf5u+Vln2Xng8JVW6rs4QaiFiU5XrUcksOugjB7gs19lxccvg9P5DhQk/utrVNIumEY5p8PNjHgxPTPHVxjNdHtt61tjnJGlFYSnp4Ba2sRjulEh13aI/75O6xGPhCnuYFlw8f3UI5YyMWgmboQciXPr1Abq+1enGqyvIMDpLrJmxF6AsBHHxVYd94MohdI6WRbceWaMsNyeww0VMq06/XMQoakSewewzKuzXyoyG58RA3pyKKCoqxCY1QkutDCAbeCyici/tSq1sh+3TsRanc7yJaCozpmF2dnwMihPpfdxOVDTAi9EBBEUsPIf2VFI9Q5bOnMzS6l7u5GG5EqCtEmoISCromPAxX4GSXgpdcEqZC7NBYejCNiGLHNhRIDRpoaRXNUlGN+Hf9WsjFv63gziw54xuFODMDQGbEYvKVGqPfrhB5gp4nMmi2uiwjykZjs9qWbyby/Eg2M8X7UpgFDWdaIb/fpu+ZLF41ZPLlGu5sgNWjU7wvxdZfiefmMz9vUPm4jdmlUTiQIn+PjVcOmPhBjeAaGVYlEolEsj4J24Lqp222/dk8J/94N7UTebofLt+W346qKuEpi/CUhajq5O+JaE/4zL3XxJkOcGf8ZRnZCgdsep/JUro/jVcN8eaCxbH63HtNyu/JwOqSzUnoCCJP0DjjMv9Ri+wei+BBm7mdBun5EKMt8NIKtSF90T6XeqvJ3NtNdv6zblQzLsvtthh4cSmwZu94PF8/9VDm9h/UeicEpaagn9EwjmgokcJwKWT2kIrbo8aq+ohYULqAaiukBgwy2yzmP26hqGB26cx/0iLyIT1kUPxWiBqA06Uwf1ClukdFGDe+3hVpCjN9FgMTDmM3vLc7j2oplB5KA6DoS+cnbAua5z1Sg4YUpm4CGmc8Gmc8+r+Qo+exDF41ZOZnDRqnXRRNQcuoC7Y3hfL7LbI7lwIrSa4faQvsjDwn14cUp0pWRd9zWQr7l5yChBA0Trt4cxt0VUUikUgkt5xWt87Mdp2+swHZdkCuHbB1psWDp2Aub/Hxni5c6+4ZiqQaAflaQD2vU/vFhcW4KEJrQOoipEdBr0D2TPyV1wXtnSqm9MJaQlVpPQKtQxGpTyF1RCVzWCN9WBDmwNsS4ewCVFBdKM26aD7ofoQWCAJToZXVaOZ0ImOVE9MoYvuPfTQXZg5q1Eeu3WcjXaWyVaWyNXZ2Gc5Wyb8K1piC2oIofQPn4BqUHk6Tv8fCLQdc+E/zt+6HJBKJRCKRSCRrwuzWGPlGFwB+PcTIxU7SRlZj6KUCURBbt/WMRmrYIL/XRhA7UO/+573L9hW247qRK5h6ZeWsFxLJnSRyl6/aVI606X4sg6Ip9D8XCzZFJPCrIfOftDn+Wy5DX7ax+wVRIFANBUVRGNhd57f+x/dIZTz+5x3Lf0N/IIX6dBbLFWzNz8OCo8Xp2e5EewrZZIhpx0/O8cTzyaX6+X93CEUItk02OHC2slDa4B8e30JP1SHX9Bmca5FvLc8KMzLZZGQyjkAeqgo/fmALYZAMdkTUwdkgTK56iQ42gk5rY763OnuL3062xa+ZyYpXNK/hJbPUtozkWoEIO8y9RYdj7XAQqpos1NTrt5FoV6wi6h32VW4nJ+xBh2MYytcSZb12I1FWc+1Emaknz1Pb63AdwuQ5zpnJrEPKledJJM9bVPIZL9l0BVlGZhrsas1ysrcnUQ89ua3SIRqY4ne4hm6ynl+1EmWVRof+deX+O7QjCJL7D4LkOVI7rBZ36ktehz7saMnrYOeTmUGyWjII2LHm4LLPY61Cok4x5SR/M0jeq9PNZFrAejt5Lp128lyemuhNlBlm8hjeUrYnykxjeb1Ch/ZeWTZ70GBrO2Lkv+nH9ON76oNf30JdmEC0+OjYNh7fM7ldNlMv9HB+S4ZQV9nxG58kj+HPHqK74vDYkVnKeZMP9vUw8vsfJ+pJro5qKqiGsigIiVxB7bhD/h4bI1q6H9qTPqmBuN+3f1yl4UYMPJ/n4OE5wj02bjmg65EMelpdHKt2nVrIWG4qlLyQyTf7ufi3lWXZJ588lRS/TgbL74m92elEnaO1wURZzUv2/Yf6ku/pepCsd3IueT9EHd5B6XTynta15LO6J73cqXkokzzOdph8jvRZyfH6kJG022bUZDsGtOT7phOdfvdAfiJR1rjiPJ1vdS37rNXB/7/U8MoBfm3pmqovb0nsa7yWzAo/fMSlMBofR6AqfDjUS98jy6+1avqM9g8Q+QJnMn6vGQUNq0cnPWxQuNeged5FS6sEzYjs9uS13fezJu0Jn+YFl9pxl4Hnc6S3mIReRO2og92nkxpKPiPbUz7udIBXCcjttkkNaKCCsvCKcWcDWqMeWlqlccolCgTubLDM+R3Ar4ZMvVqn73NZFE1h4Pk8zrRP84JH85xH9xMZep7KMvPT5NhAIpFI1juhExF5Efk9Nvk9Nq1Rj7HvVReDhnjzIfVTLv3P5cjvs+l9Mktmq4nZrUMkqB5pM/dOc8MK9CUSiUSyhGZF2D0ubvnatpwbQUQQnrAIjtmImThQjbbDQ3u6yclf9lYUG1WPOPjVheA4o/H8IrvbIjVoSGGqZNNTP+nQ92wOI68x+06Tufvj+bOXXcEfToA3G1DYn8Lq1on8+Aabe6dJfp+NkdfoHfeY3G7RKN09Pp0robTA/qGJWonPq1AF/v0BUa9Aec9k+OWQ1mCEURNoHsw8qsXZHScisr/bjaIqBO2I8kctststVEOlcG9qSVAXgFChPagQpBVE0mx93YwPpxiccMjsMGme3djBjYsHU4t2zPSwiVdeWu9TDQURChnscBMx9Wqd6TcaCP/yQYCIgx1/qwoqGDmNnsdiIb2eVZfZpyUSyZ1Djh4kqyK7yyL0IqZfbyBCES9KVeWDXCKRSCRXx64E9J4N8C340UPDmEHEwGyLkakm3TWX59+fYLIrxeFdJQLjJs6s1ykPflAB4MS+LAMsOJWoKmEeGgfiPwDViYh0QJdRfa6KCu37oX0wwjoJ9mkVfR7SxzTSx5aqFbm684cgNu6EmkKgKwSmAhmBUEF3BI0BlfqIxtCbPlZdUNmhMb+/gwPxKmkdBGsMSt9VcEcEQo8z5CLAGwRvmBvO/qpnVbofSRO2Ii78lRSm3tUsZGbedGzGY5JIJBLJXcPlTtWXhKmXmPl5g8gV9H8+Futt+Wpx8TtnNsDMq6imSu2EQ9AMF50tJJKNRuQKRr81T/6eOJsKxNmovEpI/3M5srtix6Hp1+vUTjh0PZKh52GLuckCf/tvnuPQc8cX96WaCgMv5MiMWIiFbFdrHS8OnnToGvU5/Egez+5sl9BSCmZJZ+dYjW2TDdLu0v033p3ipbdHV/17bUMjUJWrJSGUSG45n24vMjzXZOtsi5NJzZZEsmaqW3Umwiw9cy6mF6II8HUVrtBRX+jP0i4o9JRddp5vsP1ik9MjSRHuJSIlflJ21Tz2XKjiXccz/m5FNRV2/JNuVEPh3F+UF8eN9ZMO6W1xNtSgHTH/QYvep5euQeVIm/SQsbAPFb8WELoRVlfsSuDNB9i9S7bRs/vS7DraQs9o7PidbqZ+UsevhaSGDIQARb7sNiT598B6aUlIPP69Ks0Ly50XFV+QmhOolkhkrt85Fq97eLrKz+7vJ9P2KRywaU/4eOUQe0Bn+CsFVDM2hDfOuZglDbOw5LJSfr/J3LtLTuSKoaDZseDa7jdQdQXFULC6dboOZeh+NIOyEJzEmw/J77c7ZkyY+FGNxuklAXD1SFKAvxZqxx28+YChLxfQUiphO6J4Xyoek0aQ22NtXHHqZrUt30zk+ZFsYuonXOonXLZ8vUhqwMCbD5IO3gKmXqvjTPtEvqB4XwqvHDD549piQDWJRCKRbHxOtvsJNR3H1Wi2+xPfp9WVhU4/Ppi75m/Ygzp9z2SxunUa51zqJ2s0z7lrCnJwSZR6icYpl8apZPAfiWSzIRbGaFZPPNc+M28TrJCoQfu7/QBMhYLSrMfIqRbZeki1qHPkf96G6UYcereC2RRksy5mOhko8UDP5Ipt+mBi6zXbXa6unJV1NSalmXDl50s6e+PPgOlW/BuZmZAdlSUbwviDFvPbY5ua/YJH/mxE4WSEn1FQAkH/m/EDLLCgPqwzu1cjXRZsK/WiuwKnoDDfp1Eb1tj2povughJB7h0/DmD85w6Tr9Qhiu183YZC2I4Wr3cn2gvX9kpaPRrttIrxW32cu690VYPd9l9PBhBcb7hzAc6Uj91vxDZNFeonXUInonXBo/vRNNt/s4v5D1tUP3OkSHUTsFyYuoTVp9P/XA49s/S8C105D70hpC2wM/KcXBdSnCq5JnpGRTUUnOlATtwkEolEsmr2vhFHKDr5dBocFc9UuTCU58JQnkLd5YGTZQbKbQbKbZq2zvmBDOcHsqBuPlFm30Qby42YLxnUCyYDK9SN7M13/LcMFdx7wL0ntijo02BeADQQOkz4OUJdxTcUQl3BdCNSjRC7HWI5AsONMHyB4UVYDiiXBbtPz4b0fRoigPqQytQj1y9MBQh6obVfkP5MIX1i+TVOn4BIEzg7BY2HgIVELVFVJTxhEZV1lFyI/kRrxdtj4IXYMHZ5BGOJRCKRSCQSyfpg/sMWznSACAQiFPS/kFt0wlYNhfRw5/Gm3aPTOOuS3WGR32vTOCNtc5KNy9ZfLWL3GUz8sErthMOWrxYxizqRK6ifdMjuikXcud0W1aMOc281+Rd/9CZvfv8+xk73886PDrLr9yOEAM1SEQvZ34QG5ccU0NamhLFaEZlGyM7Pmnz2YJz9Sw0ExQdSpIcMjIKGWVxYQjm/PDuaa6gMzS1FZj6+NU89bdLUTVqWTqQqqJEg7frYXkioKcxnLKnWkdxZVJVwoW9KJDeLasGkWrgii8oVvmuhpjLbbTPbbXNua5Y9Z2rsOVtncsSkeT7pzNq+LGDAyGST+vM5Jl+W2eJXhYDIixBCWcx+AbGz7tk/nUPRQdUVQkfQOOuS22tTPx47bLVGfU7+4cziNt1PZNBSKpMv17B7dezPx+PVSIFdR1ucuTdD6n+9yPAvFhaDrAD88F8/Ra67yeDeGYb3TWOmktl7JeuT2qOg/S8tuh6KDdRDXynQGvWonw2pjahoPhROhnQfC+nX5/j0UJ5qySTdCFAimCvY9FYczCDicx9OoAng2bhv1E60sboNUJXFrL2qrtA85xF0R6S3mAlhKsSOaMFCX/bKyz3UVVMht9ui9GAaI69ROdymec6NM5FYCtWjDorKLcve50wHjH67wpZfLqJoCuf/Y5nSg2myOywaZ+W8TSKRbGxm3myQ2WZS+bTduYKA6tHYSb9+Uj7zJBKJZNNyi/xOVEuhsN+m+9EMzkzAhb+ex52Rc0eJ5GrYAwbdj6Wxew0mX64hAkH/czmaF1zCtsCrhAQvri4aYaQpzPVblHtNhs63KfeaoCh4tsbZl0zUECJDrmNcwksreBkFsxnbJoY+9MhMh5R3GpiawGgIdFdgNmDqUQ2vqBDYCpGl4IY6+YsBA4d9nLzC9AGTSAfNFWSmIypbdYqfeCg6nP2zMpkdJoMv5tnx27H9RE/FToJRIHAmfapH2zTOeWt6Np/bm2H/R3XuOVXj7EgWz9yYCWSa5zya5zy0tEr/F3L0Ppml98lYJNye8Jn4QY3cboveZ7MU708x/dMG7bGkwFqycbF6dIZ+sYCeUvEqAe1xnygQzH/YuqqQVSKR3H6kOFWyIvl7LXqfjheN5t5t3uHWSCQSiWQjoS3YDUUHe0U1Z/H6oUG6K212X6xRqnscOFdl/7kq5bzF4fuLK0bz2iikGwEHP66SboVECpzZs3L0L8mNEfTFf5eYmk2tafue9JKTW+lEiNGE2jYVp/fmGGaaD0PzYYHaErGTngFEYJ+C9AmF9EmV1ElB2+iCUIk9vYA4DI9CdMHC/EfzqB1G8GZJxR4wcKYDvDmZSUsikUgkEolkvSEiaF1cEl+c/4t5UkMGW75WpPuRpXlC/bSLXwnoenipLLtjKevq7NtNVEvB7tXR0irNs94y4YFEsp65FMW29+kso9+qcvIPZ9jzB73Y/QZ2v4FbDrC6dFJDJvn9NrVjDqmMx/O/9j6T57v59K2djJ3sXsyGpagKrXGP+u/aWJMCa0rg9q/SaUIIJndZ9F3w6Jv0yP50ntk+k/5xB+vJLEEzRM/Ec8HIF4wPZdBCwWA5dsy1/Hj1v2VpvHmwf3FBX/hLtoxIVWikTBprm5pKJLeMTMvDDCLmcta1K0sktwjH1jh6TwE9EAx9uYA7G9Ce9Ama4WImQy1cPrZRrfXrEJfbY9H1cBo9q+FVAsa/W72jGcMiX3DuP5RBAdHBrzezzUTPalSPtgkacQbVqzH3VpO5t+K1YbN0WWbLfpOeSY+9nzSYyKic/uYc+T02QggUTeHQHzRpzqc5/PIePn11N9sfGMPY5uG3dbyaiVszqZ8rIlyV7K/PoqQjwimD7g8j6vsVvJ71e703K6UfgzWlUHlKMPNOk/L7TXb/89ip1erRSb0X0Pc+KJd1bT0QPPhOlckhi4HxJVHSfNak1PBiYeplZHfYBM2Q6dfqHUVMWloldNbm+R55gupRZ1EcdYn6ZcG2b5Uw9RJeOWTiBzWGfrFA71NZpl6rM/tz6VMhkUg2Pu50gDstRUISiURyPaiGQhSITZFtSdQ0lIGbF4TA6tEp3p8iu9NCUaB6tM3Mm81Nca4kkltF8b4UPU9l8MohUSAYeqlAa8LDmw8Y/15tqeIaA2MKVWFsR3p5oaoQbXx3zZuKn1E58aU0hQsBW99zUQQUR0OKo7HBITShPqJiVgR974dcfNEgusyWaVdjW4ddEwy/H68TCyXeLjQUnGmfyuF43al51uPC38yT220jglh0HHkCs6iR3WEy+MUCXjVk9mcNmhdWzl59idkBi8/2KOw9VWPraIty0eTUrhy1vHntjdchYSti/LtVCgdtNFOl9FCa1KCBM2sw+XId86MWvU9nGf6lAjNvNBbtzZKNiWorlO5Pk91pLgYTrh5rM/16Q44dJJJ1ihSnSjry1bfLnPrLnQQtA0WP2PbSRR74bxsd6zZCe037/tbsg6uuG7H6AXNGW91g6xJVM33tSgvMhdlV1z3qr95Aaytri8wxGRRXXXfU61513XAN5xlg2stdu9ICWX31Boq0uvpreG9+ctV1AWa81V/DtVA0rhIp8iqMtwurrnvRKa267qy/+uMzlLWtxJb91YvpvGj1Aq4v9x1ZUzta0eonRGNucdV1m8HqnbGq/tqed2Ot1V/vtL76/t9jr21h+77c2Krrflzbsuq6USfV6WWcv99i5BOXAy+3GB5xmXi0wzUcgul7NaYji+KZkK7TId01l8+9NcXRFzOEq8giOlFf/TMpb6/NaOqF1y9K3HusxtBoPMGd6TM5diBPpMfHM1Zffd8optb2nFkLNWf1fbo303kccDV0dfWOJMEaLFvX6neXk7HWNjaIlKXrPXfPZde+w2R2V2F21ftt+Fc8Z+yFvwW8+6F2P1gXIXNSQa0rRIaCU1KpbVNp9yj0fRRSPA3Vv+7l/BeX9qdyEYD+5+MsP5M/riGRKEKgiM1nhdmMxySRSCSSu5v2uM+5vyiz/Te7FstyuyxqxwVTr9XJ7bJIb1maR4XtiN6nM2S2LY0HJ35YpXFmbeNeieRO0bzoUdiXQkQw8rslxLMOkd5CedVG8VX0TJwNVVGX5n2tKO7vhW0Nnt72Cd+v3Y9wFURLxf1ZljQm6R/H88+ZEYPpbKwEDcPkPLP0iyeB2Alq2z9abndLN0P6x10sNx5z6hmNSIELg1mO7ywQhiqlmrsoTg1UhcnuFCe2FpZHmu40vb1iGCv05LhWWaVJWQmSPyA6ZMEM/WS9kM4ZmlfFlT+hJOf8kZu0oShmsp6iJttrpZJ2ck1LbltKJ20kipLc34Fi0nbcDJfbpfQOx/BAz3iibMpJ2p0+330iUdYJN0wuwTU62CI72TqyRtKG1cl+0nKXH1enffllm75qk0MX4oyInw72kFANAWY++ZudpmF+ZZX2pE73wypMQCJMHoPXTvZf3Uzauf0O9XwneR00K7ltVyYp0utk7/7R1L5E2Ux9uX2+N5e0oxXMpCNMbypZr9N1PuElMx90Ok+dogQGavIY1A52u0Bd/rttP3kuTT35sLKs5P3bqUxc0bajj+ToKxsMnnMo9sTXKP1CnuL/dhyvEhI+E59TzVbJbLMY/lqB+Y/atFbpeHU76HsuS2F/iuZFj8YZj65DaYa/WsSdCTAKGmE7onXRw6+FtEZvPFK/llIY+IU8kSOYfKXWUXwKVxfjmV0ag1+M7dK5PRYX/7oCwOk/fyhRd9dvf7js86VgKX49JHW+DiPx58EvFph5s0HlkzaqqbDr93sYO7b03BSRwtkPt8LC7kIvImhEWF1xv2z8h6W+nQJG1Ryn2vnFst2/s7wdAFM/GYzPR1OQPSvwSjDTm4wE0eleUju8M3Id1gz2FGcSZcN2ZdnnTmtn21LlRNnnsp8lynbq1URZr5Z8Vvkiea+OmEm79GGGE2WvTe1Z9lkJBcWLAaWzAU5JZeJBg6lafK4PiAr9uBTfVCj+i15aY0v3mTMTMP9hi9xuC2cmIPIFVrcOAjLbTQaAoB3hV0Mqn7Rojflkf62EkdeYP9yiedbDnQuIvJWd88PWLUrJdAvI7bHoeSKDVwmpn3LxygHzHzTpOpQhu9PCnQuon3RpnHEpHExhdetMvVq7o8L1tbBZbcs3E3l+JBKJRCKRdELRoetQmtJDaUJHMPr3FfzKxg0sLpoKNFWU4s05htKDKbofy+DXI8rvNakddzbMGFkiuVPYgwa9T2eZ/6jF7NuxkHvwS3ky283E2qAaCrZeaKF7ERd2ZPBNqTK9mVS36TT6NFKVEDUAL6OQigKcHgWhKSi+YMsrAcM/8Zl8Ssfpic9/fVBDdwXVLTpeRiE0FSKDRTGx+f+dXvY73lzI3Nxy3+DWRagcbmN16/Q8mWHoKwWa511m3mziV6/9jL64JcNkf4reGYetY00ee3+OsyMZzm/NbtjkMdVPnTgYRCgo3Z8is82i/E4Lby5k7FtVep/O0vt0Fnc2wJmSQXc2Kvl7bLoOpQndJbuhXw2lMPUmI22BnZHn5PqQ4lRJguxui8/+dA9ECt0PzjL47BTqxhx/SCQSieQOMrvDYviYi+6Dl72GoFBVqexWqew2KJ72GfgwYP/LTT57PkOQ2ngvod2f1RkadXBslY8PFWln5JBLcm3crfFfvYMQfvqQSmouwqp2cOLt07F6dFpjPkF94zjxSCQSiUQikdwtKHoshot8gTcXYvfraCk1zoDaZ1D5tE3x4JJDff4em6nX6phd2jJxqt8IlwlTZ99qSGGqZEPhTAYU9kHlkzY9X0uhvpIierKNsiCk1CyV0b+v0J5YWcCjWALv5ymisaX7Y+wei6mdqwtAFjRCQidCWwiIdfihPJ6tsvtYA8uNmC1anBzJ00gbhPqSTeLA2XkAQlXhjfv7aaVuQOwpkdwuoohHzkzS12gjgPdG+mjaJnL1XnLHURQq/QZaKCjOxg5C6UZE+pHlgj8hBIqikB4ySQ0YXPjreby5deDcq8RjNgC7Xye9JX4nGDkNEQjsvvjzJVFne8KnPe4x/3E7FuldB/1fyJMeit995oc67szaHKv8asj8Jy3y++xlgSBWw8wbdYJmSGarSWZk+fu296kslU/a6Nmr2/EvZSTXTBWtSyVSoNxl4Voqw+Nx4IHjI3nOD60QiFUFu1fHmIzQXOj9eWwH9bMw88U1Hc5dg96O2Pqui9kQaJ7gki49PR/hZhUi4TDba3Hk/iL1c012n4oF8+nhpTFWetggNVDg/H8sEzTjHTQWMpOW329i9egJJ7/zf1nGyGt48+vgXr0FaGkVPaOhZ7Rl50qEguYFDyGg56kMvU8v9ee+Z3NM/FAGlpRIJBKJRCLZzHQ9nKHroTQiFOgpFbOobWxx6kkTNIGy7caDLRXvS9HzRJbyBy3m3pWZUiWS1WD16Qy8kKM96TP71pJYsT3uk9lukttlETQzzL7ZRM+oPPTuPJlmQKQqFCs+7z9WWnM2VcnKhLZCY+AyH1B9yUdPGApjz+kMvRGw5ZWA+lYVve6ju9DoV3FzCkFKwa4IUMApsObr484FjH2nSmaHSe9TWbb94xKVj9tMB4JIX3lfvqEyPpRmYiDF9gsNdp5rsPN8k/mCyZzOVYPgrWfy+2x6n8zG711NYdd/0cPkj2t41ZD6aZfifSmyOywpTt3AVA+3ye2ysPsM3NmA+imH+U9uXaIfiURy40ilhAQA1YaB5/PYAwaqoaAogu2/cp7ctrVl55NIJBKJ5HKUCNy0wtz+1TtsVnYZRJ7K0BGPAz9oMn7AZGbP6jPc3nGiiC0X27iWyltPdyEjPEhuFq1eFbsSYlYjvMJSvxp4Ps5GMPlK/U41TbLeEGzOBZ3NeEwSiUQi2fQU70/R/WgG1VjdAuOpP55F+PFLr/xOCyOrLYoa6idcGmc9Iieicd4jbMrAJJKNg6KDvbBo3/t0FuYWyk+ZiK0BysX4u9SQcU1xajipExyPBd1KKuL9LxSvufAeVwYEhI6gddEjt8emnVK578NYKODYKkceyDOayyGucApIOQH5VtyuU1vyUpgq2TD0j7v0N9pUbJO3dw4Q6MksmhLJnWRu0OCsmyLdCJneYnHfm7F9a/RbFXqezGD3Gvj1ECOnoagKhXtTzPw0mXH2tqLArt/vQVEVnCkfPaehmPF7w5nxmXq5zrZfL6GZKrUTDq0LHtmdVuyo/HCG8e9X8arhmp2UtXT8G+1JD81SFt9rq0WEMPtmk9k31772G7YFs282mdOb7PxnPaja0nvSnQ9QDOj/fDLTNMQCYy293EauCsjXPHRf0MjofPxAEbWhkHJCGpnlda0+Pc6AsMOKf/cnS2NgtwizT8rnGhD3hSuGQ7oryMzG56vZpZIuRyjA1AGD/k99BqM4g+u57Rm2n2vi6wrn//U0IoTcXouB5/OxkFkRHbuaCOno4CdCNq0wFaDycRu/EtL7dBYjv9T/nJmAzDYTIeJMJ+UPW0S+QE+r9H8+R89TGdqjPs1RD9bzVG6z2pZvJvL8SCQSiUQi6UD9lENuj4WR1WiPezTPbdzAklpGJTpso+zwUMxr118RJc6aWj3WZu4d6YsskayW/s/nEL5g8kfLAx2FToSiKJQ/atH1YJrS/en4i3rAu4+X0APBQ+9XKM77VLpu9AaWrIXIVhh9Qaf4WUTuYkQ7r9K0FYrnA0rnQkIdtAUzSqukMn3QQOnWIAIRsaosqADNsx6ti2VKD6YpPZjmsdfKjG+zubA7fU3Bq1AVzm7PMdGf4tEP5yhVPTLfKNG64ONV4sZZvToigMqn7XUdZKF6tE16q0lmm0nkRUS+YODF/OL3fi2keWHjvovvRlRDQdFZzKwuojhr8MALBqgw/5EUpt4SpC2wM/KcXBdSnCpBtWH7b3WjGgpBM6JxxuPp//00quwdEolEIrlBAktBd9c+SpsbMRj4zEMLoTAZ3FZxqt6IiEyIzOsTlWYaIQowOWhLYarkptIYVuk6GZIbDZlbEKdmRkyMgkbzrEfUWs8eLRKJRCKRSCR3J4X9NiIUnP+7ecySTt+zWRQFqscdSvelCdoReioe243+fQUjrxK5ArtPZ/CLhWX7qh13rjvTlkRyp7G6dQr7UkRehHrlfLsnhAVxavGBWNDtzPiM/n0lsR/hKTjfKi5+VooBQgWEuOqiuxZEPPjJPMX/qgdnMqB23EFfEL6k2vE86vChPJWSSaQriNby/ZheyDOfTC5+PjuwQlY3iWSdoSy8Ns735KQwVbI+URQmd9iLH71qgFnQ2fK14mKZkdMI3Qi/FuJVwzWLMm8ELaXQ9UgGVVNQTIXcFVm6/UbIxI9r7PjtbgDsXoMd/6R78fvWRY/mRQ+/HpJd2Hboy/EY79QfzzDwQp7UoIFfCWmc85j/sHXVtoz9fZXMDoOB5wsM/5KJNx9w/j/P3zSRmyIEDx2Zo2/eYfahdMe2iCDOmnkpayyAVdLR0+pitthl9UOBsiBkDd0IzVKpn3Qw701h+QLPUFCE4Ok3Zxe3+f7TwwD0zzls+eUiqUGDKBDLBLEAoQHTz2qEGQXuQj+z5lwKv60jBFg/N9BHNaJshPdIgLAg0wxJl5ccCDPluKNECvQc9wktBXXB0Wv7udhB3AgEfc/lmHqlTv2Ei55uEPmC9oQvA+NcQfO8R/NinCE2PWzQ9XCG1ICBCAWqrmD16ATNEGcyduzUcyqFe1OU7k/jzgaMfadC6Mi5nUQikUgkEslmwpsLOf8fy1jdOu7sxs3SZhQ0Bl7MgQbqEzcuAik9mEbPaFSPODehdRLJ3UF6m4nVpXPx7yoEV8zHL80la8cdrC4dEcXZmk98sYdG3gAhcE2V7llXilPvBIpCZb9GZb+GG8brXrN7DXb8xEHzBOeeju2Dgx97bP+pC9/oWtw0aEXMvdukduzaz0sRQPm9FrXjDub/Y5iR0208W2Nyq33NbQGclM47h3rYMt6i79U50lsNivfFQWH9Wggq5PdanP/P8wT19WkTEiFM/KBKz1NZ2mMezfNxgEBFBdVSqR5zFgNCS9YvqqlgljRSQyalB1OoukJr3MeZ9FFNhdIDsQC/PXYXGoAlkg2IlB/e5agmbP+NWJg69ZM69eNuXC57hkQikUhuAm5axWytPYLS3tdaaCE0ulXOPpq6BS3rzPbX2qRnBSgw+qjJ7NDanfbSrdjI3EpLhz/JzaXdrSCA9HTE3AGw5yIGv5hHhDD1k9o1t5dIJBKJRCKR3H5qxx16nsjS+1SW1qiHM+mTGjYp3Zdm7r0mejp2UgbY8stFALz5ALO03Dg387OGFKZKNjTOdEBrzCM1sCRcEd0hzKmIX/AQ2wLK/5Og54lY+Gn3GpQeSBN4GroZ2xWEAPcnORBL4pRowuTh79RolDTOPZBCjaBVWC5+3XaxRaHqM/d2k/QWc1lmt3K3wWf35fGtqweXKtQ9jFDgawozRZtIk4GoJBuH6UGLvUcbbJ+tM9qVv/YGEskd5vxfztPzRGYp68MCmqWi9arYvQZGTmX2Z00UQyG73cSdDW5JlkbVUtj2jS5QIHIjjMKSvbd6tE3h3hTpLSY7fttGRAK/GuLXIzLblhz/ep/OMvBC8r0x9Vodq8cguz12SNP6VVRb6SgIze+3yYyYVD5pEzSuGA+ucXioZ1W0lErQjAivCHTXU3bom4+d30oPpK4qlJ16tc7sO030lIpbDkCA1aMz9ZM6mq2Q32djFuOx7CVhanvKZ/bnDZzJAC2lsHNP7Chn+gLTX7p2rq7y+XcnsfwQVUBQUAlaIfqCrV0IgVAV6vcoVPepRPYqMqdvcObKGaJIobcnzhjs1g3e+pMHiIKl/nhp5qA2VOyfxP1vB/G1rPepqCFk5uLrrQpwbQXzir4UqKBHkN661H9lNoJrEIFfCalWQqrHHDLbTFIDBlpKpXnOXRSmApTfbVF+t4XVqzP05QKDLxUY+04FsXE1CxKJRCKRSO4Qek7FyGk4Uz5i/SYzu2sRAThT63eQlxo0yO220HMqqhHPVYNWPD8M2/G8N7vLImiGaF9soKRubE3C6tXpfjReC9nIgl2J5HaTGTHxKgHOpJ/4LnTi+b2RURn/XnWxfO534mBfKApzvSY9Mx6n996W5kquQWgpnHneRigg9NiWdarfxqwLrD+YQFFigV5ur03/cznCVkTz/OqEeEE9YnR/FtON2HOkQbbqc/reLEK9ts3MtTVO78wR/k9nAdAzKkLEfUzVFLb/ky5KD6SZeaNx/Qd/ixEhzPx0qX31k+4dbI1kLVh9On3PZBcDHopQUPvMIQoERkGj9EBqMdjxmT+bI2yvT5G0RCJZjpQg3sUoOoz8ZjeqpTD9RmNRmCqRSCQSyc1CDWOh51oJTQXRFEzeYxHat8fps3DOJzMraBcUrIZgyzsefWmf8laDyT0G6Cq5yYC+Mx52LSLS4eRTaYL08vaJhUwtm98tRnLbUVWCNKRmBYNvuuTG4vtr/LsVIhkcSnIZiljKjrOZ2IzHJJFIJJLNT+VwG1SF0gOpWJSngLKwINj9SJwd8koa5zxyuoKRix3Op9+oo5oqRkHDr0qPI8kGRcD496qUHkqT32djZDWUubiPj/7jAGcyYPv/2g0TS5t0P5rh//flh2ie80gNGXQ/llkmbr2c7HzIwZ/EC9Cj36pQGI/vra5H0nQ/kqH8UYuP/5+72Xqhyd6TdQCqeYOP7u0iVNRlGdfs1PIJVi6K7eZGKGgNKRRLcXaxanW5cAoApcPiaLTcQiDMZB2hdbAihKu0LKgdBsr6KgfPnX6iw8D7yqS0okPbVCv5fFI6mHREh1MUdtpfh20jkaxXtJJRxDN6cq2j16wv+/xA+kKiTpeWdLKoR8lI41oHNdgFvztR1mMl99cKktHqJ5u5RFmQSp4A0eH4NXX5CY3C5cHSIl2lkrYotlxUERLpC/vtcO1NM+kkqHboD0EqubQo/GR7zVzSWGFbyfdevXbtwHS6kexflp3cV+B1CBbX4bylUsm29aaS1yuIksflh8nf8Nzl50TNJ89b1OGkd9q/qSaP1fOS5zxbSIrGOtXrlFQ6ijr0Je2KLAwd6mSN5HkztWR7y83k8zFjJ+/LajN57c//x/s4D7z4ylLG6vF/qGLkNOx+ndAVVA/Hx979SHoxcnr9lMPkK/WblkUUILfHQk+rzH/cIjNioiyczOZFj+k3Glh9OnZP/F6a/mmDnicyiQAj2oJt22+EGNm47wStiNoxB0WL95VZEANOvbr8OXWJ0oNpzIJGatDgzJ/MMfHDKvaAwdxbzTWJU4e+UlgmnAWIAkH6fzxC66KHnlNpv5AHBaZ/ErfFLGkU7k1hFDQ0W0E1FKJQMPnjWIjadShN8b4UmqXi10PO/XmZ+Y/aGEWN7b9xWeaHkRRDAwaKgIu9WZiJ77dQAe2yY7CC+AKGKrQtDSZ8UoNL7/72pM9Hvz6IZ2vQIv4DLCP5POjLJe/pnJHsh06YvG8mWkkx/7l617LPnZ6Pue7kO+nj9kii7P9zMLl/q0en54kMfiOk/G6LoBlh9els+9USAFM/qZMaMgiaEV0PxX2pftJh7t0mIoSgGaGlVVRDiSN6EL9zg0YEKuz5r3qBOHjO7NsLmVILGl2H0mS2mugRTPywSms0eS4lqyCC5jmP5rmVDfXuTMD4P1TZ8tUiI/+4i+pnDu5sgPDFwmUT8X0t4vsz8gWRF/+ragqpQYPsLov0FmNR/H1pE0Qc6MiZ9GlPBThTPpG7doPqZrUt30zk+ZFIJBLJnSKzw2TwF/IoqoIz7XPxbyp3ukmSDUJmu0n3YxmsLh2/FuLOBfjtEBTQ0ypm0UBLq4TtiPL7LSqHW+z7H27ctTy32yLyBeX3Owc/kkgkSbSUQm6PRe1o0sagpRS2/VpsJ2h3EK5eYrbHYmjMIdUMaGekTGQ9EBlX2FoVBS+vwMySTb416qNnVUoPplctTr3E8ftzVEsOOz9rkmmEjG1PMddnrkqkeonLs/RGkaD8Xovep7LYfTrVYw6N064MpCy5aRTutTG7dCZfruGWA/xKuCzwiqLFQS4iVxA2pTD1ViJtgZ2R5+T6kKOOu5jeZ3JotsLsW01qR66dBl4ikUgkkrVi1yOCzn6jK3LhIZt7Xm2x6802c9sNJu8xOzrl3TSiiMGPfSIVzjxvoQaw5W2PzGzE4HGPgePxhF8hXuQPDTAd2PtGi3ZBZX7IoNIVO1NpQTwq7eBbJpHcMOdeMBl5xSM/Fvez0e9VaY/LCJMSiUQikUgktwNFhcLBFGaXRuOUuyrHbRHC/Act5j+InS8UQ2HXP+tGURWCdoTdG0+Yyh806TqUASC7w2TqlfpiJtW+Z2LRUs9jGc7/5zLenBSoSjYmIoTyey3K77XI7rYo3ZfCb4SLUfNbz4Wo5QjVhcxr8dLF0EsF6icdcnts3LmAqZ/UFzOf1k+75HZZi/sP3YjKp23c2YDBL+bR8yp2j8Hs283F7G+GHy9gfvBQifmSCYHC7tM1so2AwweKhHpyMt8zEwtZyn0G01usxPcSyXpnqpCi1HIptF3mc9cWgkok64GfPdHDwSNVCnU/zhjgRJglnfF/qJLeZhI2o8VMEQC53TahK5ZFyr9R8nttIi/Cr4WLmUAB7B4dRYGZNxp0HUpT+aRNa9QnaEQM/2Kh474uCVMbZ13qp5zFoCMTP6hSeiBN84KHO5O08ekZleYFF8dWaZyK30eNMx6NM2uPVBc0k2NIVVdIDeqIQND9eAa7VwcVBl8qMPdOg8FfiI/ncnEtxAEkLn8Hx+1aEn761ZDq0Tb2gBFnfris3sjM0jXSFkR11azB6V05GlkdX1cXHed2/eFhdv5ez2L9ie/X8P7pljUf+3pACJh/pwRCwSyJxWy/qqmgpVS6H8uQ3hKLh60enemfNOh9Mru4/eWZ3y8x/0kbv7Z0H4StiI4zhQhO/8ksdq9Oa9xfFHGHrYjye038akh7zKNxVkZAvB240wEX/mqe7kfTdD24lAVi1duXA2rHXSJv4UIu+JkqqoLVo5O/N0XXw/E+2xM+Ez+vwNRNPACJRCKRSCR3jOx2azHw4XrOzim58zz6UYgIIBizcN7PEE6b6MMu1qEa+pBHt9G85j7OtHtX/H7KTwbdWU4DVNAslfQWg9ZFGQhHIlkNpYfSEEH5w6Sou/epJTuBuOI10J5c+m48SnOvWmP4mM+RoQKRqlDYUuValKyVheR7M9Mrfn8ukwzgeCVlOgT9vIwguPYcObyGM2oQdAhgeAVjjc42vEs4/rXlNf41nEM7BfVL8PJyO1f1YsjgWwHG3w7h51UCoUIk6DkWYLQE7W6V6oi2LODpwIvHgNjGNjZo0PNEhv2VAL8WMvduk/S/W3ldq/Zaf8dyF5iZEuSOGfT1GfQ+l6OWMykXTBxTxzcUXFOjljVJFV26J1yytYBKd3x9DE8QqdAo6Hgpjb5f/uza5+Mu4sQfPbLi93v/+XvX3sf/eY19/P6193G96DkVq6QT+QKvEhC216bkq590KeyL16s6+T6IEJxJOd6VSDYaUpx6F5MeNhC+oPJxMrqyRCKRSO4+ogDUeVAbEHQBmRvb38AJFz2AqZ1rV6e6eY1jL2bY83qLnnM+3ed8Ih18SyEyFAIz/vMthZap4aY13JSKk1GXMkCsEnsuZMt7HloAkwcNUFUiEy48a+P5CoWJkO4LPmoIjS6N6d0Gkaly33fqWC2B1QopTISEuzUu7sjQP+UggHK3dFiV3HwiW+XsSybbXvFJzQsZkUzSmYXo+puOzXhMEolEItlQZHdZiwu/do/Bhb+aX/M+hC849UezFPbZZHdaVCd95j9qoRoKfj2k/7k8qqmiWleJZCvfh5JNQuOUuyiygViYYZ5U8Ycj/AGo/LZP4S90lEght8dm5ucNKh+30TNLc/7cLougGVL+sEXfMzmmX2/QOO1iD+hkd1o4Mz5Tr9aoHV/6ndEtabaMtth5psHEYIpdpxuYC4LVp96Z4Y0n+hJt7ZqLHadOPJjtnIJQIlnnFJsuAmha1xFBTiK5Q7TTOu8+2o3phjzwby9QuDd2VBl6aclxLGiFhE6EosfPZhHc3IFS7bhD37M5ep6Ix3/NCx4okBo06PtcjqlX64x/r7ZYv3XR49S/nSG91Vxs5+k/nkXPqxh5DT2j0vdMjuyO2G488aMajdPuihlkep7KkNtlEzoRM6/fmPB2+rUGMz9rYBZ1rN7YRaB2zCG701wMinIJs6CRv2cpc/TlwtSwHVH9rL1MnBq0ImZ/fplzs4DphfZu+XpxcftX7hvi+cPjy35LAYoNn4HpNke7lrcjWvBLigKBqivs+Cfd9P58jvO7Mtz3UY3j9+aY2LIxRPfCV6i8G2dfHfl1EJEgaEXLzu0l7B6Dbf+ohBACZ8ZfDGgz/v0qfj0kaERrtgtHrugYXMeZCnCmbp6oW7I6/GrI5I/jDMV6Rl18jqEsDDcVUI04W7Gy8C/E18uvXtu51cir2AMGpQfSDH05D99cQ+M2q235ZiLPj0QikUjuELNvNXCmfbxKSHtMCv0knUlvM2l8xyaYMCFU0Po8Mr9Uxthy+4PRzL7ZpHRfGqOggRSnSiSrIjVg0DjnErnJiYdbDhcDgHU9nCaz3cTuNXDLAaeEQCysX0SqyrHBbg6OzbJlvo5QwD+pcvThHK28lI2sZ5pDKqEJhbMRsw/E62GpckTvsVikVzwf0nPUp7pdxyko+BmV4FK2FcCZ8Bn92wpmt0b3wxkGXsjTOu8TjFxf5km3X8HtVzh5pp++uTZdVZfBmTaWF6Iu/KYA2hmNdDMk0BS2nEkmS2tlNdwnM9RPuosBayUbEBW6DqVJD5ukBpevN3nzAZUjbapHnFXZTdoT8bhg4IU87lwZryyDc98xpC2wM/KcXBdylHEXo2dUnA5ReCUSiURy99A6naL2QZGgbCAChSJLTpZCEQgbgrwg7BV4w4KwB1iF9tOshwwdc/ENGD1gke4cr3tF/IzK0S9nyU4HdJ/zyZRDDEegtATKwsAvbu1yA6YAAlOhkdeY7zeYGTKJrog8XTzjUzoXYFcFahRvU9mmMXfPFU56qkp1WKU6nHTeO/JShtR8RLugcuBHTXadarL1QgvTE3imQrDGaNcSyapRVaYeMtj+ikd2u4k7LcdzEolEIpFIJLeD5jmPyqdt0sMG1WM3EOwtgupRh+rRpcW5bb/dhZ5SifwI1VAWBQ3tKR89FQsa6qccuTAj2bQU70+Rel8j9b6Guyek/WhE9XcCKl+uk95iLN4vQTPi1B/NYPcZgEA1VTIjcZaxgedz+I+kmflZg9CJaI/5y4SpCEGuHmAEgmLVp1hdbk8ItJXn8ZEuhamSjUdu3qO/1qZtaHimXBKUbDw8S2P69QZz77XY+btx9oXRb1cIWxH5e2xKDy5lWyjen2L2reZNcxqoHnEImhFWj079lItficdh2d0Wgy/myd9jE7QinCkfq1tHsxXccriUzRDoeTKDnlHx6xFGYfl7xix1zuKg2goijIOaVI845HbZKHosUMO/sYMTAbizwTInsPRWs2PdylGHzLZYgOo3QlqjHtOvNUBAami5vXz0W1cP2jL6dxXO/B+HsLyAQsvH0xTMMD6OU9tyaJFAEYKxLcnMGXpGxasGmIX4+aUaCvl6yH0fxaLgTOM67KJCoLYhsgDt5r7bRQhRWQcBaiFEsZauV9BY/gxWVAU9pTLxoxphK87Qe6m/KXp8rcJ2RNC8PufBjYTZrTH8S0Xqx534Hr7LuBXX2K9F+DUXRVUoPSUDqUokEolEslkI2/EcQSK5Gna/zvBXCgjPw368jrHFQy0Fdy7enojnk3pK+k9JJKtCAbNLp37S7fh17VgbPauS32vR/ehS1hGrS8cIIzw9tjWpUYQRRlRTFhnXZzqfosttM3KixbFHrpX1WHInEZpCbbtG/lxIY1jFnIvoPr60ljX2qEFmJqJ4JkBfiDkQ/G43Mz9rLAsI682FTPywxpavF0m9puM+EuLtD+E63weuqXFxMMvFwaUMvWooSLkBpapLl+8wvsNmetjCakcIBQJDQQ2hMO9TnPHpfyBN6YF0IqisZONQ2G/T/UiGxhmXyZdrtMZ9VEPB6tLI7rDofTpLbpfNxA+qhM7Kduyex5aeYZqtwnX4l0skkvWHXIm+m1HiRS2JRCKR3J3UP8lS+Wns0KPlAsx+l7KdIkoJtHkVraygNcCYUjCnVFKfgkAQpcHZF8FwBOqSAdGuBgwfczHbglQ9fr+cfDK9UOf6Jw+NPp1GX4chSxRhtoAqWG2B5cTiVbsdka6FFGcDSrMBO460CTVoZzXCvCA7GaH7sY+Sl1GoD6rM7TIIsmszhka6SrM33ub459LseNPB8AVzPSaHH5CGHMmtxS3FfdgekFlPJEkUwaKIfzOxGY9JIpFIJBuLyBfMvHHzswrpOXXROUM1VGZ+3iC7wyI1YBDUQ0b/roLdp+POyaAkks2JnlXpfuQyR4qTGgiF9lMhfjWkWg3J77MxihqpAQM9o6KnVZQFQUm0IHBRNAWzpKPoCq1RbzErHEBuj8XTP5vBdiMcS6Wd0pjrtqjkTFppHddUr5oVdWxriq6yXCiXbDwGL7TZc6yBAN7e3X+nmyOR3BBhK2L+kxal+9ME9RC/FjH7VpPCgRSqoTD/cYvSA2msHh33JgbmbZ7zaJ5bnl2mccqlttUhf4+NCATZHRZuOcCbDMlsi4We7SmfVL9B4d4UrXGP1JCB1aUjIoGixu+bysdxsBPFUOh+LE3pviVxphACZzKg9pnDqT+eRdW4pkPP9TL9WoP2uI9mq7jlAD0dBzf2KyEn/3AmDlZ5xXJye9zn1L+dQTUVQlckvu/E549MLP5fAEKBU9tjO3qx6uIZS/b5rrLLntM18r/RRdBevrbgGwqGL2inVKYGbVLNgLQIMJ0I04kITIV6UYcOCVWNeUHPqwLNhdpBqN23Bo88ITBaAj+lwMI11NuCzGRIpEOQVmj9Ve9idXXQw/5SjdrxHPawQ+gsFyOPfa9K5EQ4VwQevBuzR6h6LNQtPZhGMRRmfiozud4sWmMeeXdtawib1bZ8M5HnRyKRSCQSyXolPWwiQkH2l8soneMh3Xb8WoiRXyeNkUjWOUZBQ9UVvPmA/H4bEQrqJxbWJlTY+Xs9APjNEHVhqhe0I6Zfr+PdF99nSiR45NwkpZaDp2kYUYRAYXR3it2Hm6TrAa2clI6sZyp7NDLjEVtfjUWple0aTkGl3aPilFRqI8TB13ww64Kef1tl4IUco/UQZ2q5XWniB1W2/L9L2O/qaBMK7Rdunt0p0hSaaYNm2qCaXXrOO5ml/4cGzA5aCKB/zKU94dOS2d83LHavgTPlM/HD2mJZCPiVkMYZD/tIm8EvFtj6qyXGvlvFr17dZ7x+yiWzw8IsaPQ9l+Pi384T3SL7t2RlpC2wM/KcXB9yhHG3I4O9SyQSyV2LcyENKPT/xihmdzzxHKttWfj2Mm+SCNQ5MMcU9GkFY0Yh84HG/Z82+fSFTJyVNIrY99MWWgiRCl5K4eyDKdqlWzjUUFW8LLStq/xGFNE14dM96ZOrBGSrIVRBaDCzV2f6gL5MXHsjeDmNt5/puSn7kkhWjQKajDApkUgkEolEsuFJX5Z5KgoE1aMOvU/GkWf1tAqCxGKiRLKZ0NPL5zWRLxBvhsz8DxX6flLEOKOSfidezG6cdWmPeaApeOWAvudyqAsi1dCN0Cw1jtJ7IEWlx2Dmvxxg4JzDwNEW0yWdozvSNPLaohC13VrIJHWZGcQJl7fn8I4u1J0htJYb01UtuSolOqTri4Ir5m1BB6N8pwWu1druRYeKfocyM6kcUtTkD9vZpBDX95bbXqLoBhYWOmyq68m2pa2kg8I9xelEmaEmF7d7jHqi7Nn0iWWf+7VkBuxeLWljckQyg9txP6l4mvCKibJZN5so86KkM57jJ3/3TL07UWYYyWO9UlMdRQqZus99H1dIOxGBpvDmvn5amTjb8CId+kizZifKBvsriTJNTV6vZjuZlc3ucA1dr4Md74puqHS4t6IO/dxpJ7M9mqnkb/pu8jfDMGlPOTqTFPA6TlLQE/rJa6hd0YdTerIdQZT8zbl2MsDdVDlZpuvJa/9g/1ii7HQ1aZ8MO/xuy0sel3fFtSkWkuKw/3rbTxJllTCZ7fKPzj2TrNdK3jdXPlsAtA7H2vyHnQC0QsFEW+B9Pbf43eRJl6EjHqUH0njVkN6ns4z+XSWxj5vN1E/qzPy8QeQIFENB+AKzWyOzrYuZnzewunVS/QvnOYLx71fJ7bLofjxD+f0mQSvCHtBJbzHJjJiYxSuyaioKqUGD1KBB44x7y4Spl7haRo5L7e+ECOPMTath9//tQ/i9pf6pAESCA//9EQZezGFkNZoXPfSMSuWTNv2fj69x+YMmrYseW365tLjt+T+coetQmuJ9KR5+++oZWydfrtH1SJrx79XwqyGZ7Sb9LxUWv3f/jwbtw8l3QScUHbZ/qUBmIcts87yL1WesmP0nmjBpfbOHFuBMx+JfIx+PV8a/X8WZlOP7SzhTwaKgu3ggReuCR/O8d+0N10jXoTTZXRaNsy614w5BfX0F8VYWHgNijV1Dz6rs+J143FA92qbyaRuvHD9Lg3rE6LerN7OZEolEIpFIJJJ1TGvco+uRNI2/7cZ+rI6x7eaPq9eKXwuxuqSbukSyGqzu+F7pOpQmNRSLzdPDJnpWJT28ZAud+VmDoS/GNg49peLNL9nT9kzP09N0EEAqCGkbOsf7S6QHmwyfdTj4do1PniwsExBK1hdBWuHCFw3MqsAzVPxOCVcUhcgEp1th8uU6O7eYZHdaifXksC1wngqIigL7XZ22F0DSrH7LKcz5eJWA0b+v3P4f3wCU6g5bZxukvICeustEMU1TX7uN6Eo0Ow7qa5Y0UMCrhDhT/nXvVwiBol99fdCZDLj4N/MMfaXA8C8VuPg381e1H7uzAef/osyeP+jFLGjs+r0enGmf9riPOxesbK+WSCTrFjnqv4t49KPlC7qVPxZkdxk8/EGY0Obk1dUtxgGcdvrW1I45J3PtSgtsz82tum4k1ibOmPAK1660gKqsfnHKF6sftHtibbfgu7Udq65b9ZOOJFdjwK5du9JlPF84tuq63hrOxylnYNV1OzmjrEQzSDrHXI2HS+dXXfd+6+Ka2vGt6kOrrnuh3bXqutoaQjRkjbUN2h7Pn1l13VFv9W0+5yQdrFbCjVYf2Xe6g+PX1Wj4q+8bw+m1LeCWzNU/S+e9DmG8r8JankkAHy8KTpej74b8eTj//hCtJ+J9lt2kMxEA+YW//cSiz8MRpeMRD/ywQaNXxU8raCFM3mswt3/pWtnEMxl9jW3OpZKOf1fjyeEV+ujOpf9GEZS9DKoOOWD7KvZ9st577UoLdHL0uhrtDg5gV2Oqvvr+DKB3cBC8Gilz9ZGonupe/bMAYNJd/Xu2Ga7e6tFjrj5q+lOl06uuC5BTnVXXveCt/hk24+WuXekymp+bWfF7La2y5WsFlKJO9cjqnzMSiUQikUgkkvVJ7bhLFNYYfDFP9UibvmeW5gDj/7A2m41EshFxpgMmflRj8BdiQZZqKDgzPj1PZSj8x6X5c+PFgIl/tHRP5O6xUDWF9qRHasBEs+J5+cALeRqWyoV70hRmfXYebeEbCp89kLtqdtRrcr3bSSS3ETWIOPBJjZ7Z2PFwYsDi2L152o3V2z8lkvWM0BS87PLn8fQeC90R9J32aZ53Kd2fJn+PRe34LXZeESxGchd+/K83t5BpFFA0qB5p0/VIhsxWkx2/vWRLDF2B1a3T9+xym6EIBc0LHtkdS/ds/ZRD5G/8EN2RI6ifdsjtWlq7VBSFrV8vLn6+JPy8JEz16yHl91uolooQAhHC+b8sI3zB3NtNyu83MUs6elrF+Ge9mG5EqhlieoLREZstL8T7FZEgs81k6DJhql8LESJ20EoIf1VAQHanRfGBFEZWRbOWMrYDKLpC7Wib3B4bI69x4W/mUYizlVx+rS9h98VZBcb/obooGpQsZ/bNBoNfzCOi2FHuZqNo0PVwGkVTsLp18vtszv378k3/nbU3DAr32hQOpDBLGoqixP09gKAVLWSKDvHrEX49XPx8uWOfCJf+X7g3ReHeFEE74sJflgkdQbBClgqJRCKRSCSSzYLdr5Pfa9Oe8KmfWv180O7TsQcMFA2CRkTjtItYXzFM1oQzGTD27Srb/+sUze+XSD1dwzp4Z31K/GpEdocUwUkkq8EsxfeKPWgw8cMqXQ9nyN8T21JaYx6RK5h+vU7oCE7+mxmGvhwH0trytSJHAYRg90wFgKZpkPV8Un6Ar2tEmsLhx/M8/vI8+bIvxanrHKEpuF0KwTV0EXY5YuCXi2i2ijN9dcVhMBC/3NKvGfg7Q6K8IMoKxOpdlm+IVk5nsKjT+3SW2bcbNyy63GwcuFCm0I79eCMFBist/F/vYuw7K2cfXUQIuuou+ZZHtu2TdXxybR9zIVigCOPQuqqmIEJBa9xn8kc1Im9tdufWqE9hfwo9qxI0Og+YgkbE+HerjPxGF8WDKebeba24zzN/OouWVhn5Rhd2n4HdF68L+/V5GdxPItmASHHqXYzWHRBOmvifpbDulcIGiUQiudsIBiCyBNZJhdaDwGo17apK+QEVJyXoO+aTm4wWk17M7Vm/hgtVBVWOfCQbnNKhNN2PxiLy2gmH6qerF9RK7iIEnTMvbXQ24zFJJBKJRLLA4IuxKK9xxmXoy7HjfOVIe82LQhLJRqVx2uXMxBylB1OU7k9TPJBGREv9PzIF9odxVtTIF+T2WAx8IU/1szbTP22Q22mRGjJwpgOMnEbrG11sOdnGaseLtpGmSIGpZNNiOCG7TjTom3JRBDQyGocfKOKkpSFMcncwfp/NzG4T8w9n0CyV3mdyOLMB3tydE2SJMM4GOfmjGv1fyGH16hhZDb8R0hrz6H1qKdCniASKqjD3Xov5j1pYvTpBLUQxlBUzOyo6pIZMivfFAkqvGjL5oxpinerQpn/SwK9FuDM+ekYl8gTefIg7t5AJXVeYerVOZqeJX4nLRQhhK+LMN+diQfBlY2MRgDsTUHw+R35yKRvQuT1ptp+MnZ5qJxyKB1OUHlgelNPIa/Q9k6Xr4TR+NUSzFFRLRbMUFE0haIbolzlpOrM+Ez+oxULWSCye44RzlQKTr9YWHacK+230nEbrokfthHPVLLSS+H45+2e3TiwqQqifdrF6dNyZgNb4nc8gpWdU+p/PxRmST7tUPm4jwjgbs2oo6GkVPadh9ehkd2po9pJDqogEYTsiaEWE7YjqZ/Hc0SzpZLaaqKaCanUQX6+GzWpbvpnI8yORSCQSyboju9OicCBF4UAKo9ik/N7KQgiA0oMpep6IA0WG7QgtpVLb6jD1Sv1WN/eW0p7wyXzVwfl5jvYbBZRMhLnjzmUfcyZ9NCsTj8VnpchEIlkJ1YzXMKqfOjTOeDQveGz9lRKqoTD+/epyQV8E49+tYnbFGRF5PC6u2nHwr4ITz3vfG+knWshedSn/TWDItZLNgBIIdrziwoDB7FsNGqev/qyPugSt53ysTzRSbywFhQ27I5pPCsLcre0Tk9sscv9mip7HM2RGTKZeq9MeW31Slc3OZ1tKPH5ymrap8cb+QYpNl0dPzZDfbzP31rWT/HTXXZ74bAqAWsqgnjKYzdvk/88LeJUQrxpCFAvg09tMeh7LMPRSnqnXGnQ/msaZCagedRaDMF4NZzK+ZnafTqNxddta0IyoHGlTejBNc9THmbj6tQ7bgrAdcvbfz2HkNcySRt+zuWUZoSW3GGkL7Iw8J9eFXJm+CwmmdJrf70I4KhgRxnaZ+loikUjuSlTw+wXWBRXVg2j1CZcBmN9lML/LQHUiek4FBKYC+tqyWEskktWjpVW6H00TOoKx71bxpOFeIpFIJBKJZFOQ3xdPxkI3onAghWarTL1Wp3ZMBiKR3F2ErWgxAnDzvEtrzKf4tTTGrIoSgj6nktlpoqc1eh7PAMSinRBaFz2yuyz6n4uzrWXGPHxTIdQVyn0GU1tl5kjJtWk0TUYniuzdOY26TkxcahiRaod4pgpaxOUN65522Hm6SaYR3zeeqXBib46ZgdsU7lwiWUf4KRWTWIyYv8dm5BtdhG5E/ZRL5ZM2QSO8I6LNyBNM/CDO+m0UNfxKCEochESzFGZ+1liWARHAvZTl4Bqism3f6MIsLAkozZKO3W/QHl+fjl3RQsbTTlzu/F3vkPU2cq9+LnK7l7/jLwlTAdLDBlpKZfbtJmZRQ1Ghed7Dmw8RkaB4fwpFVXCciNAVRG6sHjW7dFRDIb83HqeX32utKBReRCxv/+wqnMckt4/1IjIwSxojvx4L1INWxNh3qqu6b1VDQc+pGDkNLa2ip9XFf82ivvgZ4kwYW3+1ROOMS32sBSdv6SFJJBKJRCKR3DKyuyzy99jMvFHHr119TF4/5VI4mELVFIr3pVYlTr1kh/QbIY3TbhzUZpM4oSsKpJ6qE87rOD/PYYy4KHfI1uVM+US+IL3FkOJUieQaNM95qIbC3LuxPUEEcOE/z6+4jVe+zOClKPxs9zAHx2YpOB4T+QzT+czi15lafA8281I6shnITC+9F7sejq9ze8KPM6h2eJ8F2yOC7RF4oDYU1KqC9ZFG7yuCqS+DMG+hQFVRqH7apnXBpe+5HFu+WqR6tM3sz5tE1xBE3g3MFlL8dP8Azx6b5N6LZWrpWGRe+fja4xmAXeNV2obGqw8OIy4L1Lv37Kll9bz5EG++jTPpM/SVAtt/M7ZP5XZDbpfFxb+rrBhcL2hGeNWAzHaLxpmVA7/NvdPE7tUZ+lKe0W9XrhlIMmhEKCqUHojXt2S8YYlkYyJHGHcZUQSNb3XHERAebGA/1lg3ThYSiUQiub1oM2BeUAgzgih//fuJbJXpg+bNa5hEIkmiwpZfLgJIYarkmihiKeLhZmIzHpNEIpFIJBBHFwXQLHXRAb72mRSmSu4OzG4NPaPhTPpEnqDrkXgBfeKHceY34w8tjDMRmTd0Ilsw8IU8USBojXqkt5jo2di43fe5HOlhk8lXajTPeUz91d7kj8lsZZLLaNRtPv1khHbbpNmwGRvtIvAMHDeOGv7Fz3/G88/cOSXHjnN1tl9sooeCS2vwV06JlIWyalHn9J4s9ZJJFMkVe8ndjVdesplplkrxQIrigdihZfwfqjTP3blsiX5lwQFHwMxPGze8P3faxyxohF5E40wsiGxPrk9h6jIUMLs0zKJO2I5uSExrFDXa4z7pLcn1CREK2hM+5fdbV420P/3aytdhvYgZJZsLvx4SOhGarVI/6az6Hoh8gVcOlzsed+CSiDW7yyK308LemV2TOHWz2pZvJvL8SCQSiURy+8jvs8lsNWluNakeubrN3J0JOPfv57D7DYLm6oyAjbMeZ/98ju5HMrEwFZh7LxaE2f06qqkQtgTu3Mbzzeg34iBJ6YMR498foidqoltL40hfaFfbdJGKv3Lws0iszgYlImhPxLbc+Y/aq9pGIrnbOPEnDy8v+L3lH/f+s/evuY89/9e3F/9v3mPR2mPjvVlmT/ncYnl2twUv5un+r05jden0PJnBr0WMf78a26t+NLLib7zp71zx+3AVz4XHh86v+H07NFb8HuDjyaEVv9e0a78Hsi+dWfF75R9WPlaAvLXyWm6PfW3736yTXfH7bnOFwGfboZYDekNSr+v0GAvZwLsiml9dsjUM2rXl29lAHhiCaItK+z90M/COT/Di1e2mvV21q34HULKv/XwPAb8WMfbtKoV7bXqeyGD16ox+q3rNjJ2bkb3//L1ln1VTgd/vYbjcYrjcwpn2E0ENE/v4/fdAgd5/0cvMmw32/O+Ty77f9e4K2Ypm2wR/kaJ23MHq0siMWJgF7doZSyPI77WZeaNB5K3QvggmflBj+JcKbPlqkalX6jQvrGybH/5aESMbj1G2/1YX0683qJ+SCfhuNdIW2Bl5Tq4PKU69y4iqKoQK5sEm6SdufOFTIpFIJBuXzM/jgXz9i3cgZLxEIlk9ajzh1jMqlU/bUpgqkUgkEolEssmYfbtJ0IrofmQperGigJAGb8kmx+zSGPlGHJW3cdZl8r/P4f/UR58VqH8/TJhSmHlqFIDuxzJ0HUoz916T6lGHsBWhZ1UGv5Rnzx/0AuDOBdRPxIuUmhrfQIVpn33vNDj9YJozpUKiDZblUZz36Zt06J7xOLkvS3Uo6fzQbCUzr3a6RUWYdL4QwRXRIa/8DKB22Funsg7777Q6plirVOJ22NZtJ49fhMvbnMqtTkCvdjgGtcNv7umeSZR1W0mni93p6UTZffZoosxWkiKPuWjpGTt5opsPv3UvqhGiZwNEpODXY2HTE186zFs/uI/X3t7JwONnqF+23SVerh1IlJ1p9STKWkFSLNXwrp3FtzTtsudcA19VmCykaFoGehRhiAg9jP8iRaGaMbm4N0WkL1yfEFJWcnH//nvGE2XHZvqTbasnHRXCKNlfRQcnI8NI2hc7XevViGfTmaSzgaEl9x90aJvW4TcDP7kU2qkdaTPZbzqVVZvXzkx7dq4rUdbpfhjKJ516hrddTJSZavL4E05FwFizmCiru8k+d3/fRKLsdLV72WcvTDqqzgVJZ6mQ5HU41JM8hnemk85thXTSacnWk3av/lRSIJgzks+h1/7TfQBUyi6HPkpmldCszSXenny5zsxbTYjENR2V1gtaWmX7b3ahGvG1iHzB6T+ZXXUAidSwQXqriZnXsAcN9JSKiATOjA8ReLWQ/B6b2gmHqZ/UZWAKyS3DKGp0P5ohNaATNCLKH7ZonvdWlWlLBDD78yb9X8gRNG5+J70kYi2XW5TfbRFqG0C0LpFIJBKJRHIVZn7WoNaj0zx7bWFC2BZrDkgU1COmXq0z/VodPasS1COGvpwnM7I0l77TgY5uBEWPx5uRp8C1zRm3DHc2JLf72jYxiUTSGT2rIgJB6KzO/lM/7lI/nnxuts57BK2IHb+9ZAc0i6Bo8VxVssHQIOiLhUBqZcnuqdYU9LMqqBDlBKJHQTHjvhM1VLy3MmhbPfTdLmouQlgC7aJOwO1719VOOGS2W2S2maSHjNimcpcTeYKx71SIQjDy6uqzjYs4S3lhv039hLPq5wQ9EWf/3RwA275RonbcubYwFZj/uE3/53P0fz7HxA9XFi3Hx1Rl4IUcg1/Oc/GvKisG/Zh6pc6WrxUBUE2VgRfzBO0K7TFp25JINgpSnHqX4X4ULxzrw/JFLpFIJHc7WhOiHEQrB2CSSCR3mOGvFtAzKvMftph7p3WnmyPZCAhW5Qi14diMxySRSCQSCRC5gvJ7LRpnXEr3p/GqAUI60kvuAszS0vJEdofFzm95VPaoGA1B78cBk08siSTn3mlS2G+DgLC1cIMoYPdeJqQUYJYui+orBPveSQZoVCJBd9lly1iL3vJyBw3jLozOfDdy6q1tAAz/4hjZbS1GvzuMXzNQ1YjydJ57HzvDmSPDd6x92Vrch+czNh9s7wV1QfxnJl8Oti7XeiSSy+mdcTj4aQUAtxxgdS29a8KVIrlvUMJVZgRaL0RehDPtkxoyqH7apnrUWZ2AVIXhrxSukiEVrG4dRVWw++NxgdWlS2GqZO1cLVX5FaSGDIa+XCBoRdQ+c7D6DIZeKhCFAmfSpz3uM/9RCxGBqitEvkBLq5QeSKGokBo0sXp0qkfbVA7f+sxRa3Yw3qy25ZuJPD8SiUQikdw2/EqIX7n1AfdFFGdzs/t1MiMWk6/UECEM/kKe7scyqw5Est5oj6fQ7BAjd4dVZ6oMximRXA9aGGEEESO/Hgf6Gv1Whfb49Yu0Il8w93aT/L02tc8c+p/LAbEILAxWNqSkZ0K2/9TH6VaYfVTDz2+uIHAbGgHKZcEYlUAh/frS2lmLHrAj1HyIaKkIVyE8bRMc9TF/oQamuO2vuNKDaVJDBpOv1qQw9TJao/H97SRjS67I5Ct1tvxykeGvFhn7TmXVgQwVFboezWB161SPrc5GVfvMIXQjhr5UILfbumZm08gTjP9DjZ2/201mu7miOLU97nPmT2fZ8vUSZiEOnjnwQp6zfza3IcdhGwZpC+yMPCfXhRSn3kV4Zyz84ymUXIC5Q6a5lkgkkrsdoQIyaapEsq5RdEgNGDjTgRSmSiQSiUQikWxyvHIYZ3iSSO4C9KxK/xdix4fKkTbVI236/0U3XZ9F+GnIXowYDH2yf9BL+YMm7myAllLR7KUF9qAeceqPZlANhcyIRfH+FFu+XmTunSbqqEt+ZmmBs53VUEPB0GSL/SeWR/KtFg3O7UzTyBn4loohjSWbnuF7p/lsOkt6oE3zYpr66RxDXxqjt9nk4zf2oBshOw+O3bH2Xdxp0z3q01dv88SpKd7aO3jH2iKRrHeU0zr6a3HW3xeZXPadkY2F3UErxK9Ft8WhWbIyIoCxb1fXvJ1mKovCVGfax52Ng7lotoJXDQkaEWE7InQiwrYgaMhrLVk9igalh9IUD6RQDAVn0qf8YeuqWRl6Hs/gzgaMfaeCWOhqqSEDq1snNWxQeihNbreFaqvoqTjThb7wPAqdCHc2YO7dpnS+lEgkEolEIlmHqEZse0wPm0QLQeysLh3NVlYt9FgviAgaZ7JktjdQ1DvbFj2lLgUclEgkV+Xg2TKlukuoKXywu4cHT8/RXXdh4dlk9eg3JE4FqB13qB130NJLD4bifSnm3m6uuJ1QQBGQmhUMvRww/gUdvygFqusCDRq/4qE0iQNvaSB0UEJQ6wpdjkNU1xBVDQohxsNNRFPD+XYR58+7UQD/c7dPU6LaCqUH0lQ+aXfM8CtZO341ZPRbFbZ8tcC2f9xF/aSDMx1AwIpKMdVW6XooDbCmcU5r1EeEgp6nsxQOpKh91qZ+0u0YfDuz3cTq1uM13vS1ByRhW3D+L8qgxoGNB17I0f1YZvkzSomDFaqGgjcfLMsWq5pxoDgpLJRI7gxSnHoX0f5ZDlTIfWP2TjdFIpFIJOsBERsNJBLJ+iW7w0JRFGpHb30EdYlEIpFIJBKJRCK5XWhpFVWPHReKB1IUD6RgXhCaYCzE5cmOx6uYXYcyALQnfcofLZ8biQDCQFD7zKFx2qXvuSx9z+bo+2h5cJ+Db9Q5yHLx96kdWWa2Wri2disOUXKHaTdM5qdy5Eotcl1X9BsBqhGiaIKpn/Zh97fJ762z05vg4zf2Evg6Bx8/c4daDqgqP90/zPOfXqTQlsIViWQl1CPGVb8TAoJmiN+ISA0Y9H8hx8W/qdy+xkluGqEjOPmHM3e6GZLNiApbfy3OxlA50iaoR+R2W2z5apHZtxrMf5S0y2tplfoJZ1GYCnFmh/a4T+VwG3vQoLDfJmhE+NWA1JBJeyJi7v0WkSMX5SQSiUQikUjWM61Rn9m3G5QeSKPZsYCi/GFrwwlTAapHC3jzFgMvTN3ppqBnVIKmDCIkkVyLrppDzgnwNYUdk3XSThyAUwiBoij0PpVFsxXm3m3dsPAqbMXBP3f/814069oi03aPxvx+ldKxCM2DwsmQ2Uc3jwQlNWyQ32Mz/0kLr7wBn1cqiNzyImFAaAt0OykAdY+kln2ORm7fMVtdsaiwdty5bb95N+BXQi781TxdD2fIbrco3Z9GfC9EfKV1VbVY2IqoHG5RvC9N8WCKxunViYW7DqVRNAU9pRA2I/q/kKfnqYiZNxvLBMeZbSZDLxUWP6vaGgTtETROu8xmVXqfzKJo8Tgtu8Mku91CS8XjNBEJQkcQ+QJVBz0Tr/le+Ot53Jk7nDleIrkL2TwjA8nK6CCaGvpWD9W8042RSCQSyZ3GPqyg+gruFhmZTiJZz9iDsYNd47yMFCZZGzL4gEQikUgkEolkPeNOx9mmsjssCgeWFsG1y3R4Tgmcn7ZBAbtPJzVg0PNYhqlXO2cYjgKBWw7Jdfw2pm1pnNidY6bHRqgKhrEBnQwk1yQMVL77r59d/Ny/fY6uHRUG9s5i5zzSRYfI16ifzuHO2gx/ZQxFgVyxzeDILNVyhmzhzgeJ0iOBr93h1BYSyTonfNEhaioQwImzAxSqPsMT8f3rlUMUDaxS7JBS+fTO39cSiWR9YfcZWF064/9QpXkuHohWDrfpeSJD96MZasedhBBBRAJlBWc6Z8LHmVjKZFPbgFlApG1ZIpFIJBLJ3cz8h23qJ1x6nspg9xu4szeWpfBOELQ0Zt7soXBvldTgnRf/6BkVtywFIhLJtQh0lfGuNC1bZ2Syzlv7+3jgTBl7os3UT+p0P5Kh61CG+kkXb/7G1jZUS2Hk17sAKNybYv6TNtcKkzh/MBanAljzm2vimBoyyO+zye+zaZxxmZoMqA9sXomNvs0jOJxe/Kwd0wnvuz3PaXVBDK3ZCn71tvzkXUPYFsy80WCGeF11y68V4aQB+68+lmmc9Sjel6b8/srZky+ndcFbuH4hlU/bFPansPt0Br6QJ7/HY/z7VUQIrdH4qeJM+0y9Wl98bqWGDXqezODNhsy82SDyrv48qXzcpvRAmtL9aUr3g1cNqX7m0DznEjqC9BYDI68hBOR2WovbGXlNilPXgLQFSm4Wm/fNKVlGfq8FKBh7W9esK5FIJJLNj3VCRWiC5lNSnCqRrGesbh0RCaI7v14gkUgkEolEIpFIJDeV1qhP92OZZWWTr9YY+EIeAKssmP1vswy+vuBk4YH1UAr+ixKZcoiT1wh1UBUIDRh528FqCuq9Gn5WwSmpzO/QUX2B3haMixxCjRe9dWJ7iKom7SKRSIoNAj+ZXVUEHUSDnRbv/FWICzvpGzrtS+tQqHew7agd6kXJH1E61NPNpFNLGC6vZ5vJhexiKjlx7U8lhcQTrXyirGQmBWNBlDznr87ckyibL2YSZUPGPMUDFSpHigBMnetm6lw3R364k7HvVnBnAvb8dyETP+8HYOx7w0zvaVP8pRYjX7+AiBROegMAfNAYSex/wEp6TDxWaCTKzrR7E2Wj1UKirN2ylhdEEY+dm8AII6o5Cy0Xn+/QTZ4Tt708a2TYoV/qPck+omvJ66x06KrlWjpRtm9wOlGW1pOuS+ON5LF26jtzleyyz36H+03vdK9GyQZ7HY6/032eSSWFQraedFQoWsm+6YfJ36g3lkeaT2eT+9/fnTxvKS15Piw12Y79mfFE2bAxnygbaxcTZS2/O1HWYyX76wW1tOzztlxy/6NeV6JsxJpNlH2l+Emi7FD2fKLso+a2ZDuapUTZJ1NDibLhXz2CokPxvjRdh1KohsL+qIpfDZk96RI2IzIjJqEb0Tjj0rzgbcysBxLJdXLqXz+M5Ye0raX3hJIKUSNBvunRtHU8z0psp3gdXgYdxgt7/pu3b2p77xRWd/zOueQsd4nyhy3y+222/kqJ5kUPdzrALQdoKRUjp+FV5fNEIpFIJBKJZDMTNKN47JfV6Hs2hzdf2VBzypmf9YACPU/N3OmmkN9vY5Z0yh9Iv2WJ5FpYfkglY3KuP8vOiRrddZfR3gz7qi7OZIBfD/Eb4Q0LUwFUQ0FPL9kANHsVGQ3VpTpmFRAClDVkQrwBFBeMUQV9WmGvU2eux2SuN2nXuF40Mz6OufeaZHdY7HqrzZknUtQ2qUBV2+JjPN7AfzuL0AXaxwYiJ1CaCsq8Cqog6o4Q3RGiJCAS2I0Isx0R6gqtooZYKQtmtGBLUpN1LgX0GnypwNk/nbsVhycBnOkAihHKOR2xgjhVz8TPgfbk6oNxtCd82gvXMbvLovfppTUeq1dfXN9MDcV2SbvPWAz0lttjMfBCvE5o9xhoaZXx762sUp74QZXcXpvaMQe3HFC6P0Xh3hRhOyK702L2nSZ2r46R12icc5l7u3lTnpMSiWTtbM63piSBWYgXVrSejRfJSSKRSCQ3F30K1BYEfYBMviCRrGuMvEboSBG5ZI0IEf9tNjbjMUkkEolEIpHcxaimgt23XFjnV0JCJ8KvhXiVgC1KLPga/aJO4WRI7qxg9xtthAod9GYA5GZCmAHOwvwOnchQ8AwFUb/6Qnm26nPo51VO3pthclvqqvUkGwNFhYHnJynsq9IaT9M4m6E9mUY1FLoezjD+3Srplyq0f7QknvRPpha37STavdWYbsC28SZ9cw6ZVoAKzOcM3juYFANKJBIwihoj3ygtOrWMfruCM+mjpVV6Hs9g77Nxpn3mP2zh16RtTXL3sX9snu2zdY4PFjk1UIwLheC5DyZIeSGhAud78pzsLxFoKmokuBSfwwhC9Ciibei3zcn0TtG66BEFgr7P5Zh6tb7oPBe5gvHvVynsT5EaNCjca6MsnIv2pE/95CaOJrlZbcs3E3l+JBKJRCK5KzBLOkErImxHDH+1yIW/LBM6638cYA8a1D4r0P+FKfTUnZsPKzr0PZcjv8emeqRN/WQykJdEIllCDyLSbsiOqQZHR0pMdKXZPlXnkx1dqKZK6aE0hf2xDXvgF3LMvtkkaF7/PR40IuqnXXK7YoHn1q+XOFWLcPOdnUk1R1AYDYl08IoK9qxg+18HeAWF+QMq7aGb44SqtCDzroo+q9B4KiLoE9ifKdiHVRQfwhIUPY/h0TattIbdDmmnNKYHLKYGbNqZtcti+r+QI3+PTeOsy/wHLcrvtej/fw2w7f02p59O0y4mgykSCbJnIoIMOH3KhrSfGA+00QZ8Wm/mUWZVjFcthCYQpQgCFf2EjiIUhCI4RH1ZZsVIhUaXRmAp6K7A9kK0hTiPkQGaA0Eaxr6oI4zl58YoxdfokiBYcgvxFZR5Db6dRnylBR268qXniJ7R8K8jGFvzgodfCzHy8c6nX6sjFh5N7Umf6Z/WKexP0f+FHBf+ap6eJ7PUTzlM/rhOZrvJ0EsF0lsMWqNX1zc5MwFayqPr4TSpQQPVUHDLAXavDcDgi3kiL2L27QbzHyYDjkqugbQFdkaek+tCilPvEprnPUoPZHA/yqJ/oXanmyORSCSSO0EE9scKqSMqKNB8QkaHkUjWM6khHT2lUjuxiR1dJBKJRCKRSCQSyV2LiARRIAiaEWZBI/IFzlTA3DtN+j6XQ71swbp4LCQzGi8CtQsqJ55LYzgCJQIjiPj/s/ffUXJleWLn973PhTcZ6TOBTHhTKFShvK/q6u7qajPT09PN7jHcIWc4pERSR1yRWnGlwz27Mmd3qRUPRa2kc0Yih6IZ29M97adNdZc3KO9QBW8yE0ifGT5ePHv1x0NlIvECQCYKNnE/5+BU5YsbES9evHjm3vv7/bY/vzzY2OzWcLOCVneHUdYOtEBy92tRVl7fVFm81gshID1skx626blvgWd/fYjBp/JkNloIA/Run8xvLRDMmLR+EAWAlk/l6dp0bcdPdDfk8denSToBgqjAbTNtcGo4y5nBeFVYRVEAKdn028uB24vvtGjPePQ8nKW4ZznBgJnXSfaZnPqzxeuxloqygmYJQvfaTWhJelEV5p1TFfqqLcZ68kwOJ7G8aFxooj/LlukaedvljS0DPHx0kozrMV7Ms2mxiga0TIOTpSLj3TnkTTjJcjW8WsjMc3UGPpcjsEPmX2suPdae9mlPR1XghQFW0QANnNl4hWtFURRFURRl/Sm/26L34Sx+I8BIaeR3JSm/d4MHPGjQ91iW5IBNYc/Fq5BdTfoCDH+lSKLHYOqZGo3jKjBVUT6hJaP+AaGBPOf20giWA00tP+TEYJ7HDkxj+iGtSZeeB5b7inNbk+S2Jpn8eZXmSfey12XhzeZScKrfCvFS8Xt/3ZEMvudSOB31JzSHBPP36lgViVWRFI6EDL4UMH+3JGk7VIZNnOzljbPoJ3QK+3XQIExA7ldaFOXig7NDYt8eItPw/lQfw6dt8hWP0xtT5Go+G8dsNp9oYac0Kt0W41tTOKnzxoguUOnVPFv8y6sFS0F1Y/em2PJai62vtDj+cBq7a/m1NE+y/aUWqbMJ8eqbBHMP3HzhOEKAPuDjPeVg/iiJROJ9uQ3psw18EIsaoiyYbBRo5zScjIbhSnJzPtnFALMt8RICu0vDTwECNA+siiQzKckfC6nuXvk9tKc96sfaZLckSA4YtKdVP8vVIr/WhL9JI2Z15KQOG+Pzxb1atMzMdw5O1TMaxb0pUv0mcy83cBZWfl/Sk5z5SZVNv1PizN9UaY0vH5OkD9WP2jiLARt/o0jPQxmMtEbtcDQXtnnKpT3rMfh0gcV3WtQO2qQ3WCT6DYykhp7S0JICM6ujJzXacx6VD20aJ50VFe2NnEboSkJHBRMqyvV2850NlctiT/roaR//WJL+L5y+ZPsJb/XZuBfdtU2Q6E01Vt1WF6s/UaT0td3E6lydzFBjTs+q2746v2VNr2375qUbndWXrq+6bUpfW0Xdo07/qtvmtNUH1Iy1V7/f+eHqJpcttZerv+FxwtVv50qYvnSjc7RCa9VtHy0eXXXbh9PHV922V1vbxfyHbteq21aD1W+PE83V/1YA3DV851uz86tum9SuXkXpyXZx1W37kqs/Np6od69pPYbTVbQJDetlC+EIZELiPumSKMWPg6VEa02vvVqb0gtraj+SWH37u1OnVt120l/9/gxr2z+S+up/Wy1/9ceCtHH5nUiXspZjY2KNv5Vua/X7dMJPrLrtcKK86ra/m/9o1W0B+vTVX9O84Uysuu2fLDy8pvUovBz9xhPHgP2QuSvBxictWreBf94puPro2n5byq1BSFg7YELAAAEAAElEQVTDZfRNYz1+JkVRFEVRlFuZ9GH+1QZ9j+cAsCddslsT9DyUpXakzcyzdfr+b/0UjofYAxrZiWigUYSAJvDS0SQCrbl8oXjyoST1AQP9QmVVO+iZWe5XnhtMIABCieWGWO0Qyw0JMGkl1XDKzcyZW+7XiCr2OtHki14PkQmQTZ1Tz22g6w8+vqbrNXLEJuUEzJSSjA1nKHdFmZ7V7Y+ixIlQ0jPr0LWw3F8683yNRI/Jtr/fG2vfOOWoyizKDaH/c1G1oLnXGlTe7zyZ3TxbhcOrXJmkos2EiWM4fDxcYqjcZN/4PD12msOjRW47VUELJeOlLEOVJneOz1FoR7+rLYvRBPZ3hvvprzfZMzPP9vlFmlY0dioAISWJrxdxqwHNUy5uxcerhUjv5jx7NY47LBZ1uu5Ks/hOq+NENumDM39rTJZcr33LV5LaPoqiKIpya6h8YBM4IX2P5vDqAc2Jqzd351z/5Nihiz7+VvPC801b72Vp7tcJHm4w5lx4blkjuPQcna2ZuYs+vv/O+PxKs6CT35Ukf2cKPxsy+dMq9uTVm5enKDeDxs9W/mbv+n40r9s34dBnM3gpjWGiuXDto4JGj0HvSJRAsTGls3OxzNzLDUa/FZ9bbWbXNof6fPmdyaX/n/huGeM/xeegDX4hT3ZLdMw48+PKUnXDT46I+iMZinvT9LwTAi5DB12O//v5FQm6UsMmZl5HMwWD3wxxGsvzJnN9TXZ9/gQLp4p89OJ2xBYX7ZEWCJCHLQhBjHqYXSHZs895anMdNq9cT+mDnDBJTxmkPgoZPN1m5oU67VmPvsdyWAUdzRK4lYDGcQe5L0pw51YC2rMeqQFzRX9A8qsnmbYEQ18usO0XDca/U8avhyQHDIa+VEBPRHMuW6ddclgs/MuZWJ/Oe9/ffcnvIJe8eN9lf+rScQCB/HQJxe7rPYnzmxbH/nIL2Rdh+MkpUr3RvH9ZBN826NdziHOnmZ730TqdE0Z/u4vkjwIW/3G0P5/6yzuWHjslJU++NEP7n41wajT6Zjf91gef6nPcisa+vfeij/frY4gnfHLf02kHJr5//jGjjd8ICX2JWdCgw3TYgc/mSA9Hv9nstgTOgh8F10tAQnqjRff9aaSUS4Gu52tPedQOt8ltTSClxMjoQHQsKb/bYvDpAj0PZJaC8N2yj98MCdohbkXSbLk0Tq0MSD2XX79+leLXA9UX2JnaJpdHzaa4haSHW9SP5gl90NQ3ryiKckswGiGJXyYQiwIEeHs9/Lt8UIVAFOWG52wB75DEqEKiKUicAXdIUv0M6jesKIqiKIpyE0kOmGz8WhGAuVcbVD64wbOrK8o1VP24jdcIMbIapX1pBp9KUDvSZvbFaMB94S4NsyUpfrw84OgnVg60u1mND34zGrxO1ELyZ3yaG0THDNgxUrLp6HKirvteXCTV6jSIWefDLV1MDGQ7PKbciKZf6KP8fonUYIuuvRUSPcuDIn4z+o6DeQP7hTzS1hA5HzNz7SfLfZI3bPycwFRFUc4RQteCS67qMXDGJm2H+LrALfvUTzgYWZ3i7dFksva8h18LMLI6i++2PlXlCEW5kjIj0QSu3oeyNE86eLWV1xqF25JLyTpap11mX2p0rFQgDMhuThA4Evu0u1TN43xGVqOcTrB1tsbtpxfYv22AmWKaXZNlNsxF1z2NtMlkOkfKDehutDnZk+fgUInuioOvaVRTSabzWSqpJIV2m2ieo0CKKIFCcb5Kss8kv/1sUoVAYk952NMegR2SGrLIjFogwW8GOHM+jVMujZMOVyl/9KfizPlohsBIa7jOlQkQVhRFURRFUW5+9cMOrXGX0JXIG/wyUUqwP8yQ3NlCdl+7ldUsQX5nkvzuJImSQRhIFt9qsfhe64a89leU60mEy5EuhgfbXrEZuzuJm9XoPeaSbEqmz6kyubjRYOQ9h+lawMzzdfo/k6P8YQt3IaD/M7lPvT6Z0eUg0eFfKzD1ixr53Um67oiSN6FBdksCe8Zj+he1pX71cy2+3cLqNggdSXbzysB3s6DT+3CGzGi0XAYSM1WmOFyLgk9DweSBPvb/pzvx2gZdI1Vqnw2Rkwbh/hQ0NSiGiJqOyIVIV0BDQ7uzjehZeZwTBojNHmz2mPg3Ll13peh/ItpGzrxP5SOb0JOkhy26788QtEMQLAWZApQ/WFnUJXQlkz+tsvUPeuh7NMvkz2sMPpVHBjD3SiOqEmoJ0husmzZh1ycSXS6bfn2ciV8OcfTPtpLqswkcDa9uIkMNreiR2GFjbWqjl/yLDr/pGY2Rb3RhpDWsooGeFATt87aPELimRqZ1ayQCu56sI9ExRVykzoxXC0iULh1YlNuWoHrAZuhLBRI9Bs6iT6JkYE+6nP5B5aJJ96oH20sB8aW707RnPdzFgMZJl5N/soDVpWPmdZpjLn5DXUAoys1KhSjeCjQo7k1RP5ZBGKEKTFUURbkVBCF9bwXkxiQgCIdC3CdcWH2BSkVRrjcNyr92tnOmDV2/FCQmNZLHQto7ru+qKYqiKIqiKKvXfV966f8vlDFUUW5lrXGXrX/Yg2ZGo9kP/qtTGKnot3L8iEFzqmupbajB1C5rRVXJqh0NZnbNuex8OxpdnZhKc3RHdkWA6sa/dWDlGwtI/4tRkvbyIOe5gamBJqhkLJrJKOPzTD6D9M/JFNRproEXzyQk/JWj9FLr9MQOI/mdUrLqHZZ1yIot/fgy0eF9dSM+wGua8eOUrq9sZ+rx53XK4L3QzsSWaR0+17FaT2xZ07Viy5JGfKLCoXp/bFmX2UTridraU2nsqTSDX1h+/PZ/mmDuv8+T6DFwyz7Tz1Yo3p5CvyOFCCTaOdvZk/Hs82Uv/rlaYXx9K14qtkye931NbE0zeMrh9iMVXnhgYLldGP8OSz3xbdxqr+zsa5fjAa6vfLwttqxT0is9Gd++OwbiVTKKViu27NHisfgLxpP58x/HHoy/73n74e7+6VibeTseGD6QqcWW9SSasWWvTW6KLbOM+H6+IVuJLRtMVmPLKk78e227KzPDD+fj62Zq8ff0ZfyLONOIVza5IxtPWX7C6YstO7gQXzaYi+83i246tqzhrNyHP7AHY21Sg/EA7iey8You9yfa8deXi7FlQYfPf/Ce5f0wOWDS/5ksQ8UKgRMidAGGQJZ9rC6D7nuiAc/Fd5osvBHfLxXlWut/LR9b9vWed5g9usDJ/RtIF9s8uf84G1MLSAlu2ySR8jjx0RAv/3gfG/ZMs1gskB0tMnLHFIfaA+gNAR4EvRLjtIZRjs4Pvi5oZg1aGZ1WyqCV1mmldTadatI/47D5VHT8NgPJQKXFkaEuzmTypF2PUAhsy0QmQt7YvvI8Wt0sAIlBlFDnTJ+F1hs/tqa+ksABhB2iN8FcAOd4jtwWD9MLaaYNjven8EKdlONTGnYY3O5hWzqVOzVqo9qK67RGh/P+bV0zsWXnH5d/dOr2WJvt3fFzV/2x+diyzItnKy5LKD0HXgvcsrpfUxRFURRFUVYK7GsbcBQGAqHJVeXdO1ewYBA2DBLbKrQ79TVeYYleg8JtSXLbkggNGicdFl5v0pr0bvogLUW5Wsyzx5PTt0d9uhsOOOx8sYWbEuiuZHabSWU46u/SXUlp3MO3BNKH+rE2pbvTdO1N49Wje9feR7JUPrIvOxB86mdVMpsSyEBSuidD76PZpQqJpbvTBO2QxXdbLL7VvGCAvp7RSA+tvKfXTEFxb4rS3Wn8ZsjUz6vYUx4ygKc+Prqi7cjdUxx5fhMLY0XSRZvyj7phxoRuH3GbA3UNuaAjx0zQAVcQnLAgHyB6fbQHbERm5TGncdyhcdxh9Le7sIoGZ35SWTqWV963o77xs9vMyGpRkN2Cj7xInGRmNIGAsxUfoT3r0Z7xMTIaxT0pBp/OUzvUpna4fcMnM7iQzHCLnf/FMcoHizSn0ujJACvvYaR9pg/20H43i/1GHr3Lw9raxtpqY5TiGy3ZbWCkl/t9N//dbuwzHuWqS7WwvK+cGUyz/WSdWs5kYkN8zEX5lKSEEKzDOt6mAG/bhQ8UrXGX3I4kvNSIjX3qqeXv0szpjHyraymouz3jMf9ak9Yqqsu3pz2cRR8zFwWhFm9PMftiNKbrN8KzAamq2rqi3OxUmOI6l9+TpO/hLEIXCC1k49c71NxWFEVR1gXNCUnNSwpHov8KCW4GgifbEJ/jpyjKzSQJQU5iVkSneceKspKk80T5m916/EyKoijKLaF2uI3fCql+ZNOeVhlgFaUTGUqsokv//XPoyeWRe5EJwAoxRxzMEYfXzWH81MpgJsMNSbRDmrnlIMINEy3yNY961iDUBYEu6HokS/62JJp+zk3V/HIw02R3isneDJVkEseKByQqN5fs7gbClFReLeHXTKysy97fPcT8oRL1yQxOWWfhrSbNcRc9qZHfmcR34MO/2smdvx0PtrtafEvjTF+KDbM2gzNNpvrVJAzl1tSaSTH3fjeleyxkIEn0GmS3JGhP+8x+WKfvseVqEGZeJ/QlrXGX6qH2qia/KMo144B5UkNrCoQnmNleom/HIn3by7gtA6GHTI118+GrW5ke72F05xQPPH2AdMFm6kgPT/2j/Rx7fYQzB/swpUaYk0gLrMMamiuwkxof3FWkZ84h0/RJN316Zh1Mf7njrFw0+agvGhSSAuop6+z/C5qJeBDopyFT4KfA74H3s/GsBF57eTpKtuWxfaLK4Js2XUcF1U067ZJGu3QdO7wldL0IyWlYeOL6rcYNZb32LV9JavsoiqIoinIVGBmNviey/PzfPILQJNlSi8FdcwzumiNdcC763NARNF4rIKwQc8ihLePJy66UsKnReK7IyDeSePWAxXdb1A7a1zyIV1FuRpnFaOyjvMHATwi8lGDoIwcvpTH2WBLvnIC+De+3yS6GHH00SpQnfZj4foXSXSnQBM68j7vgf6oKxV4tpPJBlJxKS2j03B/1TS++02Thzdaq7n3chYAT/2Ge4h0pSndHz9/8e91nX6fF4tsXDmwFSGQ9djx5ig9/tIMzHwxAj4/2hQZixOsYpC9DkGMmcspAHrMIpUD/XDypFsD4d8oYGT1+fDpnm0VBcRfuWwwdyfRzNQaezNP/2RzOgk+i21hKbuU3QyZ/VqXnwSy9j2bpuitN85SDPe2j+yGB0SFL5A1M6FC6vULp9sqK5c1RHRmAdzqBeyxF+4MM9ls5tIKP3uVR2ONTPdiGEJrjLkf/KEocZmQ10hst+h7LsnmswXt3LPcdnRrNkLF9tp6os9h1ZfurbmWGF1Ksuuw4Uid9NrmpuyvoGDEmDOi+P0N+ZxI9oWF16biLAXpao/v+NKEjSZQM5l9vUjtko1kaXfuiY1LtcHvN8x5mnq2z4WtF/GZA7cjFr22Ua0j1BXamtsllUcGp61zfw1lkKJl9pc6jfzmNdnNd5yiKoiifCIGyBvMa3bM+Vl1i2BK9DZoHIliusSEBLwvlXTr1LTrDafs6rriiKFeKMwyJCUnmY4GzXd39KIqiKIqi3CzqRxzqaoBFUS7KXQzo2u1Q3FVdMeHA6PEp/r3Zpb/96XgH9+YjTQZOO7hW9MSZoQRzpSS3H6hSqJ6TZXdvvNohQCNl8OJdyxUCV1RHVW5qmW1N0lub1N/PU365h4+/u510j012oMXcSwGhK0GD4S8Xlp5Tn4pX6LzaPt5RZGjOZvfxqgpOVW4Jb729iZdf3UGYC2mcydK7b56596JAuu77IHBCvHpA7WCb1hkPIxc/Lo/9xeLZbOorJQdM8tsT+O2QxTdVNVXl2ku9amCO64RZidQlHx7eSa6/gaZJqlM5zKSH146qLee6mowf7ae6kMVpWnQN19DNkF2PnWLXY6f4k9mHll84AK0K7zUHCQyN8ezyNA8ZgulJUi2fdCugWjSp2onzV+26a6RN3t3Zg5ucoeeAT+8HPloIfhJaWZ/QEAQGhLogNARG2kAEAgKW/jUpIn0RVYn3BXv9Cu20jpPSaac0nJSOIUDqgAbSgNC8wAr5kH8fUmeiP0svQPo3i5z5UeWi1VIURVEURVEU5VI0UxD6ctWT2jObLfqfyBF6ktuePI5EUJnMcey1EY68tJlMqUUq77Dj0VNwNneT9ATejIU3aeGcSBE2dHJPLSJ04Cpdz3pnLOq/6AINpn5RpXHSVRP3FWWVRCjpPe7S6NZBwLZXbKoDBh9/Idux1vHiiEnXGZ9ULcRJCLb+QQ/Ogs/4X5WvyvqV32nRnvGQIbSn1la9MGhLFt5oUfnQxiwaZDZaQLTsks/1NN773i7cpsW+rx/kw9LARStHCw3EZg82e4TFgPCVDEE2RNvtgCWhqfHJQVD64FU/fRnT+mEHzWxQ3JtCM2D6V7VobOGs9ozP6R9UMAs6XXelSI9YFPem6X2uzP4nS4TG+qhCIXSwRh2sUScKVJ1I4E4kCcoGvY9kyW1LMvk3VcJzqmd/0n8rNEGyHfDEyzMc3ZJjcigNQnBka46BGZu+ubY6nVwBm0412HKygSahnjWwH/IIM5Kgv/PWHXwqT2rYovKhjTPnLQVd53cmKeyKxlQbJx3K70a/5cAOmH2hcdnr58z7nPiPC6rCuqKsYyo4dR3LjFoIXbDwZpPax44KTFUURbnZLGpwyESc0aGuIc6WS+wijJKVaBAa4KfBTwm8LLg5QX1EI0ypg76irDfONnDHJYlJje7vQuNOdaOudCbC6N96sx4/k6IoiqIoinKWgNqJPMf+YjNb/9YpWtNp5t8rIe93kI4GQmL0RRMKSuMeo++0OfJois1vtDHPTgKwzv7X8CV6EP1/PWeQq198NtaBLV1X8YMp15sQkN9Xo7dYozKWw15MsnC4RN8TbaafqZPoMUj0LA+VjTx45pqvY6hpnBzOsvV0g80TNU5uzF/zdVCUq811dZ755e0MD5f5m5/tQ4gQWYv6sD8JTP3E9K/qtMZdNv3tEoXbzlaHCCVCi/rHT/1558BULSXY8OsFxNkK2dWPbYKm6j9TriwtKdCTGl4lQE8Kuu5OIwQIQ5B61sCc0Gnf7+PujiZzPWkf49SbQyAFt33xGM35NGNvDQFwz2cOITTJ8Q830LO1zLYHxi88AVOHsASB02HsRwg8S+BZFrXi2WU3cM7Sdo/G6c9YEEpSC5LMVIBoCDQfzLZE90O0AHR0+CTIVJeggzQFwpSIVIjQJW45Q7oRUJpzl64F6TCtt+fvdOPVA/x6gN8IMTIame9FiV+r90Tz6dMnICkNRv5WF2PfLn+q6jM3s/Xat3wlqe2jKIqiKMpFCdj6hz2EvuT4v5u/cDsNuu5Ikd+dwiroNE46zDxf56v/p6no8buhVU2w/8/20VxM01xMUxyq0rDzeJMJ/DkTQoFIBpiDLrnPljH71hZQthbuaYv6T0sY/R65p8oc+df6VXsvRVlvdFey9dUWqVrIsYdTlMZ9cvMBufmAdk6j0R8P5aj3G8xvMhn60CH8VjSGkeg26LorRfndq3PTb5/5dMeQwJYEtrem4NZjL4/QXEhx728fIN/fQtQGVv1csctFtDTkgSTBB0miu3vBwOfbzO9vduw/vFzVAzbVAxff7l41YPb5BvldSfo/k6OV1QnX6aFS6GBtcrA2RcmZ3/tCiqEvFxj6coGpX1RXVKsVZ7uycs1orG70dDMKTgU8K9pA6VZA5/q3ymqlmz7bTjSY605wZHsOO6Vz/8j4BdtrVUFm1GL6VzXqR1cm2W7PePitECOtkdlkMfh0nrlXGku/qeFfixK+nvlxdc3rqQJTbzyqL7AztU0ujwpOXccSfdHX2xxTlRkURVFuCi5wwESMm1DRoozQgNQkdIWEwz70hIyncvhpUFkHFOXWU30c8q+EJM4ICvs1zF8rXNaNvqIoiqIoyrqjRQFI8tMnwFUU5RoTGqQGopJW9lyK8V8Mo5shtRN59IZLMGuBJin8gxkAuk5HExt2vLw8EeDU9jTlHotMzWfz4Sbdsy4A9ZxJtu7HQhQaJxyqB9sc+m934STUMMmtoHt7he7tFdyGyQd/ugt5dlDRmfOZeb5O7yNZNFOw8YGp67J+RzflGJ1qsnWswcnhLFE0jqKsH7Zt8fa7m3n73c1AdN2mJz18O17ScPjLBWaer2NPeZi56LfwSWAqQGbUBBEl6LUnPdrT0Xkhvz1J0A7R0xpCCPoeyTH1i9o1+HTKrSK/M0nf41mELvDqAaEnSZSi6wi37CMCQXufj7tz+aaka2ONro0r98PHP/seUi4P8WzcNsticO0rd193msDuFdi9Gg3Xij18W9dMbFl3cmVf+OFTI8sv50sS7YBNuTIiiAJPCUBzIPifbYychpnTSfQaBC1Jcwe0tkBwtvJUayek/5s2xdtSbPsHPcy+VKf2sZpnoSiKoiiKoqyNONulo12gUp6eEmRGLLr2pTHzOrWjbWafd7DPC+aaPtLNBz/dAQI27ptk4VSRY69uQiQDrA0OyR0tzCEHvcu/aJXBK8EdT1D/WQlz2CH39CLCANV3pSirV5j2yVSiwNRmj0FuzsFLCJyMxuBBh6N9Op1+yJN7Eui+xHzZYfFnNUr3pMnvunrBqddabSbDxLsDbHtsnHz/pausnk9ooN/bRu5rIydMcAS4gpSdpO9xjcm/uT7z6bruigIv5wcsNpy0SbRDUq2A0rxHK63zziNFQi1KtEpCdvzubzbtGZ/Jn1QZ/FKB0d8uMf9qk9rhNgD1ow6ZTYmzFXXh1EgGZPS5k7aPJsG11DzoTyvZjvojexccTm9IY6cufp4OU5LQkxi5eDt70uPkf1rALOqkh0267koz+q0uyh/Y+M2Q9Ibou9SSgrCtgk0VRVmmZl2sY5lRCyklblmFbiuKotzQQuClJOK4gZACKSRkJeGwB7s86F55HPfr6mZMUW5ZBtSeAHxJz1+B1aU6/BVFURRFuXVZJR2zoKOZgoHPRlXmxv5qEXdBRagqys1ES5wz8C4FtWOFpT+D2WiA029I3rpLJ8sJWjsT5J+MfvPzbzRpT3tkehoUczpaQhCWDOgxsKc8hjq839hfLQKQ7DHZe7zMQiHByeHo9Qw/RPOWjyGBpuEbF+qH6TBhoENXvNRWMTDbqYns8PreKicpGPEVkUH8c3gyPkTkO/FlQl/5etUO6zamxSvQZk03tmw4U4kte6BwMrZs3OmOLTvYIWv6SKYcWzZqxatS/PGOKCCu95EMxb0m5Xfr0QMSaofaJPsNCrtTvL84SljR0Xt8hCV5uvhh7LX0Dl/YUSe+bk0/EVtm6B2+m1AAOodH8+w5UWXrWIMjffHPXyETWxZ6532venzdNKvDebHDrjRQigfxLdjp2LKTC6XYspQez4ZvdkgrPDVbjC2TwcqVKWxsx9r4Mt7/kezwnk4Q3387bfO8FQ82erzrSGzZsLkYW/ZRdTC2TMqVQWUnFuLf34RejC3zw/jvMgzjX84H2Y2xZZ5cXR9xuZ2KLUsb8d/mhsLKyVpFKz4h7JHC0diyoMPO5Mh4xeqRLsH/5b/6BX/xwzv46MgAYagR2hf+DH1PZBHnTMyaeb5O/2eiCLLeh3Mr2i682WTx7Rb1o22EBm4toHR3GreirgmVSzv5Lx+KLQuS8WNperRG1ztVxJzLqa1pcrZH9+TycWj6kSzpe5pEB1hj6Zrgl5U9sdcytPi+ebpVjC0br8XPrZ3mKzrteJB3p+sImV35vltGZmNt2n78ONry4q+f0OPnOLcWXyba8d/5fCN+PnO8+PseFn3x9+1eeXxptVa+Z0ODxdZ55y4LNr/9fuy1+EH0n8Gn8yT7DEJPoo1G155CCAq7Uio4VVEURVGUG56eFMgQMpss0sMWVpfOzAt11Ud+HRX3RvfhoSdJ9BrIQGLmdZIDJpkNFomeswVnxl2mflnr+F01F1O89+Nd9G9bYM/nj3Hw+S24tsU9v/kRY33FpSp014J7KkH95yXMjWcDU9UUFUVZMxFG/QxuKrpXtwsapiOZvM1k9N02udmAeofqqaEpGLs3Rea/iRIqVt632fAbRQY+l2P2pQahe32CwoQOQ18u4FYCmqdcWhPxvsZLCUM4+IstZHtajNz96RJGCgPE5uU+mvl/6TPwZJ7sFovmmHvNExtP/qRC6Z4Mm4FQBzul80lXbroVsPPDOr3T0TaTAryEwEsJKkMmc1tNpCYQgSSzGEAKiHe33JDasz5jf7FI78NZ+p/MkdlkMfN8ndCRLL7dXApOvf1glaEpm3fuLOGZGo6pUSo7LBZ0vKq6frlc5S6LsY1pRida3PV+mQ9vK8BIh4YStJrAmNTQTIFVuPCJ3asEVCsB9aMO3Q9kKO5NoSeWL0I2/VaJ5oTLwptN/PolYpUEmDltqXNTGJDsNUn2G3jVgPIHdscxVkVRbi4qOHWdym5NkOg2lrIFK4qiKDcmcUbDfC6B8AQyGxLeb8NoACr+VFGUizFAJkFz1cFC6UDSeXL7zW49fiZFURTlUxn8Qh6ruLJ7s7QvTeXjNu2pC/eJaQlBomSQ2WxhT3q0Trvkticp7E4y81wdt6wGvhTlWvokK29hZxWhSSoHi6Q3NHDLCfxmFAzhzJ8NRBAsZeQF6Lk/gwwkQhfIQOKUfXw7xDnUZv6NJqlBE78ZMPh0ASMV3T+NfvOcwLpKm75Km/5Fm1K98wSKn9+z4SIBqsrNpjnukd8tGflGF1PP1Gieir73hTdbFG5L0vh2NzjR953+chluu3brNj6UY9fJKsOzrY7BqYpys0unfP7eb73D/+s/PMjJiZVBzsmUQ9tenmlln/FWHO9lIGmOOWRGE0t/Cz2ayJLbkaA54eLM+5TfiypHNE+sfVKcolxUKBnblibVChg93mJ8T4qprQl6zkT3HYuDFmma13klldUyshrFvUkym5NY+ZWT8KLjibdU4eOWs177lq8ktX0URVGUSxh5NYM2pREOhx2TQ40/cOnrxm8cjBKJhL6gdiKHEJLsSBM9Ec3a35cc4/TxXp79zn1Lzyn21KkuJLjvn8Kjv/4hPYWLv8//btODa/hUN7eH37/0PWIjSCAlyEbULyRS4dkKoRFNXPoioNBoM/kX3ehJH9HWGPnGcsIZPe1jbnRIbKyS2NhGS4Vs7fAa//O2XXTtS9HzoMYHf5zkpX+2jeFfKxA4AX/x/+hb2jcu5vunHr/o4zt7Lv0ap+63yWy2GPx8nuaYy9Qf1eH/0CExjqIoF5X90gmG/k43jRkP85tzmIBW0OF3Spj/cgaeLjD6ywan/nQReYHArKnv7176//qUw3ZDMLw3zYf35rGz0YFq8GsHr/pn2bD/bII+B1J/bpEehuKeFGEuBBO0fAB7Xei78DjrS7UdSAnBa2mC2STmV2u80ty+9Pivxndccj2SZjwx3rm0fxWS3t9g8AsFQg0WB00mbkshNfBNAUKQS1w8GVVvqnHJ9Sg/Ek9sCODVQmaeqzP/epPQDfkkj998RmPD14r0snxOkk5I/U2bRLfBcDmk+9kG08/WGXwqT6LHIHg7QeUJ8HouvB5bs/Fknef6neLrF318j3XpUKKP3HiC0XPt5wEAQkcy81yd5imHgc/n2fS3S4z/VRm/EeJWfIysztzLDfo/k2P3Pz9Ma8Jlultn6OkCI79bYnpDkqmNSZr5zut0Lfbzm8not1YmV3WB2T1Juu/PsOe9Mgt/7FF5f7nScmbEovfxLGZWRwaSxphD+b1LVy0OXcncSw3mXm6gJwRoguFfK5AoGeR3JElvtJj6aZX27IV/mxu/USTZs/I6QkqJs+CT35UkaEtqh27RvrjrTfUFdqa2yWVRwanrUG5Hgv4nc0gfJn96fcrSK4qiKBfhg/6+iX5Mh5YAAeF9bbhDJRRQFGX1WjsluXc0uvallibeKYqiKIqi3EqmflFj4HN5Et3LXZy57Uly25PMvFCncdyJZQ3Wk4Itv788gtd1x8rXLOxJMffypQccFUW5cj6pAFY9XCA7evb3FwoGn5xi4sdRWt/MiMWGrxbQkhpWUac57pIZiYKW7CmP2RfrePUwPlAUSgY+l18KTA19iWbEZwWeG5i6kEsQCoEmJfP5JL6+ymqlyg1LSijclkQYItpfXqgz8Lk8uW2JpeDUoBWSfLiOeySFbElkU0eutlLtFVTJJyhVHbQwJNRUULSyPv3eN95lejbHKU+iGyGVxSym6fPij+9aanNuYCrAwOfySCnx7QC/EeLXA7JbkgTtEKtgMPL1LmpH28z8qn6tP45yk9PCEAHoYcje+RmSvg9CIgBH1/F1DTMIyR1xOLcQ8+DxNjNbCowX1XSLm03vY9noukAIZCiRUi5Vam7Pe0z+RM2vUBRFURTl09HfMTEOmEhD4t/jEd528SCaCwl9wbG/2EJ7IQmA0EMyQy2sgkvbyDFxLKo0/+DTH7Jh6yzpnMP4kX72//x2vv//fYKHP/cRt909dsU+13oVOgJ/3sSbSREcSSDLZ6/xzRDzsQbGttUlP5KuYP6ZXoxswOBvnwYJXsWEUKDnfPR0gCtXF9xpZKIEKoFzttpiJSC94doGhma3Jhj4XI7GCYfpZ+uqmpmiXC4JhBI9pZHsN2jP+GS3RP1en1QsNDI6W/6gh+N/fPEgQ4C5wQS1osGdr1cZOW5z+M7c1Vz7zs4bhwlGAoQv0GY1+FEGdrhwrwOpeGSPbGr4r6cJjycwHmmg9V/eOfKiq6cJDj2UJVULKc56DB9pLyUX8w1oFXS8LjBcqG7UaQ5enZLQQWvlgdNvhtQOtum6O40MJHpCoznmsvhWi9SwSXZzgmS/yabfKeFWfKZ+WWPw83m6fw7TvyNvqmI3jZMu07+sMfh0ATOvY5/xGPuL8tLjhT1J+j+TZfw7ZdyFgLG/XET/n0YZGm8zNNHmo7tyLPTfJCVjbzDVj9rUjzn0PZ6j96EsRkZj/rUmSOh9PItfD5l9oYE97SG9NUbfSQjaUSTjxF+XKd2TwT7jUro3w4bfKFI72sZI6yy80VxOOgwYOY1kj8nC201apz2QIEOJVwkIXcn2f9hLZtSiOeYQ2CoiUFFuZmq0ZJ0p7k3R83CG0JOMf7tMqBIDK4qiXH8hUI5uwLUxHW1KRyCQuiQcCfAfcTHTqjKPoihrY++CzBuS4l4VnKqsJGT0b71Zj59JURRF+XTcxYAzP6ky/OUCiZ6om7M965HsM+l/Ikd2S4LMxmiA9+SfLICEoa8UOr6W3wqpHrRpnlSdaYpyraWHo99p1+2LdO2pkNtUZ+qFQUp3LjK3v4GZ1fEaAal+E6/hM/tCnfacT2rAxK0EsQH+c/U+msXI6FQP2ph5fem9zreYs/hoSxf1jIUMVDDqetOuJOh7fOUknShIdWUyAut2G3O3Tf3f9QMgEtd+1l09bdBddcjYHvWMmnyhrE+FnEMh5+CdTSIyMLLIyYODS4/LQNKccMluWvkbEEJgpHQIYeK7FcyuFpt+a7kCa/3oxSseKAqAZgmsboPQCcltS7J54iSalEvz+2qWxVw2A0DC9zFCiZMwmB81aKd0LDdkaNxmZrs6Rt+s8jujwNTxvy7jXKSiw61qvfYtX0lq+yiKoiiXos2cvbpMSoyPDNxd/mUFlCx8UKK9kKTvvjlKexepHcvTOJ2hNZNiThhs2DrLngdOkO9arng1smOGwdF5Xv7Jnbz98k4VnHoOKcF+P4tzPIXQJWiSsKETVM8GfRoSbdjFvK8FhiQ4lMR7LkdwwkUb8NFSQRRoOuiiFZb7jKQHwZSF924aWdbp/81JNDO6YEj0nTfesIrriES3QX53kurHNo1j0X1uc9yleHsKq3R1Aqhi63BC0P25HPVjDjPP1VXlKEX5lGaeq9PzcJaNv9m1lCCp/GGLygGb0j0ZNFMQ2GF0rlhFl7ST0jmzKcWWw03mBi0W+65xH8XZaa7OZxxkUSKL0UHCEB4cNuGtJBw1IR9CKYRSEAWqzui4J0wwJcaTdfRVBv9fFiGwCzp2QWdh2CRdDRASks2QTCWgOObhJwSF8YDqRp3qqE6zX1vOpnqVLL7TYvGdeKVKe8pj8qdVjIyGDKB+wiHZuxzi0/8XgAARCup3SJp7r+pqXhlatC1zWxPYZ1YW7Zl/rcmGrxZJDZg0TrrIACa2pjm9OcWdr1fZ8WGD4FAT0wmpF01O7MzQzC2fA/WkwCzoS/+svE79mENzTI3zQ1TBdvqZGvZkkr7HchRuS+HM+5hZnZnn6rHv43JIHxZebwLQmqxQuitNcW8KPalRP9ZeEZya7Iuutaof2meDW1cK2iHZzQmsks7kT2t4FTWX/lpSfYGdqW1yeVRw6k1uw/7s0v8b7xgYHxhggftbDgP/i/SKthutY6t+3Xa4+kxLb/ujq24LkNJXf1K7IzOx6rZJbW0nyzl/9RljDjUGL93oMmzIVNbUvu7fGAOdJ+3eVbe1tNUP6pli9ZN95tzspRudoze5+qon8/7qX3vR37qm9Zi0O0+C7WRv+vSq2ybF6i/GctraDv15rb3qtvPe2r6XtUgbq79xGGuVLt3orL7E6jOpf7A4vOq2AENujfwLGnodBMs3rhJJ/f4AZyeAABIY3ur3/7y1+u8EYKa9+uPdWn4rGX3130liDccCgHqYXHXb71buW3XbfrO2pvWYbBdX3XZjunzpRmeFcvUdGTV/9dsCoOymL93oLD9c/QhI2cusaT1OtbpX3bbiptb02qvVzK7tDuG0XP3+Pxf0XLrRWWvd/weSq99P61PpKEPmKjsoFUVRFEVR1g1BNCinCca/U45urSRYJZ3Rb5VoTbqIc2ZMDH4hvzTwcb6Ft5ssvhkfCFQU5dqQQOiGDD0xjdCBs/fMbsWi98EsgROiJzSmn6tRP7wceGRPXro/2J70yG3XKexOIUOJb4foVvT65Q9s3v0H23CsazOpS7k+pITjz0djGFO/qCIDSG+0qH5sE3bKCu0v99l4J5KwC2QItbkM+b5mx7kpUkJ7LkGi20F8iuzlmabL6FSTQIN66tpWw1CU623Trin2zR/hvVd3IHSxFJg691qD/I4kie7lcY0zP44manXdkcKt+LTnfaoH2rSnP/2kGmV9638yR25bAnG2KnrghJzO5nF1nU21CmYYcrDUy2Ix3iefHl3us53amCJlqf3tZpTZZKEZIpokpwJTFUVRFEW5SmROEooA/wEX60cptGM64Y61TbKfeaOHmdf6KWyr0nvPPHoipOeuRXruWgRgX/LCQadmImBgZIHJE71IedXjbG4KUkLzlQL2h1kSW1tL8yuMko/RW8fo9bBz+op+HW3IQ7yXIjxj4b+Zhk8S2lkhyadqSE/gH0wSnLEgFIhcQN+vT8UDUtcgdASDT+dxyz5zryzPX/kkwMPMX/1+THMSsq8I6kccZl5QgamKciW0TntMfLfMpt8tEdiSmRfrS/ekM8/VGPxCgYkfVNY07+vMaJJ82WP3e3U+vO/altQUn/ShJ1gKTAWiY+tuDzb7cMqAsgaLOnyYAFdAIUDfZ6Pf3kZY1+7g4qZ13PTK42cu4YCUFE8FdB/yKUwEOFkBAgJLILoFQRH8LonfDVztw29ILLDSnvSY/ZrELEPXC2LpeJyY5IYNThUG5HckKdyWWkosvfjuyjF4s6Cz4atFZCBpnTfOJzXB4b1ZNp6w8RIaniUYOO1w92sVAPy/203QDJdeG8BvBugpjaAdquDU81Q/amNPe6Q3WGQ2Wiy+27oigakxISy+HQVeb/qdEl370uhJjdLdaaaeqTH4VB6gY2AqwOkfVDALOt33Z9j4m0VOf7+CW1YBqopyM1LBqeuEud9EP6RDGtpfa0PnBPCKoijKNZIsB3Q9r4EEvw+8vgCvBF4vsPrYQUVRlItyFz0yGy2MtIbfUNGpyllSRv/Wm/X4mRRFUZTLolmCDb9RXApS8FshRlrDqweMfbvMsX83R89DWYp7lpOg+I0Q+qLKqgtvNglsibPoI7Qos6eiKNffD+/pI3QlfY9lSY8EvPFfmox+UxI6Ej0RDWifG5z6iU1vxBMenWkVAVgAqnUJoaTn/YDEtKBxB9hbIfw7KeRUiHXejA+nFk8QKIz4tajsNC66mjkgq7116zRxsNNzO7XrVP21Y6Ks+ApLvcN193mzGF0nPrQ07cST8hULzdiyjBn/DkMZX4+tydnYMr3DBtiUnI8ta4XL32F1LMviySKL77VojkUZuC80QeHtu6L1yG6t0fdYFj5O89e/fIDUUDTgIkNJYIfUDjssvNUkPWSSHDTpvidK6HVsZ4Yzm5Y7/r44ejD2HqVUPBnC/Jlo291+ZA6Al3cMgXk268I5rET8hFUo2Sv+rjTiv4e+QjwZl67Ft2V3Mv59HZiKJ+50p+IJzMb+x3gSR/nWgdiy7bwTW3b8Xz244u9XTm6JtTHM+A9O0+L7qqnH23VKzlbV4oFnZ9yu2LLDrYHYsvlW/PPr+srtmUnE97Fi0o4t65SQManHv+cD5fj3kDbjz02Z8efW2/Fj2of1odiyDaXKir/7k/Ftudghsed3HtyIkdFWTGr5/IF4QsiCHv/8393dt3KBBuH/kGfnqeUgwMq3Bqn8ixOYRR2hg7sQrdfm3ythZKJZYTJABaYqqyL25agD723tJuEFVLIJAic6xh8PC2hS4usaosP9QWNq5f7fTMd/I/Nz+fgTOxyrtg7PxZbN1uO/L9uOD/gHfodzdzXermMyhfP+PjUVTzCZznY4T4fxF5se65CcssM1hOhwTVI7WezQLv5yZzLxwbQzp1YmjTQq8dmhevvC0Rfd92WQUjL9/OoT195y1mvf8pWkto+iKIrSQWrIJDVg4lYDRC0KIJE9kmCLj/Guibs5gDXkoQrd6Dpn4OFZ9MTa5wGU+msEgc7EiT5Gts4iJfiejusYuM6tlRBL6NB4vkj7UIbs42VSezonqhTBymtLoYF5tw1328gQNCT4AvuHRdo/KQKg9XpYDzbRN7qIQkDSil9Pr0XzvRx6SuP0jyor+h5zW6N7e2fhKg9mhJB5S8Prh5k/UtfMinIlyQBO/ulirI/fOdvXlduWoPKhDSEk+gxyWxIYWQ2vHuLOOCz2WEj9nPtdITh0R4473qqy6/06E9ewqIE2FfVNhPkLvGFSwq5z+uok0brpYKyxCNVVJQSVzQaVTTqp+ZDSMZ/AEmg+ZGYFyaMgpEaYlLR3SNrbJeE1nvcbZsDJQGhJNFfg9kjKn7u267BaiW6D4V8voFmC5imXRI9B/Vgbv75yP0mcrQIudIFV0GmflzzMzhocuWO5GM+Z0RTFBQ/LCen9jzOYeZ3y+y2cBR+vFoCErX/Yg7Ooghk7cRcC3AWbyvvx/vkrTsKZn1QZ+nKB3oejvs7u+6LxlOrHF35/txzglgPsMx4bv16k99EsZ35Uvfrrq0RUX2BnaptcFhWcuh4sgH5IR2Ylztcc9a0qiqJcZ5lpn9HXog7H6tMhft8lnqAoinKZAie6CUr0GfgNlf1LURRFUZT1JzVskt+exOzS0S1BGEi8WoBV0pGhpHXGQ7MERlqLAk0DCSG0pzw4JzjVWfBAg+ymBMNfKQIw9UyN5slPN1lEUZRPr3a4TWlfKsqUHEqSfSaVAzZeJWDiexX6n4wGoWuH2kvPSW+0MDIafisEG/AEJCTEY7Dws1D8QJKcjCZu5N6L/s1+Qw0q3Ug+qeThLJoIAYnuTz9JRYYw9suNaEbIwv544OWFNI47OHMe3Q9kyG1N4tshRkpDaAIjo1O6O03p7vgslG2Hm8wOJvESa89Ub/gBXU2HWsqkkbJQZSmUm0Vxb4rinhRzrzaoHWnDZc4BEjpoCY1QwnwxQU8lukZLeCEO4FVWvnDrtIcwfGoHbVpXI9u7si6dHMhxx8lFLD9kvhjdK4iztwOhJgg7ZnxQ1ovUkIFV0rGnPVAJihRFURRFuYK0hGDoywU0I7qelHWJ95noQtO/28P6XhLjTRP/4dXfu/Q/MMvc2900TmdIdK19HkDfhjIDGxb41Q/uQdND3LaBPC852NCXXWZfrK/rJNiJXoO+x7K0jxrkPrtIcuflBWYI7WwCGF2S+nqZcNFAWCFa4cptu9DWaH2Qo/KRvSKQR0sKuh/MUDlgxwJ8rjRzEoyqoPKwCvBRlKuiw0/YqwZUDtj0PpSl+94MrdMuqUETGUjcakBq0KT0bh3XEoxvTTM5klzKSCV1wckdGfa9XiXRYyxVY72axKLAfNPE3+pDPIffBZ7E1a88+mkIgd2rc6Z3eSV7Uy4EYFQgcUyQ+liQ+lDgjkjsnfKazwee/wp0PS+x5gXJMYkdzxV53ZkFDT2pMfbtRdzFYKlK+fkap1ymflFl8AsFuh/I0JpwkSEs2gFOKr6jSE1Q7o0Ss2lvxhNMmEUdoQncijp33Qi8asDEd8sU9iTJbU+SGjAJA8nCW52Tg5wr9CSLb7cY+HweI6sKtSjKzUiFMa4D5iETgaD9VFt9o4qiKNdRZtpn8AOXREMiBVQ/qwJTFUW5usof2HTfm2Hwc3mmqNE8oQJUFUVRFEVZP7ruStHzQBa37GPPeISORDMEqWETIQQIyGxcrhI092pzaZCrfsyhPbdI76NZjLRG85RHontlRvjBp/JUPrKZeyleUU5RlGsnaIac/nGV0l3pKKvuW1Va49G9jTPvM/HXZYysjleNBpYzmy2Gnj6nSuefR/+RSMKdPuEjDsKXFD4KSU1JzAZo583JcLsloepLv2G0TqeY+N7GFcv2/MODaEaIuIxJK35b4+gPttA8W+HTyq89EYFXC5l5ro6Z10n2mshQ4iwGTD9TIzVo0P+Z5ep47XmPZE90jtn3Rhkk6IGknS6i72pj7G13rGB3rp56GwGMd+cu3lBRbiDOvEWyNzqY9j6cpffhLF4tQMraJff50BdkRi2skkHPA+fMZBur4ZgaE31pCg2XUsVB/1qRMz+urKh2P/OcquCynggDhCEIHXlVY/MnejNsnG2w43SV1wrxCsrKOqbB4BcLEMLUz1XlBUVRFEVRPj2zoOPXA7SkRt/jWYSAE/9pAaRk+Jn0cpXUnMS/38N8zSIcDAk3ryJwQsDChyVAIP3LS6AiBDz2xQ84+tEGTMsnkfCwEj5W0sNKeDTrSZ75zj0U9qRYeH31Cb1uBnpSkB6xyG5JkN2UwFn0Kf7mHGbvlUlsJHTQe69sAJiUUHu1CED53ZXBG2ZOR9MFzVNXP9GmNS0I0hK/+6q/laIo55h7OUr6lho0Ke5JISWM/1WZoB11klT+ZDsbTtlsO9gk1Qo4vjODkGB64bVNceiA9ayFLEi8h26BZHE6+N3gd0tad0kSJwTJw4LiLzT8gkQ7G1hpT3trqlprFnR6H8mgJ6Pgu8ZJh8YpF6ET6xvTq2DNQepYFCjr9kjcniv+Sa+IT6oAWwU9Ck690DaREJ49jaaHLZJ90UVTzwtlDt2ZY27A4pKdy+e9HoBmqqRzN4rQlZTfjaq15nYmceZ9gtbqfiRePdqPjLQKTlWUm5GafnGzWwD9uI7UJRQu3VxRFEW5CsKQrc+1SVajO51Gv8bpexL0dqsJzoqiXGU+nPmbKkNfLDD4VB6vGuAs+JTft69JRjzlxiRk9G+9WY+fSVEURbm4rn1pqh/bzL543r2VgGS/Qd/jORKlqHuzctCmcXzl5AyvGjD5k2jicWrIJLslXlKxuCfF3MsNVaBOUa4zZ9Zn6ue1jo/JgKXAVIDmmMvcaw2SfSa5rcu/a4FAG9cJH4HigZDCIUl9s6A5KvCzoOUD/C64rKJoUmIEkoQXEAqBnVRDK1dSsq8dW/bRH+3GKrjs+C+OIXS56rkIUkLlRGEpMBWgd+8ilzMcZhaiwFQAoQmaJx20hKD30eUA0qlf1Wgccyj8t8P0zLqkzxlgl66Bvz8DnsC85+KVOYqt6BxWT5oXbacoN5LJ7w6T7FtZeUcYF/6xSgnthQShpzH10gBDX4pXIPY1wcnhHLtOnRM8NmCS7DOxJ2+BSW+3IKtbZ+PXupYmkPmtkOoBm8V3Lp1Nf03vU9J58OAsXU0XT1OT1W41w18uoJmC2ZfqhPHLDuUc67Vv+UpS20dRFOXWZmQ1+h7PkRmxCL3opBD6ksmf15Yn3Z93ax/u9AmmNcznE4QfB6RHvKXEbOfSkoLc1gSF21JMvaTTvW+B7jsWL3tdu3oa3P/EoQs+/jM7xEhrF3z8ShB61Ld3RV9TA3lerIJZ1MlussiMJkgOGAghsGc8Zp6rUzvSZsO/uHHvJ6WE2otdtA+nKXxukfD/ufJiw5nzceZ9eh/JMvG9ylVdF3NG4A3Iy+s/VRTlU3FmfZxZn+oBG2EKwvbyscDOGhy9PUcjb7Dt4ybdMy6GLzH8qI2d1nDmr/4cMfNtE9ESOE87t1z0ibSgvUvS3ikxpyFxQpDfmaR0V5rADll4q0n14/ZFx5sTfQbpYYuufSmCtsQ+42KVDAY+l0eGEqEJ/GZA64yHntJI9BgYPxZIIfFKsPgUeL3X7jOvlVcNaM95ZLclaZy8eHGN1rjLif8wD7ogbIcgYOP/qp/d79fJV5Ic351d/fvWovftuT/DeIfrK+X6kSHUDq6tI+6TPmItqZEajuZ3pAZMzIIOEtyqT/OUS/OUi7PgqzkeV4DqC+xMbZPLc4tdHqw/yV8ko4Pt59UJVVEU5ZrzQ4bec8nNBBgO1Ad0Tt9rEVpXt/NWURTlXPZpj5P/aZ6BLxRID0Y349ktCWaer1M/fPWzZyqKoiiKolwNQgPNEEtZgdMbTBI9BuX3bJDQnvapfmzTdzZAqLg7xdwLF04QZE97zL5UJ2hL9KQg2Wvi1QOa464atFCUm8j/9vABDu/fRGlwkr7Niwgh8RYsxg8NMD9VZPudE4z0zPD9woM0RIGNO+dJjNr4ZZMjYS/GeVU4Ne2cA4CUFCse+UqDhBOSr3kUavGJa74ueO7xAdxKPOC9I+28g4xcbZTl6pqt2vnrAZ1H1jq973mrrBvxWYWmGV82WijHV6PDe/7NXUVgjmS/wcBTecxs9EW5VYsD/+/bCD3J/OsNqgdWDmILHY5uG8Ep+5g5nfzOJJkRi/asR7Jvud3H/7YIrD2JnLsQML+/QXZzAnvGo/xui+KdKbRzgu+sos7wVwqkZlzmdxrUh3T8pMBPCOQHCfacqND8IMdz1g6kJih1dahGogeMztfxNUG5lAQkiWz8fj4M4/tOeN7+pHX4nit2vDpgsxFfNrYwGFvWaRfptAcf+614xdfg798fW2bk42NZob9yWSoZ/915XryEbrtpxZblCvEgYNHhQ5y/3QB+fmZ3bFmtFd9OnhsfWu30HquRzMQnjXX6jbS8eNDyYisVWxYE8X7pTDK+zbPJ+P5Vba/8rFN6PtZmollc8feo4WKe93V51YB3aqOx5za+UmXTb5eW/g7dkAM7u0DCxrkGp3uzTHWn2f3ffsSu34i2Qeu0S3qDRf14O6pAoNwUzvzvH44t87Ir9+sgKdHDkLzjsLlcIbRt3t1ewvRD7jhRJvtIjtf/yU5kK77v7/jHb6z4W0sKeh7MLCWt8Zsh7qKPlFHggDPnY097jH6zhBu6LG7XMdqSr7w+jm/Bs7dtwDvvAkG6lx7jkXb8uJTqjQfU2rX4ceT83xt0Pi555fi1hvDi65YdjVcCLabiE78mxlaW1giD+PGs0eyQJKHTuaBDBS/ZoV1odahwkOywrMM2T052mMpyXrOR/+Or8Tbn6XsiS2pXEnvKo/ax6i9XFEVRFOXyJXoMNv+dHEKT9Dw0hd8wkKGg684Ke/758jXOa5Wu+JMfAXNjQOqAxvCXCyQfqmHtspEtjWDexD2axD+dAAnGRgd/X5uFXpMFe2PHdXmtuvWS61syL14RNfmFNub+DIX7TbQdbfS9bcR5l7mejF/3nqvinXNvKkG0QasLtLpAn9Ywj2u4IxJ7z3nVOOXZfxo0vIv3sdm+CaEkdyag63hAej6k1avRLmpYzZBEVWI1JYEOjV6DuQGd2oCBn1y+eHyzfPGkYQBp4+Lzby3t0lG2+iVK5719V/y6t/fRLMXbU8w8V+foH3V+/tQzNUa+2UXfY1m+u/vSfRB9XDgoGSDeYweaJej+g24Wvtuk9s9VRhdFuV5kADJY+Tsf/NrBpf+f6DPIbU8QOhJn3scs6DTH3DVV7ryQ29++cH9IcCCJ/5pB8+4QO21Ch0PiW9Odz1nncjr0rZ4r7NC/eT73Eq/RqY/0fA1rleM7nRSBu+HBp04SzBs472XoS2cZ/EaC9Ger6MVo4/SbUULW0BWc+vNNeLWozyW3o0b/Z2bREyEHmkN4DRdtQkdaIGY0sptMSElkl8+Z/76FPeMjvQsf+3sO1C+6uv/15gcQGhTvSJEathACtIRAT2nMPl/n26/vv/xtcZ7GSZeuO1NR/80l9sloDsDy55r8d3P0PZ5lGPD+5eSKpLUXJUH6IIXk+J/tu2Tzrb/73upeV7kuWqc9WqddBp/Ko5kCrxHQGnepHWqDiK7Hi3tTdN+bQYYSZyFKfqyqrCrKjUEFp97E0iMmwhH4u3zCIXVQVRRFudZG9zvkZkOkgPJmncm74hMKFEVRroXQhckfR5OQtCRs+t1u+p/IRVnJplUF1VvOyv679WM9fiZFURTlgrJbEwhdUD/WpnRvmu57owp4gSNx5nw2fr2IOKfikT3pMvBUHpC0xl0aJ13MnI4MJW45gBCqHy1PqKiiJlcoys3ozOF+Dr+2GYBExmHj7hl27h3nzseOrWiX2VfHm7Wo/KyH6EJS0A3UHwxxtkuEA9a4YNtkna5Fl1zj0vdNElgsWkxsyFyyrXJ52jM+kz+pMvxrBYzM8uTHwA7pezSHmdeZf3V5YqWZ1+l/Mh4UmeyLJnkETsjUz2q0Zy8/qK38nh0lRjjLry+PxbROuyS6DdIbLGZ3GcztNuGcc9OZvjRbT9dIuCF3HZrnnds6pzXfdbqCEUo+HO0weVVRbmDG2cupwAnRTEF7zif0O9+853cs9537zQAjo3PHyeXpsO9vTeIZOlZ+efJYasik+rHN7Euqyv16o4chD0+cJuN5+EJwoK+PmW4LpGTTdINsy+POY4toHuihpG3qLGRSLGTjYzCFXUkKu1I0TjgEThglK9gVtfNbIfkdyaVJnc1BjfJOg1CH/ISD4cIX3jvNT+6NB1Qr60PpvjSF3SmcRZ8zP4wH8SodrNe+5StJbR9FUZRbjlnQ2fDVqK/CzLYZ/vUzGOk1lgMV4I1KvA0Bfa/6tF/L035tOSmQ3u+SeriOudVGS0kqXvoKf4o4Y28brdsnOJogeDtNeDyB8XgDrXftpU61iiD5qoExt3xPF6Yk7R0S64yg+DcaQU4S5AEfjDIID8IUZFM+QVrgpyFIC4IECB80H3Rb0jcfkqyEaAE0ezRm9xpkp0NykwFuVlAf1Kj2WNR7daR+c5X87H0kEwWmPl+ndvjCYxbpjRaaIfBqV7gM7TlSAyZCCFqTqkiOotzIPqmwei0FHyfwX4vGRYx5gbopiggBRq+P8VQVf7pF69kC9e90k3q4jrV7eUyhNZlaCkwFMHPeymSHWUm4O/pO5Xm5J1qnL39sI3QE5f0ltvzdHHpKQ4aS5phL6Ev8Bljd0PvI6iuUrkbzpEP3vWl6Hsgw/9rFk2Scz28uj73IcHn7JHoMslsTuAs+9WPxpGOaKUj2G8y+uPYEpcqNaeaFOsO/ViCwJWd+VEGef/mjQbLfxCrq9D2WpefBDJWP2rSnVILLy6L6AjtT2+SyqODUm1jXHWkkEu9udTBVFEW5HpLVEN+EQ7+uJiUqinLjCNtw+ntlRn+rm41f62Lie2XaMypAVVEURVGUm4tXj0YZMiMWqaHlATsZSPSUWBGY2pxwyWy0cBZ8Et0Gua1J+p9cfi172qM17lJ+vxUfvFAU5aby0QvLI/PpnMP4RwMce2uE3uEyT/32GwhNMnZoALuaJbOvTvr2Bq0PczinoioOmfcE0oD8y9FEuRzxCmeTgymaGYNmRqeVNrBTOqG8dKZt5cpwywFaYnl7z7/RpPJeiy1/r4euO9LUDkbZkYUmSPRGQ1ztWY/KAZuBz0aTOuvH2lQPtrHPXPmxk/oxB2dxET2lYU96bP17URW6vkM+oSVY2L58zgp0jTf29PLI+7P0lx3651t4HeJPhxZa+JpgvD9eqVJRblSpmXCpsm75vRY9D2RJ9Zs0TjlRVvxzDpvmGcjflaI55pDoNjCyKyvvtE0NISWDC01SGyx8O8Qt+7RnfBbfaqpJADcDDYyMhhCgy4AQDUMGmDLEkAHCDjDDADMM6bMbdLnRpOvjXUWOd3URahrgghC8sbuXnRNVMrZPIDUCTVBsOYwsRhPMqk9kmX1hebJZ7YhD1740ekZDymhiklv28WoB6WFr6b4hcEO6jkHXsQ43BFJGMwqVdUOzoPexHLltCXw7ZPzbnWpDKYqiKIqynggdjKwe9Stf4RofmiEwMjrtWY/t/2gCzfgUNyk6ZL9YIVg0CBYMtEyAVgjQMtenMIk25KMN+YS3t/Gfz+J9v4i20UUMeIhigOyXiGT880oJzOpY4zr6osA4oxHmJK3HPMKiJMxJMMENDZqhxJwEa1KgNwQyAfZuiUyC1oKwrqG3IF2R6C2JFpydI29CYIHdpTE3bNDs13EK0c3m4s6V6+P4N9806J6HMxT3ppl5oR5VA7uI1IBBe9Zj4c14X+aVktpg4jWCFYnZFEVRpAf+K8sBjH6X6qjrxBjwyH1zAfuVHPaLBbzxBOGX6miGJLupxfZ/eJTGqQztmSTld7tYfLdEYVcN7gHMS778mkgJzpkk87/qJWzrNE45mHmd0JXYUx61I200UzD0dAF5hQ/5bjlg4a0WPfdnqB5s41XWNjC/8HaL1LBFYXeKhTeadN0VBboGToie0EgN2bEg1NSQidAE9kUCE7UgpH++Ta7lkdxk0TylEjHcyPx6yNifX6QvL4T2lEd7ysPManTdlSa3LcnCW00W326p8QRFuY5uvrsyZYmR0UAHrOu9JoqiKLcmJ6+RmQvJzPg0+9UpVVGUG4dbD5FSggS/oQYPbjVCgliHHS3r8TMpiqIoF+Y3QxonHXoeXB7wdKsBjRMOekLjzN9UGf5yAYBEKQpwcCs+Z35SpfehDLnty1WVUgMmqQETrx5QPxrPqKooys2ja7DG1LGo+mQYCD7/h/t55c/vYu5MFwf2b6G6kGXs0OBSe73goWWiwe/6QyHm7HJgapCTnOzPUc+bNDM6rqWBEEjZIThFXYteFcKD1AkIRiwCO6RrX5rc1sTS480Jl+pHNmaXjmZE38vob5WWHpdS0jjpMPNsndCT1I/MXZP1dhcDIADBUgCeXRDUhvRY22ba5Nl7B3jqjSlGpxoc274yyV1h1iXpBcwUU1d/xRXlSpGSwVeWE6Hp6eVI1OymBKkfSuoPh/glwIDkcUHYlkz+vMaW3+8Gous6ezDJh5tK7Jyo8MSH09ELnL2GO/PDBm5ZZRW5WWz8epFkTzSTblP1RLzB2Tlj/jkBoNVEglPF4tnA1GWupfPh1uhYL5vL4y6WH7BrapGNu2H+tSahG52cg1bI9C9rdD+Qwcxp1I600RMCI6tTPdhGswTtWY/0Bovs7iTaebvV6e6MCkxdR4ycRt8TOdLD0f7oN0JO/6hyfVfqJrNe+5avJLV9FEVRbkAajHyrC6tg4Cz4TPx1+YomKfSbATKU0fXlpwlMPYde8tFLN06Caa07wPzNKuFxi+BgkvC9FHjRtbrc6CEGfMiEkJJQ0ZBHLFgwsBKSsCRx9gW4u4POs5E18DaAt6FzWaaGd05/ipSIAKTO0nW67V/hqJ0bQM9DGbruSDP7Yj1KxHYJzXGXgc/mSY9YtMavfECNMAX5nclLBskqinJrkY7A+3ku+iMTUL9D4GxTN0QXIkxJ+jM1zFGH5i+LzL7QR99js2iWRDMl+e0N8tsbdN1RoX4sx/wb3ejzkuArdjTWsBoaJHsM9KSGlhBoCY3KGzqhq6GZEi0VUHu7SHBOn1phdzT20J716H04S35nkkS3gVcLmPx59YpvByMlCD1JYK99vqIz67P4ThTcioDSXVEl+VN/tkhuW4K+x3LYU97SeH9ywKTnoQztOQ+vGr/4SzgBo5MNNkw1MX0ZbeYvFpj8WVUFqK4TC2+2WHi7Rfd9GbrvzVC4LYW76OPVA2QIRkoj0Wcw+3z9U1UiXs9UX2BnaptcHhVJcxMLXImpYg0URVGum9P3JtjxM5vRVx1OPgZ2jzqtKopyY+i6M40QgslfVPGb6oJRURRFUZSbiICBz+dXBCd5tYD2vEduS5Jtf7839pTmuItbCeh5IAMI6ofb2DM+fY9mV7RT10WKcvMb2TO1FJxancsxfayXXFeL6kKOD17ZTiLl0rdhEb7Ywp+3qL+Rx5uMAp1yry0Hv5S/EhCUYHwq0/F9lKsogMzHIELQa5AaF+TPJhv4xJkfV/Cb4VJgmusEHP/381hd0WRFKYEwqrIdOtdxdFDC/CsNuu5Ok0Jny6/aHP5qOtbMN3UkYPoh6apPqEG6FtA17dE95SGB97f0XPPVV5S1MMsSwwtxCoLSRwGBBdrZedRde9OEvgQBmi7Q64Liz6Pfa5CRaDY4NR9COPmfF5F+lFDtyP/vHu4/OEtvfWXykLG/XFSBqTcRobFUnRQgQFAxUpSNNFIIDBkSWJKWYbKYSOPpOkGHykuX4ho6E6UcG+brjHyri5lf1ZcqIrROe7ROVy743MKeJPkdSRp9GoEFbl7DT0K7pPHxgjr+rgeJXoO+x7Mkzo7TueWAuZfr2JM3TsCHoiiKoihX0dl+AoBEt0F+V5LqR1cuyC690UJogubJ9Z34UGigb3fRt7tICeGYif9MHqoaciYJ7tnrfiFhg4+4r0Gjz1x9QM2qVkIg1/nUq8LtSbruTDP7Up3qx6vbT+tHHbKbHQa/kGf2hfoVT8LZfV8aYQgqH9hX9HUVRbl5hWdMvBcy4AvMr1bR+n3m28XrvVo3BXOzQ+qRGtUXC1QP5SndvUjP/QuIs7kYzLxP6e4yrdNpGuNp8LhkkTI9KSjuS5PfmcRILY91hb6kcSCJsEKkpxHYOoSdT8ztOR+/FZIZid5MT2v0P5njvY/72b1tnoT16ftj9bRGYU9U9fRyx27K77QglHTfF43fefUAGUiqH7XJjCboeTBDaihKTG11GTjzPtO/qsdeJ9v0ePC9OSRwejDD+FAGCTz+8hRDXyzQOu1y5m+qS9eQyk0shIXXmzRPOWRGE1hFnUS3AYIoULoV0v+5PON/VSZoqS9cUa6mdX4rt74F7TDqXGkB8fkOiqIoylXmpzTGHkmw6RWHLS86lDf7TN5pwXmZvhVFUa615NlJON33ZWieVJm+FEVRFEW5eWS3JJYCU2dfquOWA4p7U6SHLfx2SPUjm/aMj54QNE44KzLg+42Q3ocz5LYuBzm1Zz3K79s4cx5eTQ02KMrNbqGdX/r/gX2z6Jtdmh9Fwae3f/kIA7sXAHiruRkGQtJfqWC/nMc9uNyB3ipozNhpvHmBCCVSWzlQr+vxY4XvdajQYMYH1oURH7zX9JXtglaHYZlOh6dOr6/Fl8kOEw2EcWWPd8n0yvvKvnwj1iZtxu89y87ydi+M+XQf9UhdIBH3wltNmmMu7qLfsbpJ6EraMzdegEn14zbVj9tk/8cNDI45VFuJpcoemdzyBMNAh3zLZ+9Ly5MkJNC2dN7f3I1vnFc50I7vc0aHySHl6soA656u+CSMSiM+gGQdjVdqFR22u72pQ59Cp33OifeHilT8+7prZCK2rOqsXJdyO75uhhbfp912fBvVyvHPaiTiH8wz47/DsMPn8t14NVy9w+/LSqz8rHv6pmNt2h0qvSSNeKZu8/yyjoDe4fN3qvKcT8cntT7QNxZbdvCe+Hcz98OdK/72PjO14u/h3y1h5uPbY/G9JsXb0yy82cSZ89nw1SKhF1U1zu9IojcFC282qX4UTXCV3vJxbMcfvE2wI0FjcwJ70sOZ93EW/esbdK6smQxh/DtlUgMm6RGLzEaL7m5Jt99abnR21wwDSeW9Fq//4e5YxdQdf/edVb3fWF6j/7N5NvxGkVN/vtixKsL5Wqc9/GaAdShg/K8Wkef8BHZwJtb+yB/dH1umN1eub2jF91N7sUMV7A7HlrnTxXi7TvMGO1XlCuPLTD2+DWYquUu+XiIbn9De6fzT6fpjoDd+Qp+c6oq/Z6eK9MHqqtT72fjCLf/8tdiyoS9FFaQA2tMeMy/U8Srq3k9RFEVRbikSpp6pMfyVAkZGJ7s5ccngVKtLJzNqkRo0CdqShbea+PXO1xC57QmcBZ+gfevcqwgB+iaP8O9XlpZJF7A1yISIT26rO/WZKReUGjLpfThL+f3W2gKoJUz/skbfEzkGPpensNul/L5Nc8K9aFCNMAWaAcIQUfLO89rqKUHp3gzFPSlmX6qrBJ+KcotKDZv0PJAhONZGpEKCw0nC4wnEkIf5RAORVceGtUrcZjMwskjtcJ6Ft0o0T2Uo3FYjsHVaZ1IEto5bThA+6FwyMDW/OxklaBZQO9ymfszBb4SETogM4PMHzhlzkCA9gTOVYPZHQyteR08KKh/aZDdF4/BeNSBoSf7jd+8CYNOGMrou2btzhsfvH/tkmGNNNCNKYucsfLqxnPJ7NvXjDomSgT3lLfXlLbzVpO+xKDmZPe0x92qD1kTnaph98zZGIHn2wQFca7lf++SfLFK6N03XHWmSvcYNOe6kXJ72jN/x+9STgpFvdtH7SIbpZ+JjaIqiXDkqOPUmVvnQJjtqkf6RReZ359Eu8W02w8TFG5z72sHqo10X2mvLLp8zV39jfbzdt+q2nowPil9MWlt9oEbGWH22qfFmadVt89bask3V3OSq227Lza+67byTvXSjc5TdDoOrFzCUqq26bUpf/Xfir/H73pgsr7rtrNthwPYC7OASdwbnSeqrLwv/cnX7qtuedle/3631t2IHq+9IDFh9UOZDxRNrWo/DrYFVt51ur/57yeqr/31vyFY6vABU+yD3C4PSyYDCTIvmF3zCPPhy9dvj0eLRVbd9u75p1W0BGt7qj/9rsZbf7NHm6o/nAG64+v10LZ9vzFr9bwVgrNZhMsUFDGZWf7ybaa3+OBN2mrxxES1n9fu/H6x+Hx2rrn5bALTd1R87Ok1qvZC8sfrriMNe96rbApxyV58lfy3HXSdc2yV3Qlt9p4f9880dl5/wQ/b8tIXVbeD99Sh+RiP19Mk1rYdyE5PybCmhdWY9fiZFURQlpj3jUTvcJr8zSemeDKe/X2bq5zX0pGDL7/fQfU+Gk3+6sDRRyMhplO5Ok+gxkJ6kPefjnXCigQcJjZOOyniqKOtIZTy6n77z73xMuju6P9z+xBjHXhyhZ2u8/0/okH6iRuKuJif2D9F7wiNdDdn17CcBM00AXnq8F89SycauFt2RbHircz/SyT9ZwG/c/AfqSo/J4JjD3ldrfPhIIfb4q0+W6J9yEGUdTUqaSZPFnEUrZXUO3FGUG0z9mEPp7jTNsSj7+CcW9rdY2L8chDj1iyr2pIcwBZkRi+rHbRbfbnV6yeh1jzjUj6zv6kO3hBDsSQ970mNhfxMjo2EWdEJf4lWjKtd6RqNwW5KufWnuOz7L69svPuajJ8VSwKEz79O1L42R1kj2GUtxjKW708w8d+kJRV414MxPqmz8zS5GvtHF9K/qOPNq4tl6kBqOgqLdxYDTP6kSquoHn9567Vu+ktT2URRFuSG5iwFjf1E+e21w6Wu9/M7o2vTcv6WUTP6kSuv08tyu7BaLzEiCyZ9dINvWLURYgKWuty5XWNcYeCqPPekxv7+55ufLAGaejaqmdt+XZuhLBUI3xFkMEFoUgKqZYum/mrGyvyn0JO0Zj/asT6LXIFHSMTI6oSeZfXH1VVwVRbkOBJTuSVPYncStBMw8e2WDyUt3pUn2mfjPRXP9RCHAeKSBttu5rABFJWJ1efQ8uEB2c4PZl3uZfakXPRmQGrJJdLuU7i4zMZoFW6Dvt0ADfIEc8gmHArQJg5FvJUmUDKqHbOb3NwkvkShDCMCUNI+snJvqln1mX2zQ82AU7+HbIZM/reI3Q7b/L3sBKFdTdBVsvv+L3YwOV9i0Ye3XPqEbrd/wV4qM/1X5UwWp+vUQv75yXMmZ9Zn4bmVVz+9fiM5rqXawIjg1dCWVD2267khjlVRw6q0gaEtaEx657QmEUV+RuFBB9QVeiNoml0UFp97E7NMe1j0N3LeztH5QIvuNxeu9SoqiKLemLNS/7pN8UyNxUCP3A4P2vhD/9uu9Yoqi3LIMDSerkaqE7P5Fi9AA92tF5l9r0J7xMYsa3fdlAYmz4GNPerSn1Z23oiiKoijXn98ImXmuTvVjm8GnC4x8s8T4d8pkty4HQWz+290svNlk8e0WPQ9kyG2LJ/M68e4CgZqYrCjrTiLvYmbcpcBUgHx/k7u/efCiz9PzAWfuSDK9K0H3KZfuUx5mW6KFUMsZKjbwKtN8iW+B4YJXC1ZUX9QSAlafs+qGVe63OLM5yfDJdlTV7ryKvBgaMxtT1LOrTwyqKNeVBkNfKmAVdepH25TujvbdyoE2M8/XSfaZtE7Hg84bJ84ua0tO/IeFa7nGyg3Eb4axSZJBM2TxzRZBK6Tvsc7Vyz/RtS9Fz4PxxLpu2ac57qKZguSASevM6hNoevUQZ94nNWgy9KU8U7+oYXUZSCmRARgZLZrILeDukzPM5dOc6crEKrwqN5aBz+ZAwukflAlXvzsoiqIoirJOhZ6kcXx1yW/K77dI9BhYXTp6WkMIgegQgdN9f4bWaZfmKXWxoVw+6UHrF0WkJ5l6pgafYq57a8KlNeFidetkNlrRfU0oCT2J9CWhx9n/Li+TgSTRY5AcMMnvSuIs+FQPtXEXA+wz7i1VFVhRbjoCBr+QJzNqUTvSprArRfcDGWaevTLV/8yCTnqDxfSvamz81xJ0EH2+Ckq9gpL9DiPfOI2UxLbrRDOLmNDRTprIUoDUQNufQJcCqUncRYfZF+prCqC0T6ZpHs5RfGiB3B01Xv1iESOrM/qtLoyMTu1oO0r2drbr7r/7L5/D9XR6Sy2CUPCv/+3D/Ofv3cn/5g/2k8uu7fon9CX1o21y25MMfD7H2F+uvqjUlfbhzi4efXuWnServH17N4G+3Mfn10OaYw79T+To2pda2Y8ZQvm91opkJcrNLzNq4duhCkxVlKtMBafe5JL3tggWTYKTSVrP5kl/dvVV2xRFUZQrq31fiLslJPuMQfJdDd8McXZe77VSFOVWdezJNMmyT98Rj3Q5JNlvsOFrRUJXolnLvV25rVEwh5SS0JV4tQCvFuI3fNxKgFsOaM/7oG7ObxpCRv/Wm/X4mRRFUZQLa8/4jP3FIhu/XmTT78Sr1ouz40ezLzWWglPDQKLpgvn9DRWYqijrUGFPkql30nRtuvw+8MASzO5IMLsjCnhfbKhAwWvBy2gc/vU0IpBs+bc1TKLg1NM/rOAuBNd57a4M3QsZGGvTymigJu4oNwEjp5EaMtETGtWDK6ujiFBi5qJJrgCluzNLjyV6dFoTLs0xNTFbuTyfVCzduFBnvDcfezy7xaLnwSxePcDMnVPVIJCc/mGFwF57B5HQYNsf9iz9bWR0Nv5mV6xd6IZolgbVFoPVFndMzPPLPRtxTDWl4kaU35PEyOhUPrJVYOoVtF77lq8ktX0URVHWh8CWnPlxVBFMaJDoNQjsEK+2sl/ZqwVYXQbCQE1mVy6LlGC/mCesGEz+vEzoXJmLCXchwF2wV90+CrJZfXtFUW4MvY9myYxaTP2sRnPcxV0M6HkoQ/Uj+4pUfMzvThK0QxonHLQhlaDrauoY8OuD/p6FzIT4v2FHYwttEDM6si9g+om1H7fNkouwAiqvlWgeyVK6G9IbLYQmcMs+M79aGdhczC8n9jB0yT/4nbf5v//7B/njb9/NP/69N7DM1Y+5C12Q2x6N22tJLaoGe52G7BsZk4+3FrjteJWnXpniyGiOEyPLFWUnf1YjvcEis8lCM5e/nOzmBN0PZGidrlyHtVauCi0KnG6cXF0Sm1uN6gvsTG2Ty6NGUtaB1OerNP/SwD+aBBWcqiiKcl2F3VD7Wz6Fbxtk39RwNodgXe+1UhTlVtXuMhh/wCBZCdj0gzpW3kAzoXnSZe61Bn4zJNlnkBq2SA2YWF06iZJBogeEWK5OJqWkOeYy/cuaGnRTFEVRFOWaCd1oglB2cwKhA0LgtwKceX8pmCl0JGPfXmT0WyU0PRo4chbXR6CToijLrG6dvsdyhB5s+fz49V4d5QKsRcmGZ869afQIdagN6YgQErWQZK9J+YMW5XdblxVgdKO67Y06eghju9IXmGWiKDcOM6+x6Xe7l/4u3JYk81GTUBNIARtOtOGc5CCnf1TBnvIQAqS6zFI+pfaMz0R3lr0Ti3i6zlRpOfhZGNDzcJbGSYepn9fIbUtglQwCJ6R50rns84aWEIRuiG+HtKd98jujSXLtWQ8zr6Mno8mXoSfRzo7nVFMWoRBIlXHghlXck0JKydxL66AEu6IoiqIo15UMuWCAT+VAm+EvFzDzOu5igCf1ju3O1ZO4+PWJHZiXfI1TzXjCxnNZ2qUH7SebhYs+nrPaF30coOVffMKT7V/8s/SnL13Z71KvMZK9dNW1upe46ONd1qWDe4pm66KPb03OXvI1vndbb/x170jR+3CKqWdq6yZJm6Io10ZhT5LinhTeIw7df2jSjQkhyB9Jhv9RHu9pJwr+A3qtix9v376rc+Bpqs/AqwfIAA7cc/Eownvenb/o427p0ufIk+Xuiz7u+pd+jSC4eBCtaX76Y60hLh1RWfEunvz0QHXokq9RnU+xp9Fk7K4ki+Vzzts5wIYsJy75Gr+8PRdbplllMpssUoMmRkZnfn+Tyod2x8rdvzZ8T2xZotdm428W+f0vPUTtYJunD6wuNiV0JLUjbfI7khgpjeEvF5aSgVwLW3/3vRV/m0Wd8OtFgrZkx1id4Rfn+eDbO/GtC+xDUnL/n8/gVdT5erVqP916yTZdyYtfh5USF78GA5h7uLLaVVpJwPCvFTAyGvWjKjhVUa42FZy6Dmga6AMufi1N6IOmvlVFUZTry4DWvQGZ/QbJo9Dec71XSFGUW5XWDhl90yE7H0BOp36szfRzdTinD6U97dOe9jl/SMfIaSS6DayiTm5HksyoxdY/6GHqmRrNUyoV/bVUuicFb6/hCZKOHYo3vfX4mRRFUZRL8hthNFh2Ee5iwMQPKnTfkyZwQtrT3jVaO0VRrhV3IWDhrSbd92b46y+O0p5a/p3vfCs+ge1UMz7BwdDikwkyyfi9jdNh8oOViB9XdCM+OB2sYuKElopPHpRBPPBFM+IXwL2l+ASAphOfJNhux7dJp3hJXY9vk+Gu+ESB+0pjK/6u+PFJF8fva5O4IwUPZ1cs1wIoTgQ0J1ycRsDCcedspYb1JTPvgyko/l8nMY5FA9zT398da1csNWPL/DA+EaLT/io6pOk9/7lapzZefL8MCx0m1/TGB+Yf23Y8tqzRYcJn3Utect0Aam68XXhe4JeU8Z2102uNDi7E182Jr9v8RDG27KF9h2LLRlLxya4vz8YnVph6/LdfOG+Sq9bhBrY3GZ+cvC0dTWyVZ5sLAZsT8cmuM/YjsWV1O74tKx2qQR/80spjjmYJNEuw+HaT0j1RUKBVNBgcc3ArPgiBp0P9iEPrtIvfDPGq0WdWt+XK5Tr2rx9c8fed09MAjMw18EIdATj/511sLNcRbY837hnF/g0T4cePB9v/yeuxZUf++F6QEk1CqEXP2fGHby09HtiS4/9+geP/5n4ePXEa3Og8NL+9i1bSoJGMzpt9NZueuo2na7w92odtnT2fhhAmVvEL6FBJotP5VzqrrESixd9Ta8dfcHG+wyREo8Nx3l35vkaHNn6H64+gGZ98MHk6HixhZuLn947HdLvDZAazw/mrePFt3jzlkChlyGyxaJ5Q/dVXzHrtW76S1PZRFEW5pWRGLAInxC2rIAVl7YycRvf9GcoftGgcVwERiqKsTWFPCoBw2znnIA2COz2M5y2sv04SdoeIqobdIzA2OxgjTpTwd5VCT2IkNbSkIGyrm51rzU0L7LzG8IdtBg471PoNvJTAtCXZ+YDa7iS1g5dOJnG+0JXUjzjUj1zeuceZ83EWfLr2pbEn1zaeM/NsnflXG2z5/R7M/Bp2xqvAqwQc//fROEJmk0XfEzn2vlnl/QeKhEa8z6o055IoGcy+qBKhrRdmQSc9ZDH9XA1nTlVk6Uj1BXamtsllUWGM60RYNgAJHupbVRRFuQF42yTyDUnmfQ1phDjbWcpUpSiKcq1sfdkmVZc4GcHk/2cBv3HpzG6f8Oshft2lCZTfs0lvNBl8usDg03nmXmlQPbD2zi9l7YysRvHO9NqCUxVFURTlJpfoNeh7LIswBDO/qiORJLoM9JSGVw9ojrtw9rJGGCB9aE951zTzqqIo197iWy0yoxb9j2cZ/24ZqcYQbzgy6DxSN/7d8rof9J38aZUNXy1S2JWMJhuqQUtlDYRYDlCF6P/nDnVz6tVhChvqlPyA0ILQhNAUhAbkPQ/fEPimwDc0Qv3S1R0T3QYj3+zq+NjMC/XLmuikKJfjaG8Xadenu2nT04yCu0OgnEmyf+sgduLSlaTOtWmmxo4zFcxA0jY0mikT/ZEsjVMO9pnlCXSllk3W9SinEhzs76aSTiLPCYqcKp5NsKCO4TeFhbdadO1L031vRgWnKoqiKIpyVWgJQW5bIkrcrK4RlbXSoP8zOQI7ZOGNeLIyRVGUS2mdjgLlzsvtR7gpwPv1NvqHJqIlkL0hwbyBdzSFVvRJPl7DGFxdQGH1UJvBz+fZ+vs9OAs+9pS39C9orX6OmXKZhODEAyl6T7iIAHKzPoYr8S2Bm9HofyJHasBk7rXGNQ8envpFjZFvdDH4hTzt6RYLL/aQv6NKariNkbv4eE9wdl2vd3DquZqnXCYbVUb+Vhe3v13l+O4szfzKgBstBCklvQ9nmHmurpKTXCsBCB+kAOL5eD/dS9shoSfJjiaiYG11Ta8oV5UKY7zJhQ2N5g+7kHUDfchBS13vNVIURVEA0KD2aEj+JY3cGzqZtyX1x0K8jdd7xRRFuZU0+g1SdY/aoLGmwNROWhMeY3++yMi3uuh9JIuR1lh4o3WF1lS5EL8RfurvTlEURbk1GTmN7OYEgR3iNUL8RhCdU26ADndhQLLPxMhq6EkNJNSPtQlsCRr0PJAh2RdNSD83gCL0JJopCJyQ0JXoaQ1NFzgLPqd/UCF0b4APpyjKVTX9yzoj3+yi+74M86+pSV03mtrhNkIXpAZNspujCpaVD1vrPjAVwJ70mH25Qe/DGXoeyjD/qto/lbX5pLqiUzd5/d/etbS8XU1SJN4vMEC80itAK6XjmRq+IfBMjeRjWUJHErohVld8WNirBcy90qA5pgK7lGunmbB4dcswOdthY6WGFQQc6ytST6+sfpz0fNKuR8sySXg+vr4yA2hms0Wyz6Q0XmaiO8NCPkna8cm2PXo3WRT3pii/31q6ZnCMaELcsZ4uKul49WHlJhOCPeORGjDRkhCq+HpFURRFUa6g7gcylO5KA9CaUPdLytroKUHf41FA0ZkfV1WSPUVRLov0zwb4/SyB93kHzsnlJbsl/meWz09dVp1g3qD9Uo7WD0ukPlfB3HbpqpnNky6n/myR1JBJasgkvcGkeHsUiNCe96h+1KZ+tK2OY1eRm9E4s7dzP9Xg//oMvY9mye/sYf71JuV3r908Pb8e4lYCUgMmk9/ZAMDcL5OgSbruW6R4b2WpTztGA7caYBV0inemqLxvX7P1vhhn3sdNCAplnzv3V3jnkS7ameUA2vmBBGd+FCUiHfxCnrG/7NwHr1wmKdHbYFUkibLEqkT/zLqBOBuFH1qSoCRx9ob4gxeY+6FBhyGTjkJHMv2rGkNfLJDdklCV7BXlKlPBqTe5xre7wROYu1skHq1f79VRFEVRzuGNwsLGkNRHkP5AI/+8RpCH2mdDwtz1XjtFUda7zLRP93EPCczsNElc8hmX5jdDTv7nBUZ/q0TXXWmMnM7Mr9Q16NXmt9aWiU3I6N96sx4/k6IoytW04deLsWykgRNSft8mM2LRnvOiSdrndtyLs/8uIy+CkY2CYWtH250zt2qQHjLJ706R3WQhzlb3+iTgtPeRLM6ij1XUEdrySFblI5v6kTZuOSB0JVaXTmZzAk0H3w7pezRHottAhupEoSi3Aq8asPBGk96Hs2iGYPaVxvVepVua2J9AfGQhd7j0PRENN2U2JTBSGs0xh4W3Wzizt86sleoBm9y2BLltSRWcqlw23zGiG2C5fD3kZcBoLd8XNzYKjDlBsh2/aEvbAdjL/QjtPgM9oaFZAqEL2rMezqJP2JYsvte65hn3lVtTyvNIeT5GGGKEIaYM6K836W61cc4GnHaNzTDWnSfjeNSTFpYfsGWuinbea/m/V8KZ92mOu/Q9Fg20+Jrgo9ESwTnBqzv+hzGGvlwgsynB4tstQldST1jULZONlRrVVALXuHGqNyiXZ2F/kw1fK9L7UI6Z51Q/9ZWwXvuWryS1fRRFUW4NqcEoAmj8r8u3VN+G8unpaY2NXy8idMHUMzXsqdVVL1QURTnfwhst7EmPoa8VMJ9L4H3OgYt0Zeg9PumvlbF/VcB+KY8+uICWufSgr98MqR91qB+Ngrb0lCA1ZJHblqDv8Szd92eYfbEOqKxQ11r9qENrwmXL7/dgZM7vJbv6Zp6tMfzrRfK7HXJ7apgFj+bxLOXXu/EqFqUHFzByHea0hTD+l4v0Ppal+97MDROcCvDOQ1Fi7H2vV9j5QZ0D9+UJjOVtq1lRv3ztqApivJI0VzLwfECyHHWqhCY4RYE9oOHf7iItIAStLjBPC7LPGLibQ7wNIUGvZPCLeYSAzGgCt+Iz/Uwdvx0SOuElg+ebp1xkINGTF4qmvrWpvsDO1Da5PCo49SaW6DXA0zBvb5J6RE3CURRFuSFpYO8Fe3tI/mWBOSXo+oFG+WshYfZ6r5yiKOtZacJHkxAYEFpXroNK+nDqTxfZ+LeK5LcnMTIaZ35YvWKvr8R1qmyiKIqiKBeT6DEw8zpn/qaKPeliZHXMrEZ+Z5Ke+zMApAaiqnb1ow61w22SvQZ9j+cQRlS52572lga8Pqm2KozoWkBPCYycTrLPINlnIn1JeqOFmdMp3ZvGb4QEdkjghGiWhp4SWAUDzRQ4iz7zrzdpTbh4tQAZQG5HguyWBH4jpHrARk9rJHoMgmbI3MuNFdVe3XKAW46ywpbujTLXT/5cZR5XlFtJ5QOb0JX0PZbFKhlIr4kwL/085SrQowO0OGKRGgqQgaR2uE39cJRU4JYkwUhrdO1LMX2910W5KWV6bB7/p2/iuxoCaC2m+K53J9lxSc/bAa1BwexDOuOVEkjJuenpM4s+A9Nt+mdsLC/6fbZnfOb3N9S1knLNfXLv0Pd4lu0nx1c8FgioJpO8O9zHdD5Dwg+4c3KWXdNl6gmToUoDEBzvKTKTy5D0fdqGgRUEbPvecZIDJn2P5ZBSIoTACCUPHJ7hyHCR+XwymlBjCioftBj8UoGRb3Yx9peLmEFIzvXIuR599TGe3z6CbaoA1ZtZe8YnaIdkt1jMPHe910ZRFEVRlPVk8Z0WQ1/Kk9uaUMGpyqoJHYaezgMw/p0yQfMyMoEqiqKco3Xaw/ucg/lMAuM5C/8xl4tVJxACUo/VaPxlN+0X86Q+W0Uk1hZhE9iSxnGHxnEHI6fR+3CWgc/nCaoeeuEW7fe/DoQvyW5NLCXM0BOrD6zTTEHfZ3IYaQ3NFFHiQlNE/28I7GmPyZ9WCZ2L7xteLeTUny7y9IHa0rJE3yJ+3aBxOEdg6wx+darjc2UI9qRHYXdqqZ/wRuAlozmUB/fl2PtmjXtfLFPrMjmxK4OT0ineEVUOzm9PUD/cxlfn8ssnJYVpn+5yQGomxGjCzEM6TkngZ1ga2yitOEZJnL1gHZUkPtKwThpIIRGblvd/q2gw8s2upb+nn61RP3LhYOJPEncGl9jfFUX59NQs55vYJxH8IqlOfIqiKDe8JNQ+LzGmJYVnNPLPalS+qo7fiqJcPRN3WRRP+wTm1cn6NPGdCkNfzpMZSTD6W12M/VX5sqqsKZdgRJ2GaxLK6N96sx4/k6Io64bQotgArvOhSrME2a0J+h6NMuE4cx7SB68S4FUCnAWf3PYkEE2M6LozRemuNOlhEyOj0Z7xqB9zsIo66Y0W+S8nqR93COyQ7GYLIxOfuO3M+0gkXj1g9oU66RELIQR6SqAnNUJX0q4F1I862JMezlx85Kl+xLnogMH5hAFDXy6QHrKYf6NJ86R7mVtMUZSbVe1QGz0p6HkwS+t/ylA/3EYYIjrOzPvQISyw56We2DInKKzuDY34hItOl6dSxq/d2+7KyFnRIdVqGMYTCul6/AZL7/DcfDJ+/DS0+HMLqXhW88F0LbbsrsJ4bNkvb8+dt6S99N/Nv1eiNekx86tbu1pZ+KuNAOg/daAhqf93JUqZVqxdp32klIxXWb23GP8e3qttiC3bkZ1d8fecG8+G96qdjC0zt8UzlSfM+Dk6oXWYbGTG97mhVHxfmrTzsWXbc3OxZT3myn3n9fLmWJukHl+3U7VSbFm1Ef+syZ74Z235VmyZHcSj3Acy8c9VMOOv963uN1b8fcgZirX5+dye2LLDlb7YslIyvt/UvBS1QZj8tbMLXPD9+HGj+PcP0wbGACOjsfn3uinenqJ4e4pTf7GIV1GTx5QrQxhRQpxT/+x2mpZFqC0f23TN58Fj0+TbLu+O9rJ9bI5TPTlO9uXxdQ1f1wjPq4dqJ3T27+jH8kNcU0cLJRKQMmpXZfk32/Vm9BsxshqpYZPinhRmUSdTbvFA08Wt+BgZHe0Pe6JkObpAy+mYBZ3N//XbuF8voqc09KTGY++cZHq4iBGGHOrtpm2ePQ506IqT+spzsMzGf0+P7DweWzacqsSW/eRk/HjQOhM/fluL8fsvL9fh+sCKL7t301hs2TsTK88jzdlMrI3wOnx4M379ITq854ObTsaWfbbrUGzZf5x4KLbs1HhvbJnWjH/+4//qwRV/b/2v9lM72KZ0d4bs1gSN46qqxae2XvuWryS1fRRFUW4JrXGX+f1Neh/KUvnAVoEJyqoUbkuR6DGY+H5FBaYqinLFyKEQ/7MOxosJzGcSeL928XtfkZAkH6tjP1ug/mc9JO5sIcw20lv7vYxfD5n+ZY3Nv9eNdyiF/oAqpHWtDB526X8qj98MWHy7SW0NY+lmQY8SbMz72NMeoScJXUnohfQ9miM18OkyvnY/Po/fNHBmEtEciQ6EBtmtCXz70pUtr4dGweTdh4sMjrcZON1m05EWh+/MsfhmC297QOG2FOkRi9pBVTH4cg0cdRk+6ODmwMsLFvZp2IOrKLAiwN0R4u4IETYkDmskP4j6CedeaVA9aLPx610kSgbtWY/m+MXniqQ3RPu7u3AD7og3AtUX2JnaJpdFBafepPS0xsDn8oDE2q5OfIqiKDcLfwDcUUliTCNxCJxd13uNFEVZrwpT0QSpRt/Vy/4/+Tc1+p7Ikt+VZPPfLjHx/Qp+XQ2yXEnJXgMhrk6AsaIoivLpaZag+4EMhV1JQk8y+2KdxonrFyg58Pk8mRGL1hmX8rstAntlh6meijr7F95oggaZTVFq3WSfSeCEzL7UwKtG1xAlT5LoNshtTeC3QupH2jhln/7HcwhdMPN8Hbca0J7yVrxH6/TKv6+G3PYk6SGLmefrNE6pyceKcqsqv2cTOJLSXWl6H80ig2iwe+oXNbxaABoITeBVA0JXDSBdaVZJp/fhLEZGp3FMTUgB0G2J1ZDUNmq4eU0lcFKuCqsRYrgSnfD/z95/BlmSZvfd2C99Xm/Km/Zupnu8tzs76/0CWBJYeFCkKFGiIhRUyFDBkBgiRb4fxAhGvKE3QIEkAIIAiAWwWCwW62btmB3bPT2mva8ub6436R99yJqqrr7VZdpWVT+/iIqqyps388m8eR9zzvmfQ6hfO5AjaEac+y+z7PqdLlRDYefXi/j1kNFvS9uN5PqwBwy2fTUPQNAM0VMa286P4Woqxwa6mUknuX98hr56i0gBX1N55FIsSJ8opGjZVwS9LfcIKgrefBXTBbHrCnrqoBFRP+XSvOgx+IUciT4DEQm0pIpfDWiNxYF3Zl6jfLSNNxcf7NJflAEwCxqFh5Lku1wynoevaRzr6xRISjY+c++0KDyUpPhoUopTJRKJRCKR3FQa5116nk5jFnWCpkyQKFkdPa0SegKvJMUPEonk5hJtiwie8NBfNVFPa0T7lzeaBBMGzusZRFNFMSJEW8N9O82u30oy/t0qztT6+ycRQv2ci95lYz3RQIYw3R7M+SQH1RMOrVFvwYe/FrxyQNCKEELQuuzRvBTPY1I74wRws280Vq2auhKaHVF8qsT4Xw8x9o1hktscWpeXzpX6PpkhvdNi+tWNm9jUSWpcuCeFa6vsOtXkwoEk7QmfxKCBEIL2xK2Pe9jK5Cd8SoM6leevv9MQCXAeipj4P1coPpakcdFFBFA+0qL/U1nsXiNOmO4s//2wenV6X8jQHPHwyjJ5p0Ryq5Hi1E3KwGezqJZC8skaifzajB9vNzqzTV+Li42uNe/rBut7jBL62gUSR0rb1rzvLw28t652XHTWfo37EtOr7zTPkFVZ877VILHmfQF2JefWvO+AsfZ2fNjszLi+Em1t7VlTZr3OrLvX4oFMZc37HshMrXlfgEvttX/ec25yzfsWzM4s6SuxXHWDa9FcJnv7tRh311jl4TqIxBoylSzsu/ZJZNVY3/Nf8de+vxetvV/6sNaZxf5a2Nr6Fhv9dmdmfYDok8B/y5E5rJI5UEW1Ybe59n7mh+7BdbWj5nZWDLgW7WDt3++LdFYnuBazjbX3BbB8FYlrYWhrXzSMhIV1tSOK1t6OSmPtfUe4TGWDa7dh7fsC2Im1O0XWc+xm21pXOxLW2r8vuzNrH9+S2tqDS8b89X3epaAzO/21ePuhdQg+f9y3rnbkrLWPLYnPLs1Gb/XoJAYNUttMEkMGIoTy/3OCdTwW62b65w38RkTXY0l2/kYREULYjqh80Kby/vrGSUknGzF7nEQikUhA0eJMn12Pp1AthbnDLawunf5PZbn8N5Vlq4PelnbNT++sLh3UzrmsVwo58/sz6BmVXb+5uE6ee6tJ5Vh7wQmV3GbS9Xg8h29ecpl4qbYwJtVP3flg36AerwH6Pp6h201x8U9LUngmkdyl1E44cdZiFRQFtv1KgcHPL7WTRYFg7O+rd6iFWw8tpdL9eIrMAQu/GjL2ncptSUywGYhM8G3IXo7w0j5TB6+wpQgRP6RC0Hvcpzak4eRvXTIpydYkMx2w5xexrWU/cfXIuaLJ6FCSWsYAlSWiP0UHrxJg98Q2XyOjkRgwqNfv/HxOsvlwZxb7ej2lMf1ynbO/c4Bdc1UeHp2mYRkkvYBT/QXGCymMMGK41CBSoJRen215PUSuoPJ+m8SnDRRVgUhgdRtY3QbubMDlb5WXta955ZCpn9Y5++VDPD46jhnK4KRNSwTtSZ/EgIGaVIlaUoAvkUgkEonk5hDUI/x6SGa/tSC4+MF92VXft+/tleMwKsHq8+PV4uJK/uoxOLq68rzIVFefA3dZzRVfr/srxyMNJSqrnqNotlZ8XVdWb2fVW7kdlrq6z+aT2eMrvn7AWD2u5Tsn+ik8mCS926J+Rq69JRLJzWHkyfm+WIHe59LkSFD/I4eZ1xqETuwfHUEle8Cm57k07lxAa9RBT6nYfQZWUUezVAY+k+XCn5Suqw3NCy75Qwk+eNG4pkiy7/XV+71cYuViXFPVzHW170p6sqsn03ygOL7i66dqvase48zjK1/v9jdXb8dM+9rj+cjDNnx3mq7HUnQ9lmL8B1WaF9YWACjCOJFr7/NpBj+fW/DjdD2Wwp0NqK6zGui15j/DX/EAi9xBOsSpmT3x2OxXNpbNrf+XTnRuNBTEbxV54H9M4zybonB/krm3m9ds+8y3D6x4jp6vnLoZTb1hzv7Jwyu+vve3373hc2Q/f+6arylfyaE3I8L/Rx3VVEjvtjDzGlaPjpHRqB5vUzvlMNNeW5zHzKsNkttMCg+aWMVF/1pyyKB6xWdlZFWS201S2y2SwwbOdMDkS8vH8kskkpuLFKduUhQNiCD1iMxILpFIJJsNVYXoxSa8lIK/yhL9qpz4SiSSGyMxqDP0xTyKFotQhBB45ZDx71eJbkMS1/LhFs3zDsXHUpjF2IDQ/XQKI6My89rKDivJyrgzAaG7zoAqMf+z1diK1ySRSDYdRk4jd9Ame8BGs1Wal1ymX2kQNCJQYNdvdzHw6SyX/kcJcZvjYbWEsiBO1WyVoS/kaI54jH+3U5CVvy9O/uNVAiZfquPOLQ3MyN8fv1460mLu7eaG64Nboz6XvlFix68WUVQFEW2wBkokkttPFHdVI39VxshpaLaCCAEBg1/Ikd5pIsPBbozEoEHhwQTJYZPIF8y82ogDGKT+Y4HETIQxH9Php+P1ueYI7vn7NjP36EwfMlEi6D3l03vKZ/KQQf8xn/JT0N59Bxsu2TQ0ixqTB0wSlZDcVBxs0VXy6CrNG3/+aVz10Zn20ZIqRjoO0HBLAZM/qhG2I8I1BnpIJFcjAjjz+zPY/ToDn85SfDSJUODd4V4eHJ9hqNqgbhlc6I2TRLgGnBycT3C5jsSt60HPqHQ9kSI1bOKWAvSUimYvCgGsbh2zqONOrxyInvR8ptNrTz4p2XjMvtFk2y/n6XkyxdRPN25Fjk3BVrUt30zk/ZFIJJK7itLhFn0fz1A/49IakdVTJStj98bh2LfbPySRSO4SBEy/0qA96dPzbJrtv1Zk+ud1mhc97AGDvhcztMc9xr5bXZKoyyxo7Pi1Inrq+pMlqlZsb5E+2dtHZCjMvtEkaEf0PJ1edxVPZ9KnftbF6tIpPJLE7vUxCxpzh1s3VDX1Skb/rsrgF1YurOTOri+pd2qHidWjo5oKzUse7bFbnxw18uMkt/2fzFK4P7YRNi95JIYMIk8QeQK/Ft6d9gAlToxudmlopoqix4mDPxLGr4RXDsndY6PqCuldFiKK76NXCWlP+nQ/lab7qTSloy3m3lg+vlQ1FVI7TdI7LZLbTFRDwasGiBD8eoiiKVi9Ol2ZFJqlkBgwMPM6Iowr38681qB2wpFzs5WQtsDlkffkupDi1E1Ke9zH7jbwZ3SMHllOSSKRSDYb6o6A6FEHDifgL7JE//tYtCqRSCTXg91voGixMKPyYZvZN5twmxOPeeWIyZcWA392/HqR3H0JhIDZX0iB6o0w+q3KnW6CRCKR3PUkhgyKDydJDpuE7YjaSYfqCWdJZlhFBT0ZT+q1lEpQv30WbkWDHV8vollLFxWVD5evYl56p0XtlINXWn7CMPlSDRQ2dDXS5DYTgPHvVWWlcYlEsoiIszBf6apuXnLJ7LcR4xAUIErcsdZtWlI7TPo/ncUrB8z8okH9jLuhx4g7gd4SbHslfvIquzRqO3WylwK2vRUHrurzjnqhLVY27z8W75+4KMWpkrUR6QqT98YVdmZrKQwvpGvOY9toi1x9seezew3q5x3a4x6JAZPQiQgdIYWp8xhZleKjKYJmRHvCx6+HGy6D/0bGmQwY+WaFgU9neeLSJG/uGOBMT4GeRou6Zd7y8xs5jcgXhK2I/k9kSQwYVE+0mXsztj+md1uYXTrOtE/YFqsKUwGqtsWOSo2WYXCpkL+h9mmzCsYFBbWtECUEwbCJtt1DkVEZtxR3OiBsR6R3m0z99E63RiKRSCQSyVaidtIhtdNk4FMZJn9Sx5n0EdHGtp1L7gxRFFc0rJ9zaJyXafIkEsmto37GpXXZo/eFDAOfyTL10zqtcR8RCRoXvQ6/qVcOOfOfZtAsZfkDroHio7FgL39fAgS0J32cSX9NAjXJjaHZKn49JLqOe9267NHaZpAcNLG6dJqXPGrHl48fuC5EXHSh+EiSbb+Sx5kOaJx38eshQTtCT6igKqxV5ZW/P0HPs+mF/wsPJBn/fpXmxVufIMSdDhj5RomBz2ZRDZXt/6DQsc+5/zJL5N89z3xy2KD/U9mFZIBCCBRFwZkKaI+vLhqunXDIH0qQ3hX7NC789xJhazGGZu6tJpn9Nt1PpPDLAbVTS+dPufsSdD+ZQjUU2pM+pcNNGhc8Mnssio8laY36KBpYRR3VVIm82N4/+0aT1piPuIs+K4lkoyDdIJuQ7L0W+fsTcSdvSym/RCKRbFoG/Vic6l//wl8ikUgAyu+1Se+ysLp1Cg8kMTIaEz+4s1WZL/1FiR2/ViR/f4LkkImiK2iWgjPjM/1qg6Aq57FrJWis714p3LKCFHcUOVpKJJLbhhIHPKumgt2rk9pukdpu4kz5TP64RuO8G1fju4rcwVjtVD7aWnfffaP0PJdGs1Rqpx2y++2F7e7M8k6ByBfXFKZ+9PpGpvBIku4nUpSOtNbk+JBIJHc3s282sbp0ij81EJGgdtKh8mEbrxSSZXZNxyh9Z3/Htu4vn+7YFv14W8c2NbW0T51upDv2WS67UNLqdLZvz5Q7tn28eKpjm7ZMOdMPWsMd20482inY+REZVDOefRcfSZIYNhj8vEFzxGPiB9Vlx0AJiF8exf96ESOtYb7aZujHLdK7rYXXrdfamP+3ScyCBr9WXNhe/qDF+K90gbt0xTPbTIMqloiZTLXz5u+yZpb874vO7Pe5hNOxzdI7P3td6Xxuzta6O7ZV23bHtv5MZ5W6gUSnXeJYdaBjW97ML/l/tt35HVGWWeROzHRmZNfNZb5LdmdA6Fij8705o/M+1bzOaz1X7rwnVxNEnZ9DOzA6tvlRZ7bC4+P9HdtUrfOzSdoe2FDLahzblSE755MeEQxPN9FDgb0vgRHG983IaCjXXxhhy2HkNLIHln62kS84/8ezMunJCpz7D08BoEURqhBcjiJeuDjCcxfG+N79O3jpvh3xjkbn8/rgvstL/nfCzhAF8YmxVduQ2mky+OtxH+pVQ8ycRmvUY/rnjYV9qsc7v8srsfdfvEFTg8YnsuxvTlP47+cRAhRNiQPK17E0agwaDH0xR9CO8GsBekrDzeUITKju0ijv0wkTCs3yMpkyjM4TeV3LDLrLGMiE39mXTLUyHdvCYGlHoCSXeeArnX2Vlulcc+3om1vmnNmObaftzj6t5lgd2xS987kReuc9iXLLT0T0bFw1d6OvZTcDW9W2fDORdmqJRCK5+5j8UY3Bz+UY/NziWtKrBEz9vIGzzipmkq1LvZZENVXqp9a3jpBIJJLrIXQEEz+o0ftCmr5PZHAmfBRVubYAVXBDQlJvLsAq6nEi0EBQeGi+uuSIx+SPajJpwy0kdCKMjIaR19aWYO8KLag7GzD27SpGTrtllT/n3mni10MS/QapHWYsYCauajny1+UlYsSVKD6apOvxFADTr9RpT/oUH0nR/6ksF/5k7qZVe10JEcL4d2uxb2zAYOQvywgE/S9msbp19vzjbtzZgOLhOhO7bKxWhG8q1As6obGJKhMJgR4KVEtZ9r5qCYX8fQkKDyVpjXmUDrdAwOAXcrQnvTXHZ7izAZe+UUI1Ffxa1PEsBI2I8pEWZl6j++k0EBdmERGYOY2uJ1JUPmhRere95L2qraCoCmZeo3HexZnyaU8HhE0Zi3o9SFvg8kj73/UhxambkN7nMohAMPNqg97/nexIJRKJZDMSVVT4+0w8q/tyXVZNlUgkN0YIl/+6Airs+NUCqZ0mVo+OO3MHI+qiWKA69OUciX4DEULkRSSHTXZ+vUh70mfie1WiW5/cbNNjDxmwenyeRCKRSG4Q1VQoPJwkd8hGM+ezP4aC9oTP1M/q1E5eO8hZMRRSO+MqQYWHkh1VVW81uXtjJ8/sLxpM/aRTHLJV0FMqvR9Lk9phMfd2M3aESCQSySpEjuDy31Qw8xrJbWbc1x9MELpxJUFnwqd+1sGdDVYNzjCciEwpIFkPMQ7ZsQBmizns9IzKtl/Ko6c0hBDUT7lUP3Con3EQ0h1xTUQQZ6A30hoI0JJLjX3JIZP0bpO+j8dioaAVMf2zOs0RD+gidykgMxkiVEjNRHjtWHxl/t4cSqdOSCLp4N6361ypYf1ImPoRu36zi/o5h8mXtu5cca20Lsf9fmbvokC1PemzjK5fchVGGPLi+Ytc7c5IeAFN+9ZWTdVSKl2PxQFqrTGPsBUx+4sGzUs3blwUIVTea5HZU2Dgs4uCg6AZEjQjvHKIM+VTP7ty5fDCw0mc2YDRb1UW5gfat4bInwvJnw/JXQgZ+cStry5716HC9l8pgALj36ve6dZIJBKJRCLZgogAxr5TxerR0VMqiqaQO2Qz/KUco9+u4EzJLDcSOP7hNiJfxOtLiUQiuU1M/7yBVwmxu3XKH7SofHATq2JeQeO8S2afTeW9FuWjbfS0SmLIoOepNINfzDH+93I9fquwu2Opj55UlxWnqrZC8eEkqe0mWlJFNRW8uZDRb1cW7Fi3NG4hiitk1k7EsRR2r056n0Xl/TZBfW0GV6tbp+vxODF1/ayzkGS7NeqR3mUiwutzxNm9OvkHEqDAzGvNNQtlq6cc8g8m6PtkhsoHbcZ/UCU5bNL1eAq3HGA3I+57Y9HOHqlQ6jWo9JhMD29s219XxeHQuQopJ4B/1E0UCIJmhKKCllAJGiFmXifyBeX32sy93SQ5bNL/yQx+LVx3LMpKCdM/onS4RWLAoO/FxWR7QsTJhmdea3bsP/uLJvWzLvmDCdJ7rAWxvN8IaY/7lI+21nReiURy85Hi1E1G4dEkiqYw/Vq9o3z13UxiOmT07UGEAC0ZUri/QqJf3h+JRLIxiZrAtzJxsMvnmqg9MupFIpHcJKI465SZ1+l+MsXYd+6w8S+Csb9d2gY9q9L/iSyJfoNdv9PNhT8rEa3R+HM30vNsisR+Df7rOt4kRPyz1diK1ySRSDYEig5DX8yTGDCIQkHjrEv9nEvYivAqwarVk/SUytCXc5h5nerxNrXT7m0VpgKMfafCwOdzDH4xx8T3awRbJCukaipY3TpWt06i3yC5zSTyBWPfrdIakRkuJBLJOhCxcNArt6l82CY1bGIWNTRbJb3XInuPjQgFjYse9VMOrQkfsUzlrcGzDv0X5+3Oz2cIWxGNC/P90RZIPJbeZdL78QyKrtC87FE91qZ5Ufa3a2XqZ3Wsok7rcnzPjLzGjl8roChxft2BzywKni79RQnVUOh5IU32m+2Fxyc0QJuPYVR3uTI1r2TNHP5Enr5jPjsmlgZriEigqPGDdEeTmG0wJn9Up3SkhZZQcWeD25J5f7OjCMETo+NLhrtLxQwfblu9mvCNkBg06H46hdWtE7Yixr5ToTV684O9nemAse9UEBGE7QjVUkjtsNBsBatLJ7PXovhoktKRFrWTDiIERYvXLKEjyB20SQ4bzL7eXJK4ws+ozDykUt2lseuHHpnRCJYpnCq5fvL3JdBsldm3GjiTsp+7YbaqbflmIu+PRCKR3LW4MwHuTPx344LL8Jfz9H8qy8hfleWaQsKJY9tonFs5oY1EIpHcCirv3RpB6pU0LnmMf79Kayy2yQSNiPopF28uZOhLOXb+epHgSIR7XwgbW5u36fCqISISJAaM2I551Tiz7at5zIJO/YyDOxeAotD9ZAq737gj/nRnOsCZXp99JrPXImiGzL29aFdTbYXCgwmc6dXjNa4me49N9h4bu0fHq4ZYRR1nMlizeDtsRox9u0rXk0l6n08jQpj8UY0L/20OgNl/PsCOUy3m+k08W6Vr0mPnyTbdkz6mE7FR1SvbJhscOldhLmdxenuW/v/5AlpKRU9pKEpcpVdPa5QOt2iOeIhA0PNMivz9SZojLpM/qt+SeY5fDbn4pyVQQFFBURWEECt+7u50wNR0LJTVkip2r47dZ5DebbH9HxZonHWZO9xaW7Xhux1pC1weeU+uCylO3WTk7rWJfEHt+EYdum4/ZjVix8seTVLzWxTqJ7MMfHaCoKkz93YXRtZn+JdG0e2tEZwpkUg2L5EH/HUWAuDjLdRh6SiXSCQ3l+R2k9CLmPjhxsxKF9QiRr9VIbXbZODTWXb9RpHayTZz7zSJrl2QbkOjZ1WMrIaRVTHSGlpSQ08qaHackU41FVRdQdGUOGBdxD8iFLjlkPoZJ664dMVUNTFk0Pt8GjOv05i79YZkiUQiuRtQVEBlwYit6JB/IAkCEgNxSbKLf1pac8ZMgOy99oJDYu6dJs50QOHBBFVDWRCm3Cw0W6HnuTSRL2ic9/DKAakdJnavEQdFawp2j8Gu3+7qeO/sW03KRzZPlVG7V6f4WJLksImiKkSBwJ0NKB1uUj3uyOAOiURyY0TQHPFojsT/zr7RxMjFVVVzB20Gv5BDRIKwHRG0IoJmhHneodpjkJuNAy+cpEp4sk3oCnb+ZhEjowEwOh7SHNTu1JWtCxGBkVXp/3QWM6fRnvBJ7bAAOPdHs0SrVJGVdBI2I1rNxfHfr4RUP2yTvz+5ZL/aaYfcvTZdj8c+jY/0pwKY263TeypAu6+N/vTmGbsld57AVDm+p7BEnDqXNUmdbWL3GjQuupSPSvvClcTZ02VwyloRgB7FayVfVTk82I+bUtDDkEBb59gXCowmKJFAc0CoYNxj45WDeGz9elw9OgoFqqbQHveY+mmd5iXvlgb9Xy16vVLoqCVVup9O0fNsmuwBm/J7bXqfT6PZKkIIFEWh/H6LyvtLv2eqJ+g77JMZiwgNqA+rMHfLLuGuJDlsIISgfET2cRKJRCKRSG4jUSxS2P4PC/S9mGHi+7U73SLJHWR2JkO5lKFxcWPGaEgkEskNE7FsIkt3NmDkr8rkH0iQTycwzmi4DwX4+6ItkdBzvSSHDXKHEhg5DWUyQPTfuGah+mEbI6NReChJ7qBNezKgdspZEJ66swFmQcfuN5h+tbEQ93C7k2nfCEKACFkiTB38fA7VUhn7+/K6j9f38cUKnMp1PofuXMD4d2toSZXe59IMfDbL7OtNqsfbCE3h4sHUwr7juxNMbre5740aPWMuo9d3yltKtuFx6FyFSwMpTuzKg6KQvnDteBazqNH/qSxGVmP6lTrVY7chqHP+OVhvpdywFdG86NG86DH3dpPsAZvio0l2fr1I+f0Ws7/orL4qkUhuDVKcusnQTIXQubsFlvZchNGKsKoCuxphNAUKoFoR+/7pObyKzoU/2U3jfJr62QyKKnBnLC7+2Q52/94F1LtwwiuRSDYQ38yAp8BTbdS9Nz+7t0QikQhfoOhKLIbfwDTPe0y8VKPvhQz5+5LkDiXwaxHV4+04U9kGnPLqaZXcIZvUDgsjq6HMx919VAXnSoQQEMVBdMIXBK2I0BVEnogFRIaCasWZuxJ9GXqeTUMUB4gr2mIWsNoZh7Efrd/QJpFIJJKlGHmN4S/HDgxn0icKBJEvyO6zl+yXO2hTemd1IYhqKez4ehE9ERsZ5t5pkho26HosdkJYPToX/3vppl6DWdDJ7I3bm7s3LrUjQoEzG2BkNVpjHkEjInvA7nhvcsigfOSmNueW0fVEiuIjSdy5gJlXG7QnfLxKuKT6kEQikdxs/GpItdqOnfw5jUS/gZ5W0ZMqelZj28k2O44vCh7MdoS63SK13VrY5sz6OEVrucPfVpoTCSrHc/Q9OouV71wYCldBTOhEbyXY+RuLYiLFUPDKAXPvtKQw9SZSP+uColB5v0Vym0nv8xmy++OxWoQCRVNoFVUuPm+x7U2X3lMBXlLB/DCBkg9R97ko0pMnWQevPdjLvpEavWWHrppHyxNM/axO85JMeiu5QRSFd4YGuH9ymrzr8tToOAChovDetm4mCulrvzcU2FNgTQhUD+yxaKFK9ALzQWOht2gUrJ92aFzw7kiVh6sJWxFTP65Tea/N4OezDHw6S3vSp3y0jp5UcecCnKnOZKTF0wHp8Yjph3RqOzQiQ5Hi1JtM0IyfGT2rEtQ2oFFZIpFIJBLJliVoRkz+pM7QF3IMfDZL9VibyBdwUYe6CjU1/u0ocV6cCAgVLBVEQkAi/h3lIsLtIaRWO6Nko/LekV0kkw7NDbB2kUgkkttN0IiY/UUT/f+lYb2rk3jDwDwZ4TweEA7ePb6GwsNJup9M4cz4aJaC9pKF9xttuMF8pqEjmPppnbm3mnQ/kyazxyKzx6L0bou5t5tM/rjO3NtNtv1Kgd7n0hhZjfakv6nEqYq6KEjUMypDX4zjOsa/WyWor9/Wc/Y/z5AcMjHyGkZWo3HBo3Hx+uzjYSti4qUaPc+m6Xk2TeHhJBUnwrOXilH0QGC6Ea698UQqhh9y6FyZlq1zcl6YejWKDnpKQ0+pJIcM8g8l8cshl/+6jFfePM8SEdROONRPOwx8Nkd6lyXFqRLJbUS6tDcZzmxAYsBANdnwgoObThSx+yUPq744WRXE2XS9pMK2p2YAMPMBqBH1MxlAofBICREolN8tcuG/7UK1QpKDbXhSOqckEsntJbqkQ0OD/S7qfXdbJy6R3B2oSZXsHovQifCqIV4puO06iuaIR/Yee1ME4zTPe5w/P4c9oNP1WIpEv0HP02m6n0ohfIHfjPDmAlrjHs2LPiKI0BJq/GOpqLaCZqqo1nx1UkNBNVVUk7hSqb5YsVTRiH+rgKqgKLFhKwoEUQCRFxG5gtARhE5cIUnVQEuoGDkNq1tHNRQURUGEAq8aEjSjuJpSM/47qId41RC/Fq1LXJs5YJEaNuPMebpC5EW4swFzbzWva86viPhnq7EVr0kikdwe7AGD7idT6KnY8yMiSO9cXjzU9VgKPaEy/WpjRTHkrt/qQjUWjfbdTyyNGikdvvmVztoTPqUjLYqPxNXXJl6q0R7zCK8SEE39tL6QiTZ/X4KeZ9KxMGajo0D+/gTFR5LMHW7GImHZ90skkjuAXw07nPalv95PqhZgORGpasDgFU7siftNWl0q7UKSumfBVUNA95dPL/nf/t6ejnM+0DXesa0dGh3b+qx6x7ZWZC5t6/k85Q+LzBwtcu6/zl6xNgnI35+IE+MArXGPynsNRCRoT/gLlcUlNxdnKsCZaqCaClpSJQoEqq7gzgXUzzgohkLzgofx7wImgeY+i/5PZgEIXk2jpyK07bGCy4s6o1j+bvrBJf9PtTrFYWmzc2FpqJ3BBG7Y6TIMo85AirZrdmxr2Z3b1GTnQD7b6oy0vfq8Ta/zWLMzmY5tiUzn/MY2O5MBNtud876Htl/o2DbWynVsOzvZ07FNRJ2BG0fYtuT/cJl9gmXuZbTMNkXtvG9R2Llfo7V4Xdmax1NH5micn2D65TpVR1DTYe8/6SE5bDL+vWqceV4iuQH2/J/eAGAGKKdU9JQaz+EfSPCQN03vd8/gTPuc/o9PLr5JCHaWagy8EqIlVPxGiAgE9VEfPamiGAqNsw5+I6I97tP9ZIr0HougHtC44K4pcdDtxp0NuPQXZew+fU3jp3pJp5QweCccgPPxNiVcJtFdovNLKrTO/dA7jY7L7MWlse7O47WWjiNGobMf9Y3OsSBapr2lZrJjm+N1zl1Oj/R1bNOszmvdMdip2L0YdvbB3b1LK5Jd+PMHmal7PH1klsHf7eGVp3rZ8ZsfdLxPsna2qm35ZiLvj0QikUiupDXiMf79Kn0fz5DeNb9O+zGgC8hGkImgJwJVxOIUDcJARWkrKC0FtaqindYw3jQID4T4T/p3ZaW5zczRI7s4emQPz37sOO9FnXNYiUQiuVsQKXCeC/DuCbHf1km9ZOIeDHAfDbf+2KZA8dHkQpVGe8Bg21fzGD+yCJ7yELn5haRLnLCi06yyKkEzYvKlGjOvKmT223Q/mYoTbx9uUfmgTf2cS/5QnOB67DuVhfel91jk708w/t0qkbcxF7RaUiVoR6iWwtAXcqAojP5NOY6/uw5EAM1LHly6SQ0UMPNqg+qxNkNfyvHAq1UqPQbju2xa2diWtvNEC6HAqUcy5Ji8SSe+cVItn8eOz6KHgncOdiHmhalKJMjdZ5PZa2PmNbQrRLWRF1H5oE3p7eam9Sv0Pp8htd2kNSbj9FdD2gKXR96T60OKUzcZpcMthr+cp/BQkrm3Np5D7lay4+ceZl1QG1Rp9Gs4BRU3Bx+VQr1/YNEZ1f3EHHPvdGHkXboemUM1wSubNEdSUNfxZm20Qh19vxx0JBLJbeSD+QpGD26CwHCJRLIu8g8mKDyUQLPVJVU0hRBEf+Pi5hXqwyq1XSrot9bi5kz65O5NYHXpBLXNMddxJgLG/q4KQPaARWqXhVnUMTIaZl6Lq8R9bG3HEmJ+ZShACCASiGheiOoLRCgQQbyfasSCVs1S0JN6LFxVOiuhCiEImhHNCx7VE22cyZsbtV0/5VI/JccGiUQiuRUoOmz7an7JtonvV8nea9P7/HxlnnZEe8pHMxUSgya5Qwlm32yu6JxxZnySgybtSZ+wHWHkNMycRvOSx+wbjet2lKzG3FtN9KRK9h6bgU9nqZ5oUz7a7sx8On/6yvttKu+3Ow+0gVA0yOyzyT+QwCxolN9vSWGqRCLZcISGQqIRsudYp02++4yP8YGgNqBx+qCBb6sgBLonCIzl5CK3ltSeBuV3iqi6Qu/zaaZ/3sDIawhfUHg4jniYfatJ+cjd5V+4k2TvjQNFFE2h8kGbyodtwubycwWvND+mKwLtkIM63Cm2lEiupm3H7t70bov0bovpV+pL56OqAqGcXEluHkEzWqhWOfXTOsNf0RieX3dtP3mRmm1xtieP7QccnJyjesGl8kF71Sz7s280mX1j42Wyt3p00rtMRACVD9tEnqB1eW39s+WH1O1O0abk5tHImJzdmWbvxQZPvTPDxJ1ukEQikUgkkruO5kWPC38yh5ZQUU2FsB0Rtte+BlNNhewBm+4whfODkInv1xhd9V2dCcyupu/17IqvP5RZ/SxXJ0W7mtBaOfbBUFZXNNQCe+VziNVDnJv+8glJF85hrPw6wJHWzhVf9xKdScMuvD3EmZd3sv2RcZKPlQEpTpVIJHcvU08vTSiVu8+mJ0rT/FOPuTdje0/w/c5kWleiaav72Hd3dSa4upJIrO6XqfiJFV8fr6w8hgIkv7N/4W/di1B/WKX6612U/u9DAFj/lxF6P5Yh+n2diR/WyD+QoPBA7KOJvIjLf1shXTq/ok+88f3dy26vArPVkO6LPt2WSv6FDIa/eKChL+Up5w2qOYP+800UTWHgc1ka51xqp5wNl6xUs1T07Ra9/7wfvIi3Humi/UvDHfvt/LX3b/hcj7678jN2+OFrz228csjot6vkDtoUdln0jnn49RC/HpIcNJl7q0nuP07fcBtvFnt/+12Gv5pHsxXG/r5KnzdNbyTQkyr9n8xiPZOmedGjfNFdsPd+VJxDbOx6KCujQvaeeH5Zkr5QieS2IsWpm4yPgg21xFZPI7IU1YlIzAnaXQpjz6xuLOh6vEzX4+Ul24a/PE7gqJz/w92IANTsZh45JZK7lADsd1Ws0yr+oKD14uZJyxL9OAmTOvQHqDnZ/0gkWwnVJq70GQiaFzxqpxwUXcHIqlhdOon7bBKzguRsSO/RkNCExrDKzMPaQpKNm0noxH2Mntqc88XaKZfalUJNHVLbTZIDBigQeYLIE4RuROgKIif+HbTjv9dTsfRaqCboWR3hR/iNKM5at5kQbE1Bz1a8JolEcstJbY8DJ2qnnbii6HxfUj3mxMkcunXakz4TP4idZek9Fs6U3ylMVUFRwerWKT6cJDkYH3fqZ3X8yu0dKKZ+Vsfs1rC7DXL3JvDK4YYXoC6HllTJH7LJHUyg2grNix5TP63jzmwwb5hEIpGoMHS2zfC5NpUunZEDSRKNkH3vx8EUXlLBcATZiZDHJqpL3jq53VxDqODNwa/rzL3aTePcYuVMzVbJ7LXo/9RiIMXkT2rUT8vkOLcLI6/R90IGrxww+ndVwlZEcrtJ4pBB0IponHOIXAEKpHZapHfGcwyl30d/WjrNJWvDN1V++mwfL742BcRZwUUUz2fn3moifLmgltw6RACXv1UhMWCgJ1WCrw0yXGlghiET2RS+qjL9cuNON/O60WyFbb+UR5mvYqroCnNvrV1AO5lLMlzevNe/WbiwI0vCCRmebDP81Ryjf1td/U2S5dmqtuWbibw/EolEIlkGEULQuD5HdeQJKh+0CVoRA5/OYnZpeHObzUF99zF+rIczL+9k91OX2fPMCMrtz1EnkUgkG5rqhw6KqtDzTBqvHGxpv0RgqpR7DQbOOUztikVxtVMOiSGTzB6LXb/VRdCOCNoRekJFNVV2/MMizrTP+A9q10xmuRJOTmP0QY0LPRl6px3aCZ3JAZtH3y6RrQcUKj6Fig+aQuhGJAdNkoMmfi2idXljFbtojXoUd8bakMMPFWknb6+8yTtpE9U11FwIirfiut+vhsy+3mT2zSbpXRZWl46RUakejxOTXo3dp+M3ouv6jG8GigF6WmPoSznM/OJ99eshl79VwZ3egrEZEXjVEL8S0B6TCWBXRdoCl0fek+tCilM3EaldJgOfyiKEoHbaudPNuS2oXkT3iZD8hXjwm7r/xjLLVo9nEYFK5kANrz8+pve9DGJ0/rg6qNtdtCfbqGkpHpNINgqRB/ZhFeuEihLF1jy1uXlG/sgDLhhxnffugOisAT0hZCKoqvCBxcu1R0gVWhx64Rx2Wk6IJZLNhNVtoCgKleMtZl9fJnD0X+YgikhfFmRHQuw5Qf58hFkTjL24QqbRCFJHwR2CoG/t7WlP+Agh6HoshTsb3PQqn7edAJrnPZrnb59hLPLAm93k900ikUgkQBwQ8hGapaCaykIVqfEfVNn1m10YmcVs141zi04xPaPS/VR6Icj6apwZ/7YJU9N7LAoPJfBKIaV3W5SPtBj4TA5g0wlTrR6d/P0JMnssRCionnSofti+ZdVmJRKJ5EZRTYUdp+O+dnK7TSOnYTqLfVaqdO3+K1sOaGhxNcPMXguzS+dsKaBVvDHXjBCAqyBcBSeyCdsqE9+Js3EXn5jj4p+kyB6wSe+ySO+yaE/6BI0QvxZRP7N1A0A2IkEjxJn2sXsNdv9OF86Mj91j4DdCjLRG73NpRCiIQoFmqkRBbPNUB+WaVLI+fENl4gdVBj4bzxGrx9q0x30aFzZWoJFkizI/FKqmQsbxaBk67w73cnBijrq9cqWljY6IQIRiQZzqzq7Pf5PwAmqJW3cPMk0Pz1TxTBn2cfxAAcsN6QF2/W4Xl/58LvbPSSQSiUQikWwSGhdcgnYsUNUsFUVXCBohQTPCb4QEjbialTPp45WlePVO4jYMTv5kNwMHp9n77Midbo5EIpFsWCrvtzELGr0vZHDnAtae7mvzEWkQXFFRXIQw+VKNygc6qe0W5aOthQTZZkHDLOp0P51i8DNZLv9NBT2joiis22feyBo0sovaiks7U+w/VUcNI4wQIl+AgPakT/2MQ2t04xlLKu+3ee9f7kUosFy2B92PyNU8ULglgjHn51nig0PPc21mXllDorkoji25Mr7kSoy8Rs8zaVLbTbxqSOmdJokhA3c2oHnBI7hNYtW5t1rk7rEJWhGlw3Fcq4igedFdEkuz1fArAagyc4hEcruRXopNRO/HMqDA2N9VcCbiwIRfzb2z5vf/pHVgzft60dofDVVZ3wD5ld731rRf9VKK03+3F0VAqMH4IZNq3oJrxGT06LVVj5l7oMHcG93UT2XYu/0igatxcbQLRYso7KxSn0jjn7eIzlv0Hpxj76cvoqowF6ZXPfZHpLW1C4cNZX0juy+01Xea54Lbs47j3rrKamUnueZ9J63s6jvNM9IsrqsdwS26xqMzg+va/1D35Jr3rbqJNe97arZ3Xe1YD6a+9uc0Za594ZIx1vZdiZoQ/VkeGwVhRghVoDgq4n6X1DXaVnKveO6iCLMMXg7QO5+D2VZqzW1uuesLIJhOZxb+7rnHpfdUgPKhvbBNsLheKism5ckMoyf7aD0b4O++9nFLztrbDFB3Vq84/RGWsTEC39L22gMl+1Nrr0Ey017fvSvV176/WMfCN5Vc+/U12+t77noya8/Cbmlr/7xVZX0r+0isfXE35679Pr8XbVvzvkv6gjWQNdcxhv/EIH0OsmcijFr8PW7+XzMY+VzHvv7HRwFozP8AbPtanoTQ0X9pnKC+dC5VJa7cufM3utBsFftoxPn/OrdsO1QbUtsszKKGkdbQUiqaHfd1mq0y/JU8Z/9/s2u+LsnWQBECZT2d0iZhK16TRCK59TQvxVXNswdssvvjufjUz+qktpvMvN7g/B/NouhL5y12v0Hv82msruVtI+WjLdK7LeweAz2l3hbHQf6Qjd1jYPcYZA8srilm39gcFXisXp3cAZvEsImZ0/BrIbNvNqmddDqr1EokEskGI3IE7z+TZdexJve82yDUIFqjQzNZj9j7v15qp01VIuymT7oUML3LxMmuYPMVoNRBbSukvm/iZHSUZEQ0q0MYt2GURTupUfDIPVhh6n8VMfdOEzOnoSVVGmddhMwBcEcQAVz+mwr7/jfxc6CnNSrH2zQvuJh5DT2jYWQ1rG6dxrk2uXtjm7D24OZKPiHZGDhXVKBvT0hhquT2kd5jMfDpeR+f43F0qIeM49HTbHNkuJfMym/f0ESeYOSvyqR2xske1lNNQEuq5ByP2g0KdHdNVtgzVcMM4sE8UuDDHQUSXsj+8RoCuNCf4eTOwg2dZyvw7gPdPPofztD1WIr8A0lK78gq5Otlq9qWbyby/kgkEonklhHBxA9rFB5M4Fc8glaEnlbRUxpmQSc5rKKn1IX9mpfkmu9OMXW6mzBUuefF83e6KRKJRLLhmXmlgd1r0PfxDOVIbFnBWGAqmLMRiXpI+4rk2M5kZ2EJrxzilUNCJ2L4y3l2/kYRPa0iQrj4p3OErrhuEeZMn81Mnw1C0D3jsufvpkluM1G02Ga8UasBims8F8lmwGNH57C8iNEBg/b4zS/8ow15KDro21zyZKkdd3DnbiyOuu/FDIk+g8qHbXIHbfo/mSXyBZl90PWYoHrCiQXL7q39QFojHq2Ru2vOqBoKqR1xzPzwL+eZebWBO7Mx4uI3ItIWuDzynlwfUpy6mRCC0BW0x++ODnLirX4UARcet6kO3VjF1I8w7YjdHx/h3I93cvalXQvbNSPk4FfOAVCfSvDenx1i+ng37ZLNg79+ctXjBi2VoKVjZj3UzZ0AWCLZeMzrKgWC4Att9G8nEbpAcRXUv0mg1FUIiUc0WyAyEV2JAL0NVlmgtRcFoHMPCmr3rF3kfTOZOWgxc4+B2YREOcSuRphNgZ9QKO006B2qoU1B+kc6yVd1mmZAMHxHmiqRSK6BdQrSh1WCPBTLEWoEQgG3C+YeVQnya0+EMP1yg22/kmfHrxWpHm/HgU1zAUE1QrVhx68WUS2F1qhHcthk528U8coBQVtgFjSMTCxCVa4wzAgRG6ZECKEjCOoBc+9s5ZxzEolEIpGsjamf1ZcIOvs+HodG1xcyWc4bFdW4st3Ap5YmTqqebOPOhvjVkKAVErYFhYfiJBh9L2YY+071ll9D6d0WQ4OLBoeZXzTWHRh9p7D7DYa/kiNoRDQvecxc9mhd9jas40sikUiWI/E755gEattMzIKGooKiKugZFSOnMfNKA78WYhZ1tn9tZWHI9g8WEyN1X/Dw5kKcqoFfDeKAgwV80jtMElf0/6KuUTvi48y4BPWQ0BWETkToCCInQkRw/N/H41hQjzqSIUnuEAIu/OkcmX023U+kyB9MkD/YmZgwd28CZ85H+HBfeqrj9QPJzsSHb9d2Lfl/MNk5L8nrncKcl6f2dmxbLjGZF3baUvVlEgamzc5EbG+M7+jcb5mEdAVrafseKV7u2Ge2uzOB6Eiz87s2Ve/czzA62zvjdu4301xb8jQRdgbJRFfdOsfr9Gk5jc4EgsLvtCUli52fVybRed9yXzi75P/Bz2dJ/VbXwv/5B5I0zt9dQSdXc/q/PNaxbf8/XnvSX8nayB2y6XkuTe2Mw/TP62i2Sk++wsDnc9QvumR+/9idbuIN49ciKu+vnjTg9P/yxMLfPbUWD4/MEImIszuyKMnFvmi5uJYlRSGiCNuL6K002T9axwwiAlWhlDEJDZWuisP9l8qMDMT9lgLsmqyza7KOY2oc25VnKtvZzynB6sGfVlfndbpVu2NbtdqZGFLVOi9MMzvnIoNda1xDe8sknL2cX3rOdGdAYmvUo+ux1LoSikokEolEIpFsFJwJn4mJa4suFA2GvpRn8PM5miMuEz+sITa+m2DL0SglSBXbGPYWLjkmkUgkNwkRxf76bb+cp/esx/T+tRda2UyMHkiQmwkYOt3m7KNrK4jVHovHfCMbJ3c2shq7f68bEQnc2YCpSz6l7fqy1URXRVGY7bVJfK+G1aMz/NU8O361yKVvlPBKm2D8EoLto032naujztt4QvfW+LwUQyA8BeOeNq2fZkjtMm9YnOqVAhJ9Bs60j1cK6H4mzeVvlglaET1Ppyk+nEQEYqGaqeTmoSVjm6JfC0n0GZhFTYpTJZLbhBSnbiL8aojdb5B/ILEmB9hmJz3QpDGWRgvW7jmKAlBXeaoHHpjFyrhEvgaKQFEh07co3Mj0tUERIBRUIyJaYS7THEsw9t0hwrbGRyXd43T2oGgCVY9QzfhHURevQ7Uihj4/BlLIKpGsiqoDT7cJX0+gfyuJGApRxjT0N2yEIiAtEJZAcRRoKyh1jRwCAUQ6OD3gdKvkTkcUP4yo7VdAXV1AlqgGDJx1SVVDDDdCvWI9FmoKTkKlkdap5wwUAWPb7NWPq6p4GfAyKsu53sM+qH01IPstndRPdapfC2B9hR8lEsktwjwP6bdUFBT0OYHQofSAsuY+5WrcmYCJH9bofzFD4YEkhQfi7eKKiJm5t5qU320z/NUcVo9BMmOiKAoiioOPnZkAdy7AmfBpT/kENRl0LJFIJBJJBwoMfmGxsrlfD6keb1M94RA5S+0NfS9kFkSstdNxYLUIIXvAou/FpYLVj5h57fZULnWmA0rvtrC6dFLbTXqeSTPzeoPIE/iVjec80hIKmb02Vq9OctjEnQ24/DcVKUiVSCSbntZlj1anbm4BdybgzO/PoNkK6b02vc8tBiDMvN6gfsYlvdukecEDBdK7LIy8hpnTsPfbqMbSAAPNitebrXGPyvttmhfvbqHZZiaoR/jlRed36EaMfKNMcrtJ3wuLNQV1W6U1e/Mzf0u2Hj3Pp0n0Gcy93aR5yevoPySd5Bsu6T0WVpeOmFcUNy95KBp4pZDIk5PV9aBnVDL7bLoeS1I95jDzarw2CpoRfR/PIALB1I/rd7iVdwghODQ+RzVh8u69Xfj6NZKmRhFPnJoh5QRU0yahotBfbqNFYsHrHClwbjDNqe05UFVUTTA83uC+cxV65+KEFwKYLtjoQUSh4fHoqTnK6TonhwuUU+Z12a83M8r85XY9lqQ95nVUJ5FIJBKJRCLZzIgQRr9dIbXDpP9TWXb+Rhez8zYnyW1EKKiqjM+QSCSSteLOBJTfa9OvK1QHdNzMnSkwcysJTJV2RiNTDtC9tY8Rl75RAmIRb+/H0vjVEK8Ukr3XZse7Dn4iQb33xuQ+IhA4kz7JYRMjp20Kcer2y00OnKtzcVuKZDugd9Ylu8+m3GwROjfHjhu1FZyXswQXbazH6/inE6iGgle6cVvSR7bmoBnRHvOpnnDIP5Cg+FAS1VIQQtC6BVVgJbHe6uwfzKCnVHb+RhdBQ87ZJJLbhRSnbiJmXm+y7at5ep5Jk73HZuQb5TvdpFuKW4mVm9vedSle8rn0aAI/teg8y4779J3xsJoRagCvRo/GLyhgZV2GHp5i8OGZZY9d3LWyM/TQL5/m5Hf2UL2c5Y3/5WGSQy2sHpfIUwnbGl7FxKuYRJ4KCmT21DHzHkFbJ2jqhI5G6Krx/o5G0NSXZmeNFM794R70bDyBURMhZrdLYtAhsbN1t/kIJZJVUe9z8XQV/RWbcFuAOOSBp8D2cNmRbGw2R2SxxOEeWtB9NKLnrYiZp679JTNaEfvfbpCcF3lFKgSWQjutEgkFRYDlRqQaIel6yMBEbOBVhGB059qy66+ESEPjkwHpl3RSr2k0P73xF4ISyVZHaUH2tdgo1joU4uyHmmHccFBP84LHuQtzmF0aVreOmdcwshqKrlB+t7UQNDP6t1fI2XVAxtJIViOa/9lqbMVrkkgktwXNXgzUD5oRZkGn56k09bMO7UkfotjZUz3pLIhTE4MGufsSiEBQO+1iZJvk70+gmiqhGzHxgxrtCf+2iS0jVzD3ZhPVVLB7ddK7LbqfStHzdJrQjZh7q0n1mLP6gW4RxceSpHdZeOUAu89AT6kIAe50QP2MQ+W9thSmSiSSu4rQETQvulS7NcJmRHsyiKtGA9UPF/vrygdbPwmlZJHGJQ8hBIqiUDrcIrPPInuPjV8LcWYDEgM6IoyTVUkkq5HaYWKkNQY/n6M96TP7RoPuJxUSA3HV1uaIFLNfye6JKveOVuDTWUI3WhD/dz22aNO/9BclvLK0x6+V7AF74f7Nvt4AFbL7bQoPJzFzGuWjLcRdasvZN1Uh6QUc2d67IEwtVB0G51oIBTxNQYugt9om0w4IFegvtVEAV1eZzts4pk49pTPWk+ywQ48OphmeapJt+DiGyqkdecZ6489CDyIePTFDse7xzMkpBDBZSHBkb+9tvgt3jvZ4QOlIk+IjKYqPJBn/bu1ON2lzsVVtyzcTeX8kEolEcqcR0LzoMfKNEl1Ppuh7MYNXCm+4wpdk7ShqRBTKAE+JRCJZD6V3miSfS7H9XYczzyevrxroBmdyp8W9b/rkp/01Lx2vFIqOfTuOEdQSCj3PxslP82PBNcWpaiAYutwiUkGNQAsFaiTi36HA8AXdv11ET2lEgaB2yqG9SQSRey/EOo+5osXFdJpGqskONyK53eTyN8s3pXJ8cNkiuBjHh5gPtginDKJAkL03QeP8jdnX8/cl4t+HEnQ9nkJLqJg5jcZ5l9aYR3vcl7boW4gIWbBNG2mVa3ljk8MGdr9B5Arq51zC1l1o9JG2wOWR9+S6kOLUTYQ7HXD2D2bpezFDZr/F4BeWr9qxVdj5mRGOa33kJgJSpYiDLzVx0wpeQiVZDdG9OK4xsBSctMJQV4nA0alPpHGrNpMf9lxTnLoahR11nvxnRxl7p5/Rd/ppXEzTuPhR9vK4MqqeDEgOtuj7+BRmdn2znLnDBWbe7MGrGPMbTJzRJLWjgBaR2t2k67lZ9JTs2SSSjxDF+PugtBXEwZW/G1Gi0wBYO6CRPReRuSRITPvMPKbRHrxivyBix3GH3kvzgYI9OhfvS+ClF7M0tdyl5Y51L+Lpl2fRImikb96QGg5AlAR9dustwCWSzYiwwe8V6NOQPKaROCbIWRFuQaB5AtUFr6BQ363g9LNu0ao3F+LNrdHYIP1JEolEIpGsDwGX/7qCUdTofTaNkdNQtLgSXfYee2G3se9UaI36TP64Rv8nsxhpjZ6nY4dP7/OL1cy8asj496q3rFqpasaOpigQeKWA+lmXyI1VnfkHEwttapx3mfpxncJDSaxund7nM9ROOTfFCdPRJktBNRWC+rXXYXpCxerSsbridVHp3Rblo62FtkskEsndSNCImP7Z7amwLdkkRDDzaoOuJ1L0PBOP6W4pYOrndexuncxui9qIQ9CUfgHJymheRPOitxDgkug32PZLBRoXXZxZH7vboPuJFJEb3dEEJrcSI6uSvTeBnlRpXHRpXvAwixrJbSZ6WsWdCSjWHUw/wvIDDoxWuNCbwfyvl+l6MoVSUFD1Rfu7OxsQ3I2BJzdA5f026d0WZkEj/2CS3L02elqlcd5j4ofVtds7txhdjTb7piuc7ivQsA32Xi4zNNsi6QZc7fERwGzG4s2DfVh+gOlHNFJX+KHUa6+n3ni4b+HvKLwiIZOu8ub9fZjNiJ1TdbbNNugvt3n0zDR13STtBmRcDwEcTRVoJ7dmuIj/0ViqKCg6t2StLJFIJBKJRHKn8WsRkz+us/1rOn2fzDD10zrujJz43A5UTSyZh0skEolkdUQIlx+x2ftKm+7zPrN7zNXftMnQ/diW005pWNfz/ozK4OdyRG5s13CTCk5maRyi7kYMnPDovrhUZBqqEKkKoaYQaQrh/N/1My6tUY/2pL+p7CNzRYveWZf9Z2u88UQPF3ak6f9FieSQiZnXcWdv/GLCsfgZ1AY8UAEVvFJAot+44WM3L3kkBg1UU8GvhjiTPk0Nyu+2704B5B0gN+8/sXoNOOV2vF58NEnX4ymCVoSeVOl5Ns2F/z4nK61KJDfA1vQ2bHGmflrHyMUO1g/f3cF9D1+6001aGx6YJZiZLIIqyO2oY2auPTnQTJi612LqXgu7GjD8vkuqFGE1QiId6j0ac9sNnLSCU9D5zK63eOs/37/w/tzQytVRV0NVYdsTk2x7YpIZN41bstASIXoquOHKpl2Plul6tIwbLU5gvLJO82ya2gc5mmfSNM+kMbs8Cs/MkdohM+hLJOrpeMgSiesPbh79nEb34YjMBUH/KyGRETKsVlFDgRYQZ6W2Fc48lqJVWH2IDEyVYw/kuO+9Kg8eqeIkVE7dm6HSfT1Ly6tQkZWFJJKNggrVz0YQgXkZrHMK+oxCYjJOWCFUSI4KUqMCoYCfiQhtBa0tUCJoPJNi7q3mpjLwSDY3ihAoYusNIlvxmiQSye1BUWHH1wooWhwoELkCI6st2WfoS3kA2lPXzhQ6/Wqd2smbLwA1siqqoeLXQnb+RhHNXjQ6qJZK+UiLrseTFB9drOqU3m2R3r103bH3n/RQPtqi9O7NFYX2fixNZo+NXw8Z+esykScwMhqKGot1iWD6tQZeLSSzx8LuNQjbkRSmSiQSiUSyDNVjDtXjDqltJn49xCuHJIYMup+Kx/nk8I0HPUi2Lrobse/NFqlKCPOBFVeS3rl0ftj9VHpLilNTO0z6P50l8gVBM2TwQI7x71UpPJxcEjjUf3IKgGA+EOvktgIff6yE3WMw91aT6kmHsBVJ4dp1EnmCqZ/U6f90huLDSRoXXMrvtu76jP87Z6rUbJOzPVk+deIyVhgRAVMFm2M7iwgFTC/C11QcU11IdOiZOt5NjMl0TZ1T2wpc6s3w9MlJ+ipt+mkjgEhRUIXgsffneOWpvlWPtRlxxj1EJEhtM9nzj7sRgaB20mHmNVmdfDW2qm35ZiLvj0QikUg2FFEcSzr4hRzbv1agNeYx+aMaYVsw9fTKFeR/wOqFUZ55b+WqYW60cmzVRbdr1XM0g5Unwv32ytcB8FBxdMXXg2j1YM9WtHI7TjhDC39XRAo3MJZsA3jo3ZXPcfThVZshkUgkWxq3R6WyXafvrEdljwbqUqH/7q65VY8RiZWTA4xU8qse44zbs+LrXmt1O72f0Dq2tS2DbVab3YdbTGXUFZM/L4fdaywkg557p0npnRYA6fnX9bTKrt9aHFtn32pi5jRKh5v4tVXOpcRxE1avgZnTUHSWJMq+0+z8tfeX/F8Fuv5RFxkCdv3m+3Q/nSZ5KIFXDfHK12/MPfzw4pwgtcNj8PMJwgmT2X/fhdWlo1ohUz9dfe6xGhM/vPFjbFayB2y0lIoC1M446/4e3Czs+YrDc28ttQdavTp2j07h4STloy0aF12Gv5JHURWsbp2gcWNVczcb0ha4PPKeXB9SnLpJGf27Crt/t4uf/+BB6tUkT3/8xJ1u0rIkzkDuXVDmRV8Al9g2/5cAFayMx72/cRrduvbg4+R0zj6vozsRw+855CZDMjPxjwBqfRrsAivl49VN+h+YYcdzYzftOlQdEr2dWRNuJmYhwHy8QuHxCs6ExdxrXbiTNlN/N4hqh2Tvq5J6tIYqv7WSzUAUYVcEybkIe77ScaSB0CDSFCINwowNhkDRADOKRyRDLP6YgBGBCeInKdQLBiIZIe65gSgRVWX2cZXSgxFdRyIS0wIlhMBQaOY0ZrYblIbXJywt9Vq88XyR/ccbdM16PHikytSAxcn7c9ffzCqoDYhycnIjkWwoVPB2gLdD0PCXDshqOyJzRpAaExg1MGoCoQECCg8kyd5jM/KNssysJJFIJBLJHcDIawhiu4RXDhYcOgDn/nAWu8+g78UMekIl0WfgzsX7zL7RoHz01iWL0jMqg5/PYRU7F/rTL9fJ3Zeg6/EkuYM2RlqjccGlecmj7+OZjv39RoiR1ig8lKTwUJKzfzCDuEkx4XNvNsnssTEyGnt+r3vZffx6iJFZdMB5pWBJkH/xkSSFhxLMvd2i8oFMwCWRSCSSO0/q5c7gk+bHZm7PyQU0R2LntlnQGP5yHoDSkebCOPnV9KmOtznLmAqvDsQ53hrs2OdwaXvHtgP56Y5tz+dPd2w71hrq2Pb69K6ObX12Z7LQi6LYsW2umurYpipLL+xL3e917KMlOy/+L93HOrYNZjsDPvJW59yj5tkd22yj0+7c1DsnVMtZpyuVpdfV09V5PwrpVse28YlCxzbf65wbNuY/Zi2ISFWWHltogugBD6Wp0vxeBJEgtdNCNRTG/r66TGs3Nu0fdD5fk6UsSiRItgMiVeGZd2ao9OqcezhFpMKTf1+h98s51BCqKYPxviQD0y38H5Qxixq5exIIIfj4d85hdeuEXkTlwzaRFz9XUph6/bizAZf+vLzu953540c6tu373SM3o0l3lEO1KfrrcZ/z+WOXUAWcH05zemeGKzMf+/MB/PGWeXvxMn28WCbYcrnqTMoyFVYVM+6/PFPh548PoPsRthfQsnQiXeX+0yWGZ1p8/LUJAl0h1FQiTUGz4yTRoaUwe0AnSKucL3f2mcLtDMCMzM4+U3jLBGr6nQGeirLMDTCWsaVfdf17f3v56H+vHHH2v8yS3mWR2W2R2mWSuy9B9Xgbryxt9BKJRCIhHojlkCDZIrizARf++xypYZPeF9Ls+PUi1eMOlfdlZa5bhaIJRHCD1U0kEonkLmVur05hJCA7EVIb2loB8Z6l8dZDXTz2Xonhr+YZ+04Vv7J2p/1HFVPr51wiL46tvtLnH7qCKBCoemwfqc0n37sWyWGD/ANJEgMGqtFpUwrbEY3zG1OIp1oKmqUuXG92n8Xc201Khzvt7NdL85JHa9QjOWwSNENm32jSurwx78dmQU+r9L24GM/S9USKse9UaI1eO0n8rSC5zSA5GCceUU0FBFjdOqqpMPi5OLbfqwTUTjls+5UC7Umf6Zcb6/q+SiSSTrbWqH43EcLIN8rc808yHHljHw8+eo7RkR7GRrppNiz2Hxxj/6HVxZm1M2n8ukHuQBU1Ed1wRVAAcxwyH4JRBiWMxWhuL4RpCLLw8NAFolClfjlNaypBezbBue/s5MDXzq984CDi3peaqCF4SYXyNgMvodB10Sc3FXLsb/YRuBoosPeTIzd+IXcQe8Bl6B+MEzgq5deLNE5lqLxTpHK4gL2tTf75EkZeesslt4Ao4ro6gihi1wdtCtMemg9KtChIv9KdfOXyRpDoeH0lRFdI+MX2R976GyIyVWaeig802+oMiFovnq1Tzet0zXooQK5yYxPp1E/i4bn5MTnRlUg2C1FCpfoAVB/ofC3xz0r0fizDtl/Oc+FPSre/cZK7D8HWrL69Fa9JItmEFB5O0v1kisgXTP2sTuPcrU3kdKNk9lv0fyLO/i3CuGJq5VgbdzYg8gTpnRZ9L2YQ0WInM/dOk+aFW+90KD6URLNVxr5bJWxHDH0pR+QKnBmf3o9lGP9+FT2lktkTJ9CZfb2BX4uonYqrrWUO2AuvXfofJfRkLHY1Czr5BxKU3705IlC/FnH2D2bofjpNfpkKXcASYSosVqKdea1BZl9cTRVig79EIpFIJJJFel9YdNKXjy6K5SSS5Qh1lXeeKnDf0Sq2EwcdKaGCetog+EqbyX8xH5ij1lE0BeFv/ufJaEc8cKxET8lBm4+z8jWF8w+miLTY4zCxy2LggkvT1jhyqAvX0rg0lGbPfxgnf388f1UUBbOoEQWCiR9U5Xdti6JnVLqfSuHOhVTeb9124XH/hEPbVgnnn83JAZuzg9efyPRmEhgqDWOxEtQHe/NoakRXycX0BYoXoAhQ5jX+CpCeCDn7peXXgBuRnufT6EkVLaGgWiqaqaAaCoqhoCgKkRcRNKU4Y1W2qm35ZiLvj0SyuVAhtd3E7osD8hUN7D4Dq6jTvORSPenEAf+RQEQQuhHenIzTkGxCojgR1shflsk/kCR3yCZ/KMHcW00qH7bl+HWTMYo+UVvDr+gyhlMikUjWiZPXcFMKydLWE6cCOAmdtx/u4vlXptj59SIX/nRuzZUj3bkAvxaS2WOR2WPR80yac384i1XU6ftEBj25NHg6f3+CuTebHcexenS6n0yRHDZxpnzK77XoemwxTtqvhZTebW1YYSpA/r4EkRdx+VsVup9Oo5oqrdGb396pn9dRTUWuAW4SIownnR8lVwfoeS7Npf+x/gSHN9SOK75yu36za9l9Rr9VIbXDRDUUJl+qEbYFWkJhx68VqZ9zmXmlcZtae4eRtsDlkffkuth6o/pdgp5WyR20CQIVUPjD/+/nuFL21aglVxWnVo5lmfjxAKAw/Wrf/Nb4m6RoIF5ow651DLYBdL8Ui1IBwhR4PVB5jLgC4jzF3tir1X1PBYAT/2Mv9csZDv/P92OkfeyCi2aEoMD2ZhsU0D1Bai5EDeHyQxalnYsHLO002ftyEy7Gzr1UT+dEa7Oi2xE9L87S8+IstRNpym8XcUYSTP7pEHrOJ/tEldT+m3i9NdB+mkApq/GjkBAEH3NgcOM76vRqhDUNemVeGGTJ7GTrQfciDr5bI1teNJgFuoJvKnHlP2Chj1EgUsFNqjRzGo28Tt8ll+5xn8AAN6PgpVTcrEKzqNEuqkTm/OcRRagBqB4cTE+Cp0CgzP8GfDUOFvDn/w+UOAtyISS8bwM/h1HErnMtQk3hg4dzVIvm6u9Z9jiQ+Rsdrang7YiIOhPnSySSTUjthEtiwCSzz8Ls0qQxQyKRSCSbGq8UrxlUQ8Hu0Te8OLU1tpg4RtEULv55Cb8aj8VGTmPnr8cVvRQ1Xu/Mvtmkden2OGFCT6Dq0JqvnFY63KLnmTRGVltob/WYQ/WYs/SN89XWmiMeky8tbvZrEZf+okxym4k7d3ODIUQIM682mHl1qQE+td3E6tWJfEFyyEDRFeqnXBKDBtkDNj3Pphf2bY17zC7jHJNIJBKJ5G5m4vtVEoMGvS9k2P6rBcJmRGvcRwhQOhOZSyQ0sgZvfKybZxMX0Q6bqKM6SlPF+PMUuUMR1eMORCxJvrJZSZRDdv2iTYDK2Z1Z6mmDhBNQzpkYV1S6HTmYwElpTBgpXCueS6daPrt+uws9odIccRERNM671E9v7PWL5MZIbTfJ7LHJ7AFFhdI7N6+SwloIdYVyweTMvYuJB9ioj5yqcuxQvmPzUDGuuHzPX7UR6uYZiPo/nSGzJ67wKiKBCAVRAEFb4I35NC661E9t1A9DIpFIJDcTzVYQEUS+ILPPouvxFEZGw6+HhE4EAtyZgNpJh/z9CQY/25lI4tJflqQ/V7JpCR3B3FtNykdbdD2RoufZNOm9FjOvNnBnpIjyZmHvbKOlAma/20vu8SqJPU0UGaookUgka8ZPKujtzW+/vBaupVE93qbwQJLio0mmf7Y2kVvYFlz8sxKKDnv/SQ8Ae/5RN0E7Qk+o1E47uLPxeO5Vwg6xZpy4Lb2Q4NqdDXBLAVZXLBcqf9Ci8n57zWLZO0lmv4Vqqgx8Joue1pj8UQ1n6ubPZTbDvdhMfFSh10hrtMY92uP+HUkU2R7zOfP7MySHDZLbTUQAtVMOkRsR+WKhIrEzPz8uPpKk8qFDYtBAs1XyhxKUj7bk8yGRrBMpTt1kFB5Nkj9koyXUOMNnGGHZLpomsBMeQaBSq6R45sVjKx5n+o0u5t7qRjUiep6bwZ0zEb5K5KlEvkrjcgrlTRuxbZWgwRYkLoE5B/YYqA44g1B+hiWC1JU48KtnGX15kOqlDH7DoFZdfGOBxYmEUKHRrS0Rpn7E2Y+l+KXSMRRVMPDgzNpOvMnI3tsgcU8br6RTebWIO5qg9FIP5Z91kTzQIP90CfU69XAAXNDQf2aDAJGLwARlVkX/QYLgt5sburfo/1aEfkVBGLMMM5+5xs5RhDULROBnIUpKy1D3hMM978WLn2ZGo5XSsJwIy4kw3Qhlfl64xAUtIF0J6R5fDPR2bYUzX0iufDJVJTIhMkHtWuekLTTWt/9tpDjrowoY2Z64fmEqoDZAaypESUHrBenskEi2EqEboSgKqrl5AnokEolEIlmO5iWP8388i2qqCyLPjYpqKUSe4OwfzND1RIr8AwkGP59l7u0WZlGj69E4O2jpSIu5t26/aDJyI1RTxe7T8esR1RMO2QP2gnPIq1yfc6V1+fZlOP1IJAtQO+6g6LHTrHbKoXqsTd8nMxhpjbm3m5Tfk9nZJRKJRLKBiMCaBHMGFB+ECW1LIXJv72AVOoLGeQ+/XmX71woYaQ09oyGEgqLIgVOyAl0R4WccorM6+suxIKv3+Qy9z2e4/K0KzqS/ygE2NsnZkF2vt3EyKm/e20tgfOTLiQOrclf4D1EUZrab+DMqiPh788DJMnpCxasEjH+3dptbL1kNww/pqrlkWj62G9JTadN+NsXsaze2LqufcbG6dawunfb47f8O1LIGuerm/u59hJ9UMFuCfd9uI7oqXOjNgrpBfao6pHfHfUP1RJvpn98lVQ0kEolEshQVcgdtup9KQyQIPYGR1qifcxj/fnVZsWnl/TaarYCqoKigJVW2/0oBMyuTDUs2P5EnmHm1Qf2sQ+/HMmz/WoHmiEfjgkt7zMOvR9JefwOouqD7S1NUXisy98MetHSBzIM1okFQciGKtvoxJBKJ5K4lEpgNgZfeoHaGm0TpnRaFB5Jk9tjMvNJYEMOtBRHApW+U2PGrcaJtPRHfK81WqLzfvub7+l7MkBxcjF/WUipWpBO6gpnXG/F7N8n4r+pxjKVXCpl4qSbn55sEu38xzl/RlNuePPBqWqM+rdFr22u9UsjM6w26Hk+Rv3+p/uF2+wslkq3ABpabSa4ks8+i57k0mqUS+RGNcy6VD9v8T2+8TBCo/Kf/z5dpNWPns2n59A/G5Uudls7EWBdT4wUuTw7iVQ38qokIVbREwM6vX8TMdAY7Hv8fe1GmdZQ/znS8djUfFfYTCjT3Q+2x9V2bqsL2j48v+9p/vvjcmo8z/Oj0+k68STGLAb1fmSYKoPZ2nsaxDM0PszQ/zGAOuOSfLWH1rTMQtQb6T23QIPhsG/pj0aB62EB7z4JZdWHbRkSdnzfU7oHsSVCuMQe1xyN6X4tQ518XgNAivDy0BhUaexQie2sveJZj/4cNhAofPpKl2t0prDT15W+oGkSkyiGZcoAiBBO7bBLcnVn2KkUDARTnPC7uia7fQT9/qyNbTmolkq3GRwaT4a/kKb/bYu6tO7vwlmxxhFgIxtxSbMVrkkg2KWFbELY3rvFfUWHwizmSQyahG3HhT+aYfb1J/bRLz3NpBj6dJXQjqsfbVI8vZhe9XlRTua5sj0EzXmdv++XYstKe9Jn8UQ3FUAhqIaGzOfo9u1en+GiS5HYTRVGYeb2BnoqzSfq1kMt/U1nTPVZUyN5ro6gKiUED1VLiql9hnLmyNebROOeufF8UMDIqXFXhJ3Kim3I/VUvByGlxYq9IIAI2vEhbIpFIJEtRNMjfnyD/bdCvXpo/n2byR/Xb3iazoDH4+bhaT9COGP3bCuq/jcetVsskkfBkFVXJNRFDIcHzDvor9sK2woMJJjaxODU9FbDzTYdWQePiUzZBfXV7++6jTbrHKzRtjUBXyTV8KsfadyQJjWR5zKJGaodJarvF3nfGUQDXUHFMDduPiLpuPGwh8sQdFSY2Mzr9Ew75kkflBhKZbgTOfcak772A/KWQgxMVDkxWOT5UYKQne6eb1oGRipN6t6d8KUy9GWxV2/LNRN4fieSOk9plolkq7UmfRL+B3auT2mmhJRRqJxyCRoRiKjTOu7jTK9slY5th/L1esPGuZf2lsGkC+yV3N85kwMhflsnsscjdl6D3+TSKqiBCgV8PcaaCWLR63pXP9Doxu316vzqFN2NSfy9L5fUCRAqoAn2fg/l0E8WSN1UikUiWIAQ9p33MtqC0c2tLWCJPcOkvSmz7WoGuJ1PM/mLtdsre59PkDiUQkcCZDgiaISKA+jl3xfeVj7RojfqEzZD2ZLCp/dgX/7wUxwpsXOmCZBmufOb01ObQY1Tea1M/5WAWdYyMRvfTKUI3WlgXJreb2L066Z0WoRMx/UpjU3+3OpC2wOWR9+S62Noj+y3kgSNrjwTwxdpTIW23Sh3bxr45iDueAASFJ0rkHisv6J7Gwwwo8OyvHuHYy3uoTmfwXIM/+I9fmH/3le0UqFqElfQYPDTFvmdGrqmf2vEPZzn52k7CYOW262ZA/2CJvu0lEum1CSJTytod4n958L+ted+iZq15X4D31qHfHG8WVt9pnrTmrHnffrO69kYAGfWqjCefiH8mzxY58epu6hMppv9qACvtkr+3Su9js+jmyjOzwFM5+ff78IEnv/4euf7FCfC51DDn2EHfhx6p8RYz54tYKY9a0cTpUgktMGqCwumQ2Qd1nN7OB2q8tnYnZcFeu1BnsrkonHYf9Nh9uE3ifGz9DSKV1jmbRrdGpMdtKo649B11EApM7DHxbZVkNSQzF2DNCew5QeEDQahHBAVoDSs0dgPmCpOjKLqmcPNaNPy1P6dlJ7HmfZ8fOr/mfWvBYhu0ywpaaOLeF7Dz0PJVh/usFQKyti/+uY/19XdBtL40cTNOes37po2VF2FXUtPs1Xeap5C79nfWyylkqwEf+8ksfhpafSrj95lrFqqO1AvsfaUFRFx4IEm7fu0hujuxPue6H619kh+JtY9v6jqqN7RZX+Xbtrf2/c+5XWved70VJ8JwHfdDXfuxe9Nr/wzvHZ5c874AOf3a2bGu5kJr7ffudLl3Xe1Yz7OUs9c+dq7n+72eZxRgpr32fkb/1Mi6jj398wb1cy79L2YoPJzEmQloXrh9Vc0kEolEItnqWF06xceSzL3VxOrVSQ7FgcDtCR8xH3/kzgWM/m2FxICBOxdcl6D0SlI7TAY+k0UImH29QfW4s67gjcY5Fz65+H+i36D4SJLJH99+UcxaSe0wsbp0jJxG9oBN5AtUQ8ErBzQveaR3WvQ8nUaEgrm3m1Q+bC/c/2VRQdUUIl9QeCRJ12Op2Mk2FeDXQxQVFFVBtRR6nknT82wadzbAnQsWfkeuQLNVktsMsgds9FTnWlOEgqAVoWgKigbeXIBbCol8EQtNQ4FXCQmdCKtLR0+pC5V3WiMezmxActAgtdtC1ZbOc6vH24SOoHqsvSA4lkgkEsntw/p5f8e2iXqnTbonWSd9SVB8P0RzoX3GQx8yEZGgftalPebTvLR2m8PNJDFgoCdj+52eUNn560X+3//ulxdef/Fr77Bt7zStqNO2fLw1uOT/Y5WBjn1y5tpsRR80hzu2nWv0dGzT1c7x7nx9bTam0O8cp8uNpdmof1Q+2LHP7DK24VI72bGtP9U5jyqanX6H5exWy22bI9WxzbY7fVxX+6iLic5zLnffJvXcMsfqbIfjdNpKLz4Rf66FhxJ0P7XUxp3etT5/2Z3ivsOdduvS6QrJNzSCQUHwgs+w5jBWy3fsV64u/Wy0epPQi/CPtVFUKLUFtZNtmd38JnL695/o3LiMTVyZ90uqYUR3zaW33Kan2ibhhgSqwlzB4nyXxWzRxrU0EIJPvTIRr482Oed6s+RnfB48UuHIoS5mizaG0elHtM3OfqTeXMZXtczyIpnqvE+f3H66Y9tPL+/r2NZoLD1HsEwcwKWpxf780jAwGLFjtMm+yzXuGy3R1W5z9EA3VDr7JeF39l/KMj6WudllkmM3l/GJLfN87f9nbwFxcNvgF3OY/7QbZT45kVfeQkFhki2FEILXXnuNv/3bv+WVV17h5MmTtFoturu7efrpp/nn//yf8+KLL97pZkokmwJFh/5PZBfsdhAnkPMqIfUzDrWTznWPB3papfeFeIwa+EyO9oQf2yDnArxSgFcKUQyF9G6L7D4Lq0dn9s0mlffW7puXSO4YAupnXepnXVRLwe7RMbIaZkHDHjDIHsjizgVM/7yOs4qgW9KJ2ePR9alZCs+VmJvJEE4Z+O8miWoa9peqKJtDlyGRSCS3HNVUGDrsURgJmD5g4BS2fplprxxSeqdJ1xMpKu+tzZesaJCan+9Wjzlk9lkEjZCpn64eQ7BalcjNxIoxBpINizMVMPnjGv2fzBI0Nk/sROgI2uM+hS8m0WwVzVbZ/btdlI+2KT6SJHQjRARWt05mr0XpsCxMI1mKtP/FSHHqJsDI+vPiVIXU3vqyOqfeHRV6f/swAOOnuxk/24PbNEmkXXJ9dYpDVaxud83F/MxEwAOfOrumfVPq5ncWbnb695bo31uiVTc5/tM9TJztYertPqbe7kPRIoy0j1100ZM+RAoiUhBCwauatGYSEMG+5y4uEaYC7Hh0nPFjvZRGcpRG8qhaiFOz6JqIuNojWjwWMr6MOPV2UB4y4Ugbz1bwEgrJasT++Yp0griqryIg0uD4x1K4mau6vigiNx1SHPXIlEKsGYE9Iyi8C2EqZPwLCugqeBHZk5AaEeiN+ODbqNHoUrn4SBIvucmsSR4k3jAQCNz7pcP2Rhn5jEn2bEDxZIjRgEItInvB4cLHLNw1LqSteoSXUGgX5PAskWxF2qM+F/68xN5/3E3uXluKUyW3DEXEP1uNrXhNEonk+lBNhYHPZNGSKlZx6dz56kD89E6Lgc9mCVoR5SMtgmZEe+LGHDJGVqXryTSpnSZ+I4JI0PNsmtQOi8kf1dYses0/FAsqaqccmhdd7H6D8vsbM5hJNRXy9yXoemKpCEA1lIXX0zsX7/3lb1VwZ5b3GCUGDbL32GT2WSjzZeBCL0IzVVrjHmPfXj4pkGorpHdZJPoMrB6d7H4b5QqhaOhG1M+4NC64iOCKz0CB5LCJnlSJfEHoCKwujcSggZHRULQ4c61mx2t6EQpQYuedVw5I7bTIHUrglQPm3mzSGvVAiUWzuUM2uYMJRCjI7LeYebVB86Kc40kkEslGQokE+SmfofMhVlnQGFZoD6gUWzpeJWDiB7U7LmapnXJQdAUUaF5wGfxiHjMX2xOTmTaDO2fvaPskG5srA4erx9tk9tlMv7Jxk51cC1FXCd5Kkjqv4+2MaD0XwhpdLj1zbQp1j4mfN7aEwHEzk3B9+koteiptuqoumhA0LZ2prgQzRZtSzkKoCuoVYm0jiFAFhO3NE6x0LYSqcPhQF4+/P8vuy3Vmi2tPjrphUVUuDGW5MJDm2Q+mGZxrk3h/iteHB9ecnPVWMPDZLGZBw50JcKZ8Ghdc2uMyavFmsFVtyzeT9d6fn/zkJ3zqU58CQFVV9u7dSyqV4syZM3zzm9/km9/8Jv/qX/0r/s2/+Te3oLUSyeZBS6okh4zY3qeAorBgg0MBs6CR3mmh6Arj36/izARYXTrOpH9DSQgTAwZdT6RIDCwmXmhecok8QWLQIHfQXkiEALHtsDni4Z1z6Xk6Te4eG78eETTiCpS1U2tPyiyR3AkiV8yLVhb9JFavTu+zaYa/mmf61Qa1E/I5vh6iQMH7RZqopEOkEE2YhOct9L1ynSqRSCSpnWZcvXs8YPRRk8qO9RU62cxUjzkUHkrS/UyayZdqq+4vQrj812WGv5Ins99C0RSM3NYX8kq2DvUzLo3zM4hNKEsI2xGhF9G85JHdZ1N8JIlfC7n4ZyXyDyboeTqNV95aNkhpC1weaf+7PqT6ZYPjTJk0Tl2RPXQNPp7B/bMM7u8MVnDE3TOZu1tJZjwe+8oJ2vWzvPSfnkXRIsysh183qFVNFivpLvaYVt5lzxOXGb5/uuN4uhnx/D85gtMwcOsmuYEmUQR/fPgFjJpAcwWhrVA8GZKYEfT9wmfqKe22OyMT5QBFQL1bZ/S+BLoT0T3iYTUjrHaE5gtaOY2R+2yEvkzbVJVqv0q1P/6O9CZqJC5D6oIgMQHb/koAIcTxqQgFvDwEGVDKKpm5iPtfanDs40mc3AboVhvABxaU1bjPSAvYFkAygpKGVdLQ5lS0GQUi8O4NwbzTjd4a1Pbq1PbGz0D+dED3eyF7fuIyddBg7t7V+2ChghrKWZ5EslVJDBkUH02iKAru7NZapEokGxWZlUoi2XqopkLfJzLY/QaN8+6COLU15uFVQvKHEh3v+Uiwqigw/fLaK9gnhw1CT+BelSk8tcsis8eierLN7GtNIl+QHDYY+GyOnb9VpPxum/K7q2dKjNw4+Dp7wMaZ9pl9vbnKO+4ACuTvT9DzzGK1stCJmHu7SXPEI9FvYOQ1uh6NRatBM2TipVqHMFW1FbIHbHL32ph5Ha8cLAhTAZrnPVpjHvUVxASRI6idcBYDY1Qw8xqqoRB5Aq8aLltZCMCZXH7upRoKqqkQNCOMvBb/XQuJPIGYP9bs6815Y0Dn+6d/1mDm5QZaUqX3+TSDn8vRvOQy+ZO6rNIlkUgkt4tIwEeBwkKgBGA3QtKVgEwpID/lY7oCp1th7BMaQlcYeimgPRsw8cO1J5W4lYgQKlckqJj6aY3tv5xDCJVk2iHwNTR984u2JDcXLamy+3eWVqxtjnjrmu9uBIQP4fsJwvcSYAmazwb4u8WiO2vVAwgOnqsA4M5sjaoAmwk1isg3PXqrLXprbTKOT6RAKWNxenuO6XyCpq2jmtfua31dxbFUCg8laU8GhK3N3d8JVWGmy2bPSL2zrPJmRlV57cF+HjkxQ1/Z4RNnL/Pm9gGa9vU5GLsrbR4+M4saCRoJAyEUKgmb0315An11X+tHt/byNyvXdX6J5HYihGDv3r38i3/xL/j6179OoVAAwPM8/vW//tf8+3//7/m3//bf8uSTT/KlL33pDrdWIrkzpLabDHw2u5CITggB0Xx/LwAhCJoR1RMOtVMOfjWOcm41byxJnFnQGPh8tsOmmNph4cz41M+41E87qLaCVdQRgaA17i/Y/dqjPmaXhpHWsHp0cgcTpPdYzLzWWGijRLIZcKcDLv9thZ5n0vS9kMHu1Zl5pbFgI5esDX/WJJpdGhsm3LUubiUSiWTr0veJDNn9No2LLqNfSxNstiJAN0jkC6ZfrjPwmRzNixb1M6snLQgaEZe/WSb/QBIjq1L5UCaOkGwuNqMwFYgrFCvQ97FF7dbkj2oYeY2ep9NUj7dpyII0kmWQ9r+YDaCi2pgoOmTvscndm8DIqPi1iOaIS9CKMDIq7vd1RFMDVaDmQ/QHW6jFiGg+1k29zjsbBVB7PweKIH1vAyIlVsIBPZ+ZxMxLIYNkdRIZH7vo4JQscnuqDD07TfRRsVO1Uzvao6+cjcVO+9jp2KmvqtDuV2n3L75e26mw7ScBmVFBdDhk5nEVoui2iVR7RuKBfm4oNvAEtsrk/hvIRqyqtHdAewekT0SkLgmEBmECmjsVnMF4n+wHEdnR2BIXquClNsCi6bwOP0vM9xsfOb0VOLXoHLYAgUAkBc6jIcFuaU28FVT261R6DXb93KH/uE9+NGD0MQu3cO3npDagUxwJSE0FNPvkEC2RbBWMnMq2XymgWSpCCJxpn7m3VhesSCSSG0dmpZJIth6DX8iR6Deon3FoXvLwSgFeKaQ5vy4sv9tCT6rk7kuQvWpdWDq89vFXsxWGvpQHoHHBZepni2LD2klnPit+guZ5j+aIR2vU5+Kflyg8mKDriSQIQfnoosjko6qfjXNx1n09rWIWdaon2ugpjZ5n0th9BqXDrQ0VuNT1eJLiI7HwNAoEky/VaF32FoJSwoKg7+Hk4hsUhd6PZdAsBRHGFUkFArMQr2+a512mft7AmfDjigdFjaAeXZ8wKAKvdGP3KvIFkR+f26+scKwVmiei2EE4/r0aqZ0m/Z/MUnggwdzbcr4nkUgktwotodDzXJrksIn2FxFCAaEDEaghbCO2d7cyKnODJjPbLNID8bjc92pAkIKx71avmdTgTuNMBux9YJQz721ndqKA7+lYCSm6kyxFSywNcK2dcmhPbK7nJLxoEPwiBW0V7YE22oNtKiK77uPUUwYJN6TriRSTP9p8VWM3MqqtkN1vkxg0KJ6ZQIsiNCHQIoEaCawgRAFcXWU6l+T0QJ65LougI1HsChNqReHdQ0Uem5ti+9fyzL7ZpH7W3bB99FpRhNiSGeeP3NvDgYtldo83+Nj5Udq6zlzKZiKbYiZnL+sbVqOInnqbhO8TqCpGPeDA5QoAvqaSafsgIN/22F6q8c6OPmazqWu2YdfvFtFsdcXHSiLZSDzxxBOcOHEC/SrhtWma/Lt/9+84evQo3/ve9/iDP/iDLR2cJpEsiwLJIYO+T2ZoXvaY+kn9tiYQyuyz0UyVc384i91rIAKBVw5IDJmkd5t0P5lCSyjM/qKJN9dpO7y6Smpy2KDvE1l2/noRrxLQvOzRuuTRGvPluCXZ+EQw82oDd8an5/kMZlFn4oc1fvHgjVY7WH2N9tkPV45bnPByqx4jo60s2rnsF1Y9xoyXXvH1/anOwh9XUj+ewc46dO8t07WrQnFHDSHmK0HPc5Tdq7ZDIpFINiveSzs6thXO+WSP+ow+ZlL9lQS6JjC4tk82ra8u3Hw4N7Li6z9n/6rH6LFXTvD35mjntVyN01p5jDzzR48u+T88O0vfZxTO/B/7qKfi9+77vcPXfH/oCObe2oDJre8QRk6j+EiSxJCB8AWoMPnjekei8dtB6uWeFV+PxOpaghOTfQAkWwHZmk++5jHRm6Caj5+Nnb/2/o03dLOgQHqPRXLIoDXq07rs3bnEsvMJkqZ+XqfyQRsjr5EcNskciBPiW906iq7Ez6BEcgXS/hcjlS/XYPs/KGDmdYQQBPUIs0vD6l50gkQj8cCGgHBGJzxjx/+ggBWR+N3SdZ13+gd9tC7EC93Sa92oiXgSpqV9MvvlJEOydg78+hmO/9E9TL/Ti1uy6X9qmmTPLcqeYqhc/qzJzr/1yF4QWFUPqwShBVNPRwTWrRVtqvNzy3tfbXLmyST13ptXJbhxr0rj3uVfy54QqBEEBlx8KEF0p7Wpr9pwygAN+FQThucXcQ3gggGeAoWIWl6DNGuqxCy5Mbysyqkv2mx73SMzGbHnJw7tvMLY4xaBDempiFZRJUipmPWI3HgQz23lZyORbCm6nkijmgrlo01KR1tEMpmZ5FYjxNaqzPAR13FNMiuVRLL1KB9toT6RIrPPJrNv7UmJLv55iaC59uhm64p1ZXqXhaIpVI+1aV72iFyBM+tjdxsE7cVjhq2I2debmAUNu98AFsWp2/9BASOtoShQPe4w/Et5jLRG5AsUHRQlDvq+WlDbGvWY/En9jlUP0myVKBRU3mtRfq9N5Aq6n05ReDC57P56UqV5ySVoRCgaqIaKokLthEP9nEvkXNGXC5YN6trMNC96NC+6ZPbZlI62pVNCIpFIboCZbx/o2PbUwCUoqSjfjZPzifs9goRACYFAARUCW3AhKNDOaYTmR9F/gt3pufjPyQwc8De86OntBwbQuwLSP9H5o8nniFow80ylYz/tp0uDIErNzjFaXUYdFQitY9svLu/q2GYYnYEd2jLHy9idQUN7u2Y7tlXSnVXuy62l2ype5zXMNDsDRFtupx8gZXZmrD5f7+rYJkRn5ZJ92Zllztspjqo3Oq8hkVh63prbOU91g06XrKp13kvD7Lzn1jKfQ+Nf7oazlYX/zfuTWKcc2uObQ6CaO2gTvJSh3Kcz8mQCN1WAElTqnfc3ijo/LxEsGtFPDufpLU1y4hM7mf3q4vOz7//w5q1p/BbjhSsqN3/EDyfvJTkTsv1NBzWAVrdKO9SIVJ1QVQgVhVBVcE2NatKkljQXIq5VK0S5qpNVtaXzfuWqj7SRM3j9c/3cc7JGf0oj/3mVS9tTjPalCLWlDpNdv/7eTbjqW4OqxtddrLqUcyaKvvx6IFymD2K5bcuQS3QalyedTlH3cmc2raV9SSbZeaxStbPf0666jrN7c4z2pjh4oUKx7jJcbbCt2iAahRO78owMxn12suXz8NkSmZbfUQw5UuDogwXKXXFgV9J2yU95HDjc5PFLU3i2gqdoCEWhaevM5i2mu2xG/+B+9h6eJNAUjtzTRZH5sUZlw4/tm4atalu+mazz/mSzKyde+PSnP833vvc9Tp8+fSOtkkg2DwokBg3Suy3Suyz0pIoz5d92YSpA/YxD4aEE2XtsKu8tzoka51ycaZ/UdovQWWOb1DiJXfVYm+SQgZZQyd2ToHB/EhEJzv/x3ELyQ4lkI1M75eKWQgY+m2XHrxYoHW5RPdbetNWvbidaJsSfMtjz/OWF9f7Vax+JRCK52+g5GVDeoVHd8ZFt9O6dDx3bVWR4dpRDF8u8cajvTjdnU5G9x6bv4xlCJ6J+1sXMa5gFja7HU4z/ffVON++6GZxocehk3P5QhW1jLcb7Exw/sHpijq3EwGezpHfGNsLcvbF/YOy7VVojd7BCqQAtpTLw6aU2HbvXQNlqOfOkLXB5pP3vupDi1Gvg1yPMfJxVoXE2dqobeRUjq+GVQ+75qVhI/BlVVIIPEkRjBqKmo3ZdfxaG5O5mLE5VBVaPi18xsLe16P/8xE24KsndhKrDwd85yYk/20/1fJbq+RyqEdL/xBR9j83dknNW96kUP4ywSuBlwazBE6+WeOu54i0VqF58NEml32P3kTa7j7R573M3T5y6ErPPKuTeAtMR7H27TaTA7HaDyw91Bk/ccn6QgFEDEPD1OlwZ+5IG7r8iICXoDDyS3EJUlcvP2ujNiOF3XJKzgr0vxQ7/j+rbumkFqylAwPh9Bq0eOTxLJFuJ0IlQFIXSkRbRHVwzSyR3IzIrlUSy9YjFfx5aSkWzFbxySGqbyeDnr22gr51x1lyNNDlskBg0cK8STSYGDVLbTdxSAAKsrrhfye63mZ1rLFQSBfCrIYmhxUypRl7DSMfrsPaEDyooqkJ70mfs76sUHkxQfCSJonZGKSSHTdK7TKrH7kx2i+mXG0y/vDRz7EfX/hGtcY/koIlfD6mfdeMMrnex7bp6wiGzz6br0SSzb8hEcxKJRHLTiAQcN1AOW5COEJ9rQUIghNIx7DRKK9jWDnpw3CS5zaB1eQOL+BTQqvHcQJtViLJ38eAqWZax/iTuvN9FjWDHWIP+T2YY+cvy2gPo7xCqqdD9VIrp7SYXH0jccLTugctVIqCStG5OAyUkSiE7XndoF1QuP24T2gqXLnff0nN6psb7DxRINXx2jjTZd7bOrgtNRoZSjAylCIzNk9XTM1X6ph10P0JoWzMavZk0eftQLwCWGzA83WT3eJ2D5yscuFhFixb7oUraZLwnQSNhoEcC3QgoFS2iqyrsVvpMDn9CZ/+7DVK1kEQUogpBpuUzUGojzseiVgUwQsGTx2bhf7uYpEEIwcg3SnhlqVKVbC4cJ7b5JBJ3IMZAIrmN2H062Xts0jsttIQa2xJPOzQuuDhTt7/aEYBXDql82Kbn6TRhM6JxyUP4AqtHp/+TGcJ2RPWDzkQeV6OnVAY/n8Pq1onmk9WpxuIcQFEV9KSK50p1n2Rz4M4EjPxVma7HU3Q/laL4WJLmRQ9nyscrhTgzPuLOfG03NIl7m7Q/THH0r+7BaxnsfHKc/oOdibskEonkbkFvCwxHUB+Q8coAWhjPE6upG61KfvfR+0KcCO3yN8v4tfnkcI8myR3aQOvoAJQw/tFagiALwriGXVAIemfa3HO6xnhfgrO7M7iWyuBEm3tPV2kltLsq3MLIxH3E2HerqDoMfCZHaod5y8Spqe0mqqVQP+eiGgoiEMsmYmmPe7izAaqp0BrzSPQbjH+vKpMOSa6Lu8X+J9Uv12DypSq7f6+bnmdSC+JUvxLhV+JBTb0iYFDNR5jPN3H+rACKwPhc7brPm97TYO6VbkSgMvQPx27sIiR3PaoJh37vNE7ZZPpIN+VTecZfG2T2/S7u/b3TCwLrm0X5oE51T/wdiSyV7JmQnndDnny1xJvPFgnsW+c4rgyZlCd8iuMBqhcRmbfeSe0MqVz+bArVi+g979Fzyaf3kk9uJuDkcymCxG10lBciGJ2v3nzYhmdlWb6NRpBSufhCAqMe0XfMQwmh3q9RGAmwy4LAgEtP2rS65dAskWw1lPnhwOzScSakl0Zy61Gi+GercT3XJLNSSSRbl7AZETZBsxUy+228WohmKajzFdJEAEE7ImzG1UzXgpHTGPxCDkVV8BtLrc8zrzZwSwGDn82ipxYdaPn7E+gplYkfLtqCnOmA/P1JtISCaqns/HoRgKAZ4lVCsgds9KTK+PeqCF9QeqdF6UiL7P4442dr3GPqJ3UUTUHRwCttrKClxgWX5PCi00xPqEz9rE7tpFyHwrwAGSg8lLyjwXUSiUSylTDbIQeONFCqFhzwEY+7cL0atEdcqMSBw9OvNKid2Ljjl5i3J6Re1ansjscXZb4aj0QiVIWZrkUndjVj8ELNY8evFzn/h7cmQenNwixoqKbKzA7zhoWpihD0ldvzwTpbUwR4u/HnDHa85uBkVS49bSP023tfm2mDYwfznNsVsG2kza7LDXZebnB5KMW5HZ1VlDcil4ZTDE22SbcC6vbtSah7J3EtnXPbclwcSvPIyTmyTZ9q2iDhhJzZnmW8b2k1VtO+9hopsFWOPx3b8yqV+H1qENFbbtNTccnVPYwgomXrtGyN7KtlRCSw+wysoi6T/N8Etqpt+WZyM++PEIK//Mu/BODZZ5+9eQeWSDYYxceSdD2WwquGVE86NM65uLMbw2Y2+3oTu8+g/1Px+BOFAlVTcGcDxl+qLohNV8Lq1rG6dRoXXKrH2qi2ysCnssy+2aB22iVsyo5VsvmIHMHMKw0q77XI7LNJ77LI7LFQNIXIF7Que5Tfb+FMbozv8kbA6PK57ytn+OBbBwC4fLhfilMlEsldjdGO50BeavMkHLuVpNuxjX+kb3PYtzYKekZFmbchW70GfsNFS6h0PZ5a5Z23AQHmNKRPgD0OkTEvUI0Ere1QerbTrqpXBPkjguGpCjNdFicOZIm0+DsyPpgk0/DZNtpi5KPKR6ug6JDaadEe9TZ80sprMfmjGgOfyTL0hRzVE22cGZ/8oQS1kw7uzM2fa/Y8l8bIavR/Mv6/Neox9vfVjvstApj5RYPhr+QRlwSjf1clbG29tZ20BS6PtP9dH1IBswx6WqXnuTQoLKuEvxZKMUA0TLxv5tH2uWh7XdTM0iczagKTBrRVMCIwAEOABuKiwciZnQhP/f+z998xdmX5nSf4uf55Gz4Y9CaZluldpa3KMqlSSVUqmZbUUk1vd6N3gdnpBXqxO8AC04PtPxaYHWBnsYPVttTT6m51t0ql8qXyLiu9YxpmJpPehTfPm+vP/nGDEYx8j+QLMsgwPB+AYMSNc9+77757zz3nd37f74/MocpafiTJLU4s77L905Nse2aS09/dSf18muZUgvRoa83fK7ykQmptn0bFjrPvaIOHXy7x6lOFDhfctcSLqSiA5kN4E81lQlNl+rYY07fFGHu3Tf85j7t+1uDsvTHKYzfgQMKQ0eMOhSkP3RGL6RbmchnO/MZKXJasxEurjD+yXNq2sidKTAhCOQmXSLYayR0GA0+m0ZMaoS/wa3IWJ5FsNG4VVyqJZCvT91iK9B6LypE2Rk4juTgHUwxovG+z8GZv816zqLHj9yMRaXvKQ1FZqnY686s6tWNRf3Hu62WKDyWpHbdRFBj7cp7U7pXqmGBxoU1PqAx+elkkXzrcAgH+ovB14KkUcy82IvFiCLWP7U0h8Kwddwh9gRZTceZ92hMbuOrcOmBkLnH/lfoIiUQiuW4SNZ873qgTaArit1swcJ1zax34TJvqvzIY+FQKt+xv2ETKiwuf7XsCcGH4sxmSu0zmXmqsW1V1ycZlcD66JjRLBRXYwGEotxwQBoLsrE8zd31L1UJRmMvG6K/aPHXyAmcLGSw/4EL+ymZVku74ZZ2F7w3gJVTOPXbzhamXYsd1ju3Ncnp7iu0TTXaONxiYb1Ma1De8AYy7WOXVcDfwjXgDCHWVt+7sX7lxDXLiQl1luj/JdH9n0uHe//t5AIaey0Ti1I19aUi2GLXaStN6y7KwrNU5qPzlX/4l77zzDqZp8i//5b9cw6OTSDYG1oBO/6Mp4sMG8280KR9e+xyl60bAxHcrWAMGekpFX6zq2jzv9jymbp53qR2zSe22SO1a7gfMrE7QvHrlVYlkI+PVQkpvtyi93QIVzJxGcrtJem+Msd/NU/2ozfxrTUJ35cBPjSlolopqKWhmZOSpWQqhK3CrAc6Cv6HnrddK3+4Kd/3uMY585wD57TUCX0HTN6dQRCKRSK6XUIviSmog+0FYXjbePtMgVCDh+LQsRVZhvAqXrr0Pf2bjxHzVJuTegNgUBIspZ+olaRNu4RNxVSHIHBGkPwI/Be/cnWe+GOOTlPIW2ydaaJZyRbFpep9F8aHkUtXRuZcbVI5szrmHWw44940y+/55P9mDcfxFAejgU2kufKt83YatZl5jxx9GuUDOgr8ynwNIbDPZ9WdFQlcw86va0pqhkVHJ3RV9ubm7EvjNkPK7m/McS64dGf9bHVKcegljv5fDKujRoi1RZzfxg2rP+xtP13F/mkXM6PhvJvHfTKKkArjdQZw1YEGH4MqLeEILyT9SIv9A5To+iUTSHVWF5EiT+vk0qnZzIjxT26MH8/6jDQ6+X+fD+7I37L0y8z4C8G6iMPWTXDgUpzKis/f1NrsO21QH9d6ruIaQ+gCSJ0F1YFhUcGMKJx5I0spH3bXZDLj9pQamKwgV8E2FUAVdCyEr4KAL++XKq0QikawXekolf0+c5C4LPamCgMpHbeZeamzJxRXJBkUItmSZgDX+TLeSK5VEspW56Fyf2mPSOO3QUliq6qn2OhcDxCUO+PasR+mtFoPPprH6dFoTLoUHErjlAGfej57ri5z8d/PoieX30ZMqo1/MAWDk9SjOBIhAUP0oEgy0xj0qH7TJ3Rkne0cce6a+tL/Vr5O7O075nRZuKUA1FfoeSZLaYzH54xr21PoLQYUnqB9z1vswNiTWgM62L2ZxKz6zLzQ2rNhJIpFINguJeiRMdWIqHz2U5oGB3tdrrogK8680SO+zyN0VZ3q6fvV91oMAhC5w7giJva9ibo8EWQNPpLHnfJxZ+ZyRLHPb6ej+mHt148egQldQ/aDNiK4wu8PEt67PuPHdvUUe+3CGpO1zYLYMwGilzvmYQrhJ3eLXg9axBNXfFNBSAWcfixGaG8NpxTM1Tu3KMDWY4M6Py4x9OU/znEPpnY1bpck1VVxdId30KF1zqW/JarD6o7n34KfTNM+41D5uE7rrfFCbla0aW15LFs/P2NjYis3/w//wP/Cv//W/7vllDh8+zH/33/13APybf/Nv2LNnz5odokSyEdDiCqPPZ/EbIRP/UKV1YeN2zCIEe/o64q4iMjic/U0dLaESX6zEmrktxsKbTXxZOVWyVQjBLQW4pTbl99pkb49RfChJcqdF7eM2Xj1Eiynk7oyjJ7WO3UUoUNRonuG3Q+on7CVj0K1EcVeFbfdNceHtYS68PUws47DvmbP07ams96FJJBLJTcW3oj5fl/E5ABYyFhf6kwwvtDD8AE2A89s5zv99eb0PbUNjz3gsvNmkPe2R3mOR3hdDNRTaky4zv16ftR29CgP/AEEMSk+CPQrmTCRUTR0FPwGN/ZfsEArybwqSp6F6l0L9IMzPdQpTAfxFs0DVUgnsyxeq0uLqkjAVILHd3LTiVABCWHi7SfH+5FL+jdWnExsyaE9eX46MFl9ef7CKOu0pj+pHbew5n6AVEh8x6HskiZnTyd0Rp+S16Hs4RXK7id+MjIuceW8p32fLIWOB3ZHxv2tCilMX0VMqVp9OYAta4y7ld1u4C6urPqjGIPalKmEI4bhBcCxGeMaENxKAgHSIMuKjDPiQCMFTwAc8FRGAMuKxc9v8Dfl8EslFQj96yKrazXmQpMsuO082gWgx9kaRXPCJ10KaOQ1uYHXWXqgPGLTTDslqiBr2kAfiQ+YdSJ6K3PBDDdwCuIFGuhLQN+5yPq+TnfXY92YTJYTJPSbjtyeWXuKhgfM39DNJJBKJJGLobZfMhQD/D/NM/7SKWw6x+nXy98RJbDNRLQVFUQi9kMYph5lf16Vbu0SyxqyFIxXcWq5UEslWxeqPgsMAekIjd2c0Rwo9gTPnUT/Ze3DYq4Wc/dsSQ8+kSWwzKb3VYuonNRQddvxhYUVg/8zfLOA3opme8ARedTl+NPzZZbfO7B0xRCBoT3somrKiYszcKw1yd8aJDxnRBgXyhxL0PRxVgkmOmUz/ss7o88sGT2pnLodko6BAer9F/2MpvHrIhe9UVgieJRKJRHJlqj/c27Ftl19h4I2QIAGVZwVDVh0n6FzSmnNSHdsMtTMie7Q6uOL3wv5ZVF2h/M6VF+tP/ed7O7Z1W6Pd+6fvXPF1VsvcYxUK9yeIP5gk8f9VCb2QZtUnvSea+4z+VpbT/36BnanSiv26naPxUq5jm6J0foigi7mq3Uh0bEtmO8dYKbPTuCJvdVZF8kVn7D5nrfwO+mONjjbHpgc6toVB52s13U7nylqrM8nD0DvX/yZrna7rntc5ANP0zusrFCvP3XSp87UsqzOBIpHoPG+O2/kdPj5ypmPbiQcdrH6d/sdSaAkVstGx+rXVrW2uF9WPbPL3JNj9Wpu37ysgFhOUs6nO66ve6pzz7/jTI0s/azGF1r4Y4ZBBeo9F6IYYpoqZ0zaseHG9OPHX93dsc2fmGXzfpe+ET2W7xtShJGcXCmv6vqq6ss8Zztc62szWOvvzMFy+t1pJjTfvLTI812ZnosnYDotmQmOhYGH9zUyU1L7OQ/CB3HL/5eRV+m2bM2G6p32zmWbHtma789rv1t9ONzv7nDDs7CM/2aeVq52VSBGdz4Jup7XrOnOXZ0sm1fmcrTfiHduqXufzJpboFDE5jrHi95N/Ez2n56oOh46XiA+bJIZN+h5L0YjpvH1bH624wb4/P9zlU0gk18eFCxfIZJbvv9XEqM+cOcMXv/hFbNvmj//4j/lX/+pf3YhDlHwSFQaeSBEfMTHSKvasT+1om9ATJMZMWhdcmhc8Mvss4sMGtRMOrfMbV1C50el/PIUQMP6Dyi1jGCICiI8YDDwZPf9DXxC0N6YwNTZsULgvgZFSaZ53WXi9ed0ViSS3GAKqH9o0zrj0PZokvT+GnlARAuonbJrnXEJHEDjh4v8C4QlUU8HIaaR3W6T3x8jfnWD860kyd1VJ31ZHWd+UvzVBUWDf0+cZuXOO2kySqQ/6OfnCdilOlUgktxxBTMFNKCQWQuqj6300GwBF4cieIgCGH/DcWxOR+G4wMqWUdEf4RBXcgfaEx+xLDeKDBu11NPUu/jz63xkCe1v0szsEQSoSp9bvUEBTIBD0/1JgzUcht4VHFdo718YQsHKkTXK7SWKbiQgFtY83v3Cy9GaL9oTH0KfTaDEVEQqSO03sWe+a828VFZI7l9eNSm83WXhz5dpV86xL86xL32NJ8ncnSO+L4VZ9pn9Ro3HGkbm/tzgy/rc6pDhVg7HfzWH1Radi7qUGjVPXV/1BVUHd7qFv9wjLKl7ZgDEfVZ5tyTrj2yrz7xdBFVj5m1PlZPeJJqYnaMdVTtzeZZFzDdBbIftfa4ICpx7oXLxcD9TF/I8d77ZxYypCBRRImNH/KIAAYwGsuWi9NrCgcQc09wMqVM7GuP2VJn3jHn0TVTRPIBQ4/mCC6tA6loeVSCSSW5TMWZ/cmYDQADOnsf2rBUQoUA0VIQShI2iccii/18aZk7NSieRGcb2OVHDruVJJJFuV0O2e1KQaCva8v+pFHK8SMPdqg9HfyrHrz4o48z5eI8BIa4SeQDWihYJdfxotGk3/skb9+Mq59dTPayS3mww8kUY1VBRNIbBD0ntiJHeYNM8tJrSF4DcDjIzGti9lMfI6+iWOjVpMXSFMnXu5QWt8/aumSjpJ7jSXnDQbpx3mX2tIYapEIpFcJ7F6wMArIUEcZp9VCa21r96nJ1SCdogzf53zdyFItXysfh1nwV/TipXVD9sUH0xiZjVAo3VhecF8PRMvJBuH4kNJ4sMGbsWnNe4y90oDt3R1cWpsSKf/0RRGTsNvhMy+2Li+SlHXgFcNqGQNclUPRVy7pjB7ZzwyeFHBnfcpv9dChNHYXgpTeyM16dN3wmf6LoOF/cbVd1hHhKowNZRgajBOseQwOGdTXHBIPp1GUdlQ7vWtrEp+Ql6DN4tq1uKFB4chDBmYs9k+26Sv6vDUu9MsZCycMYPWBfnslKwtmUxmRXJar0xPT/Pcc88xNTXFb/3Wb/HXf/3XKMrGqFa91VENhezBSCBf/biNkdYYfCb6Dr1GsPQ3EQpEAMmdFmf/ywJBOxqpKHpUccWvSwXf1cgcjJHeG2P657VbRpgKgAIDT6RpnnWZ+UUtMjbaIB/fKuqYfRp6PCrekd4bw571aE965O6K4zfCzV1pSbJuBK2QmV8sVi1TImHmlYTOoStwZn2cWZ/5N5okx0z2/h905n85QPXtHPlHSiT3NtkKj8ZkX5vqZIrqRIZ4buPMVSQSieRm0uxXyV4ImLtNEJpboHNfIzxdo5YwyLQ8jLQmxamrIVzf9ZHiw0k0B/wkNG7/xB8Xx/75NwXNXaC6YC5E2yr39yZMTTV9QgX8+lXi/AIm/qG6YeYba0V70uPMfyqhJVR2/1mR/N0JcnfGaZxxaZyyaZ53VyUWTR+IzFBqH9tUjrSjdbzLMP9Kk+ZZF0VXaI27a7reJ9m8yPjf6ri15ZIq7PrjAlpCpT3pRYu2PVZL/aQL8mXJCR7bdqz3Q1JW15M1w97V1yG9W0vF1N4f3AtBp5PtlZgQvS9s1kS157bFcHVBMlt0urJejhGj3HPb1xq9J7ZP26vrrAas3kvQP5w+veL35lyMD79+gNBT2fn0OAlz+Tv+oD32yd2viN7Fef5yHLkvy2O/WogGQOol12AYMjjlkK76xFsBuieYHchwYUd8ZbvLHYMWkqx6DI47DE3YqCEcvzNJTbegi3nlaLb3aylj9B4QMlPdByr158D4CWRnfBQu318IBCQF3v0O7A1IABfltY/deYqJD8dQbQ0UQXxHm+KT8+xNdJ7/A7HJno/5ndbOntsCnGn19dy27vfeJx2ZGlnVcehd3Owvh6H13rZblYDLkTRW54za9nrv72J67yPm+fbq+t2G3fv3oq3i/vaC3ks3uV0c/6/Ear6X1YzXVnMdAdw2PNtz253JhZ7bnm70fl+tpi1AQu/9Os0avT87DxZmVnUc7aD3699Ue7/+jVWMlbpVZRCtFQABAABJREFU2rgSJyr9V/y7ueCjAEefTZL/P04w/LksgS2oftyi8l57qYKaRLLubKDF7jVl8TNdjyMV3JquVBLJVsWrBtSO2WQOxGicdkjtXu4P8ncnaJ5xV70wYU/7nPvbEqk9FrF+Hauo4zcDpn5eJ7RDdvzhcgWhoWczDD0L07+oUT8RiVT9erhUSTW2aISW3hNV6xr8dJrGSYfZlxoQwvj3quQPxVE0hfhINA92qwGqGVVZtWc8GqcdCvcl6H88mgPIBKGNRfb2GANPpmmed5j+Wf2KixkSiUQi6Y1YPeDAy02CxI0TpkJUaV011SUTwasiBH0Vh2TLI9Hy6S/baKHA8hZjAb+Xp3nBZfIfeo9DX43AFpz+jwuk91qYBY3K+y0SowaxAYPUTou+x5LA5qiSKVl7zLxGciwysWyedZl/rbPqYjeyd8ToeyyFM+ejWSqapTL8XJoz/6l09Z3XEGtAx/BCSjmTUFv9fW4WNQafTBMbNKgcabPwVpPQ2YrBkBuHIgR3ni6xbd6lPqSysG8TpQ0oCgvFGAvFaK716P92luLDSVoT3tJ8bL1xUipmW6CEYqkysOQmoKrM9CWZ6UuSarrcd3yBYs1B+a0coR+ZS878qvf19luSrRpbXkuu4/yUSiWee+45Tp06xVNPPcU3vvENDGNjGwNsJUJHcO4bJYaeyZDeE2P6FzVmfl3H6tNpnnWxijpWv05r3CV0BTv/uMDOPykSOiF+K8TM66i6Qu24zfyrjSXRqmQl2TtiDDyRpvJBm/rJm2Oav2EQELSj+PBGqUKqaDD8+ezS3CFwQvxmyMyv69Q+ttHiCun9MYxs77kfEsllEUSi7F4JoXnO5b3/i4tZdOh7KIlXHcL+G4+ZX9eX8ngffPfqcfdd1tx1/R3g1dreK/7dUK4+1/i3+3ev+H3k+SzJ7dCuxPjrR/ch4zgSiWQrYz53rmNbJamS+YM8Y/9Lhemf12j9aNcVX+NMrXDFvwMsPL6cz68lVLS4gvAEfitE+FD+h6vn1k7V01f8eyZx9RzyfKp1xb/PV698HO/flePR38yQ3m9RP+XIufgase3LOeKDBlM/q+HM+/iNAHGdj189pZLZHwMNcnfFKR1usvBGC/7nle0UDQb/WZR/an92FuHD2ZTK6G9lif9QMP/tytL3vJPuubhDz6VxElpv84ktfM0ErZDJH1cZ+XwWRVVI77FI74nygc7/fbln41kzq+G3QmZ/U+/pnLYnb57wWU9HOUJ+I1z5XSpR4RzVUqPBtQJ6UsNIq+hpDSOloqe0aH8BC280qX54HUYoMhbYHRn/uyY20SrT2jPyhSxaQqV0uEXtqI2eVknttdCTKnpCQU9oxIajC2H2N3Va56WbpmRzUj6T5uPv7gUBez57joE7bl6SQair2HGNRDNg74d1ivMuSihQAHOxys3F/jtT84m3A47ffmXRruqH3P9yiXgrRAECDY4eSrMwtDphwo0kTMD8lwEfCAVKCEoIeb0ZuWmEUbIxOcHldOOqCWP/+MLNO2iJRCKRXBF/MSHWsENaFzxO/dX8Oh+RRHJrcq2OVHDrulJJJFsVRYuqVvrtkKmf11B1hdigQfGBRPT/I0nGv11Z9ev6zZDK+50i0MT2KIHHrfhM/bTGyOezGBmN/k+llsSpEFVV6IZmqmRvj9M859I85xK0Q9xSQGxgOTxnpFT8VkjoCVK7LFK7ll8r9GVEeCNh5jX6HktR+bDN3IurM0WRSCQSSXdi9YADrzTxLIXSs8oNE6YCOPM+qqFg5jTc8uUzEywnYGS2xdB8i2zDI1DBNTRaMZ1idWWitZFZ+2TeoLVyXHLhWxVUS2HXnxbJ3RFHiAZX8EaUbFU+NtjxhxlEIHDmfco9GpjoaZWBJ9LUjtu0xl1igzrtSY/GqZsrGkhsNxl9PktLwPF9V04EuxwXhanl91rMv9qbMFeykh3TdUbnmszcbVDara/OBXKDMfPLOmNfzdP3cJKpn9bW+3AAEIuiazUUBFKcui40kia/uXcY3Q954P93nMyBGJkDMQI7YP7VKyeQSiQ3gkajwfPPP88HH3zAgw8+yPe//33i8d4N1SVrg7sQcOHbZQafSTP8uQxzLzWWkjideX9FguuFb1dIbjfRrCjmWHq7ReiEFB9MkhgrMPWTqqzUfglGViN/b5zsbfFbeozmllfGe9cbs6CTHDNZeLtJ+e1WR0J2apeFaiiUDstno2R9cRcCJn9UIzZk0P+pJGNfzjP7Yp36sc0tci+/28LMaxhpjZHPZzn7X0uyCpdEIrml8JshM7+qM/RchtHfznHaEQRrEPePjxoUH0gSH14W+wgh8KoBxbeaNPIa07utDR3vaid0pn9WY/SLOVK7rZseo92qxAeja2L4uSivzJ71GP9u5ZoFqpnbYvR/KoWqL19LlzPhyd0VzfEX3mwuVff0GyELb7cY/kwGq6hfVVRpFXWa51ZXRGmr0jzrMv96g76HVwq9s3fGmHup0VMF1dpxm9zdcTK3xah+tCjgVCAxamANGCS3GcRHTIQQOAs+taP29Qk9P4HVp5PYZhAfNtASKqErcEs+RlYnuZh/JEKB3wjx6gFeLSB7sHusKHBC/EZknqXoCpoZiU8GnkhT+9i+bhG2ZG241eN/Gycasg4kthkoikLhvgTF+5MdfxdCIHyBoiqMfCFLe9Jj4vtr53otkdwsjv9gN4oiuOMPjpMeufkBxRMHU9zzVpXRcZtABaGAFsD4WIwLuxO4MQ3dDXnsVwuowdWTbe85XCHeCpkfNDm/J0Ers4G7ssVDWzKWWMorlknFEolEsqkIQ4pnI6MSVU7kJBscRQiUVdnSbg6u9zPdyq5UEslWZeQLWTRL5fy3yvQ/lkJPqjTPuehpDXvWY/Y3a1sNpXXeZf6NJn0PJel7NEV70qP2sU31o5VigLmXGsy91CAxZjL8uQx+M3LjtArRBLH/UymGnlNRNBABeJUAIQSKoqBoCka6u7DFzGoYWW3DVAK6pVFh6NMZvFrA/CtSmCqRSCRrQbLss+eNFp6pcPyxJAXrxsaxnblo1To2oF9RnDo03+LA2WhdaHwwwcntGdqWju6HPPfaJAC/fmCIPf+3ozftGb3rT4uoRpQIIVwuiTlLbhnGo3Hlub8rr+q605PROLN0uEX/YylCTzD5o2pPSRxrycWki4mRBK3ENazvCEF7yiM2aJDcad2ywofrZaDcZjYfZ2Hfxk3S65XQE9SOtincn4wMYdc72VsI0jM+blwh0C/jUCu5afi6ysIbLRbeaLH3n/URHzEBKcC5HFs1tryWXMv5cRyH3/md3+H111/njjvu4Mc//jHp9LUZNEiuHxHA9M/rDLiC/sdS1I7ZXcdDXiWgUuk0AWmcdhj6bJRcv/B6k8qRdu/pHwpbLlXEzGv0P5EiMWISOMsVOW9V6sdthj6TiSpgHV9ngYECicWKqe1Jr2uloIvz4fiIQeNWq3Qr2ZDY0x7j365E6yjPZIgPthFBFWUTFvfVYgrZ22PoyWhOYKQjkapc45FIJLcazbMuE9+rMPz5LLteaXP68Tihufp4VLwSMHzCIf2PC+hJDXvGY+pnNbxagGooGGkVs6gT32ZSmPKo9hu0b4Ch5FrSmvAI7JD4kC7FqWvE3CsN+h5J4rdCah/Z5O9NMPKFLJM/Xn0c3MhpDDwZzRn1pIqR1TCzOrk74sy/0SR0osmdYigUH0iQvydB6d0WpbdXxp3saQ8RCpI7zCuKU42MKscKn6D8ThuvHjL8mQwLbzXRkyrZg5EpklvxufCtCqF7+Um2WwqwZ33iw8aSODV/T5y+R6L1kYtrbYqiELQFA0+kCV1B/YSDairRaysQG9RRTRV7xiN0BHpSJbnLJD5koKgKXi2ged5FUYli1EJg5nW0uEroCdrTHs6sjxpTSWwzCX3B9C9rBK0wqoaaiSqjWsVovUQIwbmvl5f09YEjiA9FBpMXhddu1ac94dGe8q5LmCpjgd2R8b9rYwMrum481aM2RkolsAVBO8BvCfxmiN8IImV5I4rKKDqMfjFHYtRk8Nk0M79c2+RGieRGUjmXJvQ1Rh6YWhdhKkC1aPLKM0XSNY9ywQC1cyF230fRfTU9Ervia2072yRb9akUDT6+99oqZkkkEolEci0YdjThUIP1z2+SSCSr41Z3pZJItiJaIgraAmiWSu7O6J6+WGn0wrfL+PW1f2KXD7dwSz4jn88ubfNqAX4rpD3poehRsr1bCWhNuMy/2mDgiTTl91qc/0aZ+JBB36NJmmddnJIfVVBthWgJldxdcQr3JgCY/kWNxlmXxLDByPPRe+UPJVBNhdnfSDHkepO7K46Z17jw7Wt3WZVIJJKNivPTnR3bbH/lUlK12TmWDoLOZJJd/aWObaV2YsXvuhOy6/0mhbM+7ZzKmcdiqJZge6Lcse8/Kr7ase3N9u6ObT+fO9ixzXt6aunn2LBB/tmLi4FXToIx/q8nmb8nQea2GNtoMXyuwdwrDbIH4wRFjdkXGoz+xRw3M/VauSS8rv1tkoE/nURLROOeWqIzvl5pd27zgs6kHLtpdmyLpTodurOJzgT9qtP5Hqdm+zq2GUbng/OTr6cqnWO4VKLzDNfqiY5tXtC59mAZncke3bZ12zcMe0uSajVWKoRDv/O1PKXLQrbZeRyq2tnuaHVw+Rch2DtrY0BPybnH/+oBADItlwPjZajZBHZI7ZhNcnsGq6Bjz95cdWr5nRaKBnsU0FuCo7vyS38r/MGRjvaFxf+LDyUo3JdEBALlUPT929PezTjkLYNwlq9NNYhEe+cmCx3tFK3zOkzmO+99v8u17vudF+Yn76XZWqqjjed17tftfkjGOxP1Jr99O9W6T98rZdL/ehvH7kwz8pWjHe3Wkt87Otux7afzfahNyLwFsQmF6iOCQqZTPJ0wOq/bIOw8l7bbaap2YnKgY5umdfabQnT2X5/sm5Ru/VKXbq/b99Brak634+h6bF3GEVaqS1/9ieskCDuvm31/fvjyB6RGyVwSyc0kCAL+6I/+iF/+8pfs2bOHn/3sZxQKnX2v5OYT2CHXkn8Z2ILJH1QpPpqk79Ek2YMx2tMeXi0k1q+jJVRa510qH7SXkmS1uMLuP++jed5l8oebsyjCJ8eeqqmQORCj8EASvx4w9bMazbPOLR8rq590SGyzGXgijT3r41XW54QYOY3Bp9PEBnVK77RoT3QfN7enPFrjLoVDCZpn5Pcn2RiIAGZfaGDP+PR/KkXjOxrJz1ZQ05srS2P4c1niwwaVD9u4C9HY1qvJm0wikdya2DM+E9+vMPonBYY/cJg4ZIHau0BVcwUHXm7ixlRqxx1a427H+CaKXDl4/2KA219p0CX8sOEwcxpaTCV3V4K5l6UB31pQeb+NnlLJ352gftqhNekx+nyGkeezUYG6VcwBVU1BUZWlMcnCW01UXSF3V5zkbgtnLhIFxgYNVENh7tUGlfe6xFAbIc3zLsUHk1Q/ahO0ux9E32OpSFR7/NY1++lAhf5Hk7TGXUpvRRoYq6gjRFQl1+rTaU9eeY3AqwaYuWhCq2gsCUBP/bt59v2LfgBO/tUcwofBZ9IMfTrD4NMCRVMI7JD2tEdqZ7QGJAJBa9wlNmygakokVvUFmYMx8oeW16za0x6Vj9q0xz3sme5GQZcc4cqPbEWm9kFreaeh5zKk9yyvQ41/t0J7Sq6NbCRk/C/ilhanzvWQzBcb0hl8JoORURFC0DwvS2VLNg/tssnxH+wCBMP3z63rsfimSrmvu4W76of0z7jYcZVK8fI27yPnW+w90cTXFT64/9ZyEpBIJBLJOqOqTNxlMvqBy67X25zSgZtcVUIi6RkhuKaMio3ONX4m6UolkWxNglbI2b8tsfOPCmgxhRP/dg4zG7n0W336DRGmXqR51uX0f1xg958VARj6TGScVDrcIndXfMldsXHGoX7iovtiAquoE3qC2IBBbMCg9G4L1VBI7LWIDRlkD0aiDrfs0zgdJQI1z7uc+LdzkRBXQHtKxqXWG0WF/N1xasftKzqbSiQSya2E6QSEvoJnqITa1TM+DDskXfLpm3DJznoIDSbvMVnYZbBkA3yDKDyQoPhAEmfBZ+aFOrVjV17kF2EkpCu/00K1FEY+n2Xo2QyBHTL1o9q6LP6e/Kv56HPcn0T4KvbZOMnbZeLKrYISgt6OHODdUu9JrYdOz2MEIe/tLJLRFxh4IoVXD7Dnbv54xm+GzL7QoPRsP0MLbY7uzF323reKOsmdJsmdJrH+SKg390oDrx7izPsrEjQkq0MooIZbJ37UTOucPJBk77Em4zs7xes3GhFC5g2InQZhQvkJgbMdkN5CGwYzr6IoCm5JzuOuyFaNLa8lqzw/f/d3f8d3vvMdAFRV5fd///e7thseHuYb3/jG9R7dlkJPqqi+QuiLNXWNVfQoVnexqs21VJEXIcy/3KR+3CF3ZxyrTye1W8OtBPj1gPy9CTK3x2idd1EtheT2xTyYG3B/KXpUje9iBcy1Qk+ppHZbpHZZWH36UszzUoQQVN5vs/BGU4oaL2H2pTrWgM62384y+eMazk0ec6d2mQx+OoPfCBj/bgV7+srvP/9ak22/m2PgyTQzv5IFOyQbh9rHNs6Cz44/z1D/VpHU75bQshu7s1E0SO21yN+dWBI+zL0oJwUSiUQCUQXDZlGjeM6neM7n5BNxWn29VTbNzPloPhx/PEHi/zlzxbaJekCogBvvNALbaCiXjLFVQyH05Hx8LQgdQegLvFqAVwmY/HGNbV/Kkdxp0jzTe76Fs+DTGncZfDrKMbOnPexpn+pRm/w9cYy0hqIp1E/YVI60l4ridaNxxiG102LHPyow8d0qzsLyGN3IaeTujJPaaTH109VXeN3K6HEVPalRemdZ9HvhWxVyd8WJDxo9GX+0J13S+9IMfSZNem+UkzP/ejQ+O/0f5qNQ2OI5n/lVncZpB32x+GFsUCd7R1SldeIfqiS3m2TviNMe95j5dX3JkEqNKZhZjcARKBq4C9c+Zo0q8q7sCy4KU8vvtXAW/LVdm5SxwO7I+N81cUuLU6+EWdQoPpAkuSNyirZnfcrvtlb1UJJI1pOFE1mO/8NuELDz6QuYiY07WsmVPBRgdqC7MNVs+9xxpEa26uPrCm88mu9afVUikUgkkhvJ/B4L31TZ8bbNti9mGf/O5nQ2lkhuJaQrlUSytfEqAW7FJ7XbonB/AjN3SZhLYVWul6slaIWc/g/zjH05j5GJFs3S+yzsOQ9EVDkgtctaquTavOCSHFtZjcwt+Yx9JYdmqfjNAK8RYGZ1/FZIen+M5hmHwI6S71rSLG3DEBs00JMa9ROdFZskEolkSyEESgjiCmHYWNtn34k6A3PLfaKvKnimimuo6EmfwFIQKqhe5G6+o+Zi2tFDupHVOH97nOYOlcC68TbmmQMxig8kmX+jSflwa9X7h45g/LsVtIRK0A5v6FjjioiomrtqKOTvTmCfSZA42LzRul7JBkFoCo0Rlfy9CVoX3J5ECJYXkLY9Du/uY6qQ5PF7EyiawtQPV+cUv9bM5uPsmmpw4HyV0yNpPGM5GS1zW2wp6Sdwwqj62Ptt2pMeflMKUq8XPQgpNByOD+fW+1DWlMntcXaebFGcdW6qr2DpgxwTLwyT8BVa+wT1Q5FAVbIxSO4yyeyPkRgzIxHVh50VLCSSG4njLI+VT5w4wYkTJ7q227Fjx806pE3Djj8qYJpRh+q3QuonbErvtAjtax/AXCxQoCdVKh+2Kb29+nnBpThzflcxn55uMvhUGqtfJ3TEkrBz5oW1EyiZBY3s7XHS+yw0S6U17jL981oUT7xGjKxK5rY48WGD+JBBGAha510W3mxGc6BLEIGgPeVdturPrYzwYeIHVYY/l2Hb7+SY/U2d+vGbE0tM77MYfDpNa8Jl6ie1nkTDzrzP/CsNBp5Ms/BGU463JRsKZ84n/XvzNL5TpPnDPKmvLKBaG6/fCWyVyssFdn8tiWooNM44VD5orxCeSCQSiQRqIzrZ6WiAsufFNieejWNnry5QNdohgQZ+D+sI8VqAk1QJ9Y0fMHdmfcrvt8jfncDs07FlJcQ1oXkhqlKaHDNpnnMjk0M3JLM/tmod0NRPa4x9JYeZ0xl8Js25/1omaIbMv7I6w9D6MYfm2XnGvpIjd3d8aR6ZPmAx8ESa0BWU323ROL32eSGqqWAWtKua1mxE+h5NAiD8aPw38HSKxKiJkb6YoxOj/M6V5/W14w6J7RaJxXwdt+xTXhS7dpvPNs8tfweNUw6VI20UVcGvh1Q/tKl+2Gl6G9oC277282sVdfSkit8OCV2BCASBHdL/eIr4SHTcpXdbLLwmjWo3KjL+FyHFqV3I3xun+FDUmYWO4MJ3yngVGXiRbB7CczrHf7YbRRMc/MoJsts27sNo7GSTsXPRQ961VmY69c3Y7D7ZJNGKJiOVnM779+YIdRV9La0xJRKJRCLpkcqYQeG8R1oYpA9Y1I9JUYJEspGRrlQSydandLjF0LOZju17/mkf579ewqvduLlj0Bac+7sSRlrDqwUrEn3MvMbYV/MIXzD5D1WKjyQJ3JD5l5s0zznERwzy9yTQLJXpX9XI35XA6ovCdIlRk8SoCU91VnmuHGkx9/LGnePfCniN6IvO3RWnPSkXCCUSydYkXgoYedclXgkJVWhlNdoZDd9UUH3BjrpNouWTbAU4pspHBzO0dQ3TCzG8EHPxX04NMJoCJYDQgMBUqIyaNHIazZy+5FweN67Qn4bAUQM0sO81iCWW2zotg9BXUI2rJyUqhkLfY0lqH9vXJEy9lI1QqVEEMP9Kk13/pxaVX/TReDtD+oHaeh+W5CYxdb/JjiMu27+aj5LOf1q7opv6QCW65kspi13TNXJ3xJl7pYEzu77JKKWMxUw+xp6JOnEn4IPdeQBig/qSMBVg/DuVNa8EdqsTqAqOoWH6W+u8ClWh3GfQP+0wbSiIG1htInBUqiczVD7O0hhPkd1f5fSODF4/kVmSZN1JH7AYfCqNoioIIQhswcKLDfzq+j/HJbcWX/va1/ja17623oexKZn8SRXLMlF0BaugkzkYI70vxtSPq9hXGceopkLmYAxFgdaEh1cNyByI0fdYEnvGZ/KHVbzqjXsO+vWQiR8sm9xu+50cigahfX19kKJHFVMyB+PEhwz8ZkD1gzZOKaD/8RTb/7BAe9xF0RQUDQJb0J70UDRonHa6Cle1pEp6t0Vqj0V8KKpU3zjjMP2LGs2zrqzedI0ErZCJ71UYeDLN0LMZig8EVD9qUznSviFVZhUNCg8kKdyboHbcZu7lxqrep7UY59QzmhSnSjYcalyQfL5M/e+L2G+lSDy+sSr8ihAWftyPN29SOtyiedaRc1iJRCK5DOUdBuXtOoqAO7/XJDkf9CRONW2BF1O5mkOjnlYZPOcyu33zuIY1zrjk705gpFQ6JW/XR98jyeg59catlV/gzPq0Jl36Hk3ilHxGPp9FURSaZ1cv/Axdwbmvl0mOmQTu9Y2TQ0dQP+FQuC+BnlRRdIX4kEH1aJu5l1Y3fu8FM6+R2G6SuzOq8lo50mbulca6GlauFrcSnZTBp9Pk7o5jFXTs2WjuYqQ1qr2Y0AmY/tni+tk1mNz79Rs7P0rvsxj6dGfO06W0Jl0WXr+17uPNhoz/RUhxaheKDyQJXcH5b5bxb2ASo0RyIwgXVPh5EkUTHPraB8QyG9fpYmCize5TUVJEoEK+7DEwU8JwBTE7QBXRGKCS0zm5P00ja6zvAUskEolEApx+NMY932mQuysuxamSjYmALenjcQ3BMelKJZFsbVRLoX7Cwcg2yd+dwK36qIaKmdUIWiH+GghHFB2SOyysgoZTCmiec5YS/xUVNEvFrQYd/a5bDjj7NwuIAPL3JkiMmEz9tErjbLQIkr8rQWvcpfRui4FPpfEbAXOvNKJjFpC/J05soMscWJZEW18UKBxKANCU1WwlEskWJTPus+0tBzurMn6fieaBURYkyz6aLwg1haZpUCpYnNllMN9nEegqQbD8jNL8kEBT2DVQ7nj9Ujt+xfc3GyF9pzwQcRjz4T0Tqhoogm+//CzFkQq3PXCWl793aPn9kj6Dn50mPtJGuUyl18SogWaplA5vrcVbcyh6HtXfyElx6i1EYCmMf7fCtt/NkdxuUXwwyfyr3a/tmONzcLzCZD5BoKocmChTPtKi8v76Vw4UqsLZ4TSDZZuR+RYj8y0WHkhQuDcab3mNgPK7bZnUewMQikLDMrC8rXduJ7bHueetKrv/vEjp7RaV91trltilxRQyt8Ww+g0++ssiIlBIbmuy7bkJ8gcrHFu4fW3eSLImZG6LRcLUUDD5oyqtC9JcqCe2amx5LdlESZybnfa4h7c4zajjUH6vxcjzWYY/n+Xsf1lYYc6hqGAN6MRHTBIjBrFFkSUC+h5ZnquU329F46ab/D02zjr0P5oiucuicWr1a4t6SiV/T4L0fgvVVGhd8Jj8STWq6LJ4z9rTHrl74lh9OsKPKptaRZ3MgRgAxYeT1I7akfFaCFpcJbHNJD68XCHVnvOI9RvMvdzAb8jO4HoRAcz8qk71ozaZgzEKDyaJj5hM/ri6pn1tao9F3yNJ9ITK3KsNKu+tfqzv1wNCT5DeY8mKXZINiZYNiN3XxH4jhXWwhVbYOHOZ9qkEzkSc/i9Nc+x/ubrASiKRSG55FIXcOQ9FgJO+TED/ExjtEDd+9XXyizEgwwkx2yHFcRffVFgYNTdsJVV7yqM14ZK/N0H9xNrmIeYX17Xrp2zchY3z7LwZzL3YYOyreXb8UYGgFXL+m2W8yjWeA7F2uQGV99okt5sktpk0TjtRDkmXaqlaXCF3Z5z4qEnlSPua5pHb/yCPoijY8x6N0w65u+Ikd5mU3mzSOOMSuhs/wFF6q0X1I5v+x1MAOHM+sy/Wr2jWeRHVUjDSGkZaRc9oWAWdyoftdTftXIHCCmHqwltN/HqIooGR0Zbu4YnvV29cHEPGAruz8W+PDYkUp34Cs6ihaAq1D1pSmCrZdIRN4LtpEHDHV49vaGEqwPD4ss+LFkJxzkUoIBRoxzXmByzO7koQ6r1NQCQSiUQiuRmkZ8NrclGSSCQ3H+lKJZFsXfSUyq4/LQJw7uslSm9eXwW0big67P2n/Su2VT5ss/B6k8KDCbK3xVENhcAOaZxxWHijSdBeHiAEbYFqKuTvjhN6Ai2uMvblHFZBZ/bFOtWPbPb8kz5UQ8FvhcQGdEqHW7ilIFpcUABlcdghkGOPdUbRYfi5DIltJjO/qlM7ttbetRKJRHLzmfjWHUs/K6Fg7GyL7W80qYxpTN5vIrQoWcN87hyXykxLP9i/9HMcDyUQjPzvz+JWA6y8xugXcwDM3KdT3aktvQ6ApXrEGiGJUkB2OsBshmgiesipvkC3ITAAz4Azlxg1iOg1FiZzK4SpAEFTZ/Lb2wDQvlinoncKYPffGceZ929oVfX14OUnDAaebpO9Lc4H/6yP/v9HCyWz8jM+O1rt2O+Fqb0d27Rc53hKVXs7X7OlTldn3+5cghTxziTnPcPzK34/UenvaOMFncmdo32Vjm0jyc7P+mT+eMe2GS/bse3vTt7bsa0bYdi5XqHpK8+TGetcm3GdzvPh12Md29JdvgfbX963/5TLtiMO/JO+pW3ZO+LMv9pccW8CaJ7g8b85CzGV+OEGn97fQDWVDSFMBdj3Z4cpPpSA+5JL2xQ1qjpz6t/NIbbW7XrTOf5XD3RsU4woAUsRgrTjMp5JoupdJhpK57ZUrDMBqu12GuoEfuf9Kj5x37hOb+t+Qum8CJJmZz9i6suJZcEIfPDpFMXTHsOGQuGRJM2sRjOjU+xrIJKCYDiAKK8HtctnfTr3cce2/fUS3/37R2g0YgwMVhnZN8vug5MkM8vzgiOxsY79Wn5npY65Zqpjm9PlvHXDinV+fiE6kyt1vTPZzvlEPxR26VutWGcyXLLLtnI12bEtDDqPo1brfCaLsEsyaJfPUK0mOrZ90oSi62stMvWjKsOfzRIfNRh4Ms3Z/1y6bFuJRLI5CNqCximHvkdS7Plv+vBbIYEdoqgKRkaL4nROSHvKY+GNJvUTNqErMIs6RkolaAva6yS6u1iRtDW+uoRm1VLI7I9ReCCBCKD6oU31aLtr5Ra/GTL/SqdhiRZTEEDx/iSpvRZaXEVRIHAEzqzH9C8XK6S6gvz9CWL9BvFRQxr0riH2jI8906B+wmH0+SwDT6SYfaHR8/6qoWDmtShn2BEoOpg5ndigTmqXhZHWaJx1mPhB85orAosA5l9vMPCpNMIXzL+2tYydJJubNw9F41ZFtdn+hwmm/+csk/+wcv7/Jp1j8Uv5woeVq77PiHXlNvNe5zheCHDezKFuc2kM6ciFHIlEIrky8c+dAQVGvlakdtYl+Is5Lo0cXM7aMv47Obx6QObfTF/x9YNWyNTPagw8meLQjE/oCxQVhn9WY/z7lSVB2/g377ji6/T93oe9f6jLEP5oz1XbHP/fovjdXN3msaMz1P+ng0wVl2Mu+//JW9d1DFM/q5E/FO9JyLfezH9//1Xb9P12Z6z/crjlgNlf18kciDHzqzp+c2MEm0NPMP6dCqhc9nuxijrbfz+/9Ht8yKBUbPVeAVeF1E4TZdH43KsGxAaNaO6c0hh8JkN81GbmlxurGv3lCFrhcuXTq5DYbpI/FMcq6mjWciAx9ASqoZDcbtIcd3HmfGrHbUJ7ncdul7z9xA+rtD4hgq6fdhCBkENMyaZBilM/gV8PEEKgxaSLkWRzEfrAdzKwuAhXOZchPbL2yblryZH7sxTmXRxLpZ3UcXV530kkEolkgxKGDH/kUjjvobtACLO/6X3RUCK5mShCoIitF5XYip9JIpGsHtVU2P7VPEZmef44+GyaC9+qrHlAVvgw/1qD2ICBVw8IHIFb8tnzT/oQoaB0uIU965PeY5E9GCd7MM6Jv5hb8RqhJyKhTkGn/1Mp7GmfC9+t4Mz5FO5PoBrRHD4xGiUsJ7ebjP+giqpFCUdaUqX8dksGm9cZRYPR38phFrWo4s64rB4gkUi2FpmKx/6PaqQaAXO36czeblyxWnf/OYdYM8BOaqQqPvkZD+NLuRVtRCAYOOxT/NCntl3DqgqSs1de/PdjMH2/TvpCSHIugEKAst+FmIC2wlh6AdUICX0V3QrI7q5zpLWN8LxO+JM0AMEP0hyizsxeAyetoYQC3REkti1Wp9mCzL4QVTXK35Mg+HoC5XYb7fGNIT6UrD3xS5LNG6cjQxNnvjOLRQkE+99sYGQ0xr9XYcfvFwCYfbHeVcywXlzqzj73SgM9paIaCnv/eT/nv1nGmdsEmVObDSHYe6GG6YVM9nWK/7YCblLl3MEEM9stsnMe6XJAuuyjz+gojoIwBO6TLuHY5e+FMFBol2JUz6epnMvw6rk0+UKDr/2zX5DNtSiFnaJTycYidGH+9SZjX8kRenJS3StbNba8lsjzs76U323TOOOS2GagJ1VUS4VQUDsW0p70cBb8jjiaM+vjzK7P8V6kPe2R2mUx9pU89WM27SkPe9ZbUd1bjSnE+nSsfh2rzyDWr2NkNEQgqB23mX+1eU2VbYLFZNu5lxvMvXzlttUjLQr3Jhh8Mk170ttQ48atQHvCo3nOJXswzsJbLYIeEuQzt8Xo/1QKtUulL68R0DzrUj/pYE9ff7yy+oGNoir0P5bCnvW6VnCSSNYTEcL8Kw1GvpAlucOMqkevM+E5E1HWMZ6orPehSCQSyaZCNRXsmd7GL4oOVp9O81xv5imNUw7tKY/0HovGWQctprLtt7MMfza75hXs14pyOkYlYXLwQnmFOPV6aZxyrqni5lahfsJZ82q0a4GiKww+nSa12+LUX893CCS1ZKexn1e7ugmNnlLJHIyRvS2GntRwKz56SiO9J4Yz71M63MKZ97D6DBpnNt55uR4S202KDySIDRi0pzxKh1v49QCvHuLVA0JboCfVSLjab5DaZZHeazH+ncq6mmQqGsy8UGfwqTTDz2U49e/nV/RRq63yqidV1LgOc1dvu3QMMhbYFXlOrg0pTr2EvkcTZO9IoCgKIpQXlGST8XIc2irsdeCMyfhrw4w+OI26ge/yUFeZH7rEGXwDDvolEolEIgHITQQMnvQQQGVEp/RvpgjXf61DIpFIJJJbjuydcYyMhlPyKb3dYvi5DLF+g+ztMaofrn0ly/K7bWBZ3JG7J/JrVVQFRYHWeZf2lEfmQIzQ7TKpFXD+78vocRW/HS7Ne7N3xijcn6D8XovmOZfkdpP8oQSqqbL9K/kVL1E/7lyz471kbSg+nMTq1xn/XmXVCwASiUSy0embdTj4fpVmSufth/PEtn1iQVoIjJyGZimEviB3R5zskWVTxECD+VGT8C/nMIs6zfPuUl+pfXeU4kc+hRMrn2N2SqW0Xaed1dBdQabikT8VoNsw9LZPqILy2SbK2Mo+t5isdP0M6nYf5X9XRpw2CH8VVbEYPOkBy8ktlSMtmme36EReQOmtFuX32uz7n9KIoxbifhslJte5tiKGLXDjChP/dv6Kbu87PmqTqvhM/EN1yQjFrfjUj2+gpBMF4iMmYSA4/b/NIwLY/tXlsbBV1KU4dS0RgmLVZu+FGsW6w7GxLPWkibqFnXDspIad1JjZGf1+qH8SHDBfMjF/YRIOh4hcCJYABZSGilJXeLt5B27DBKGgaCGZ0Qafff4dDt5xAV2Xi5mbieLDUULn5A+3pkGFRHKr4lUDqpssVlZ5r03znEvxwSS5e+IUH0oiAoHXCAmaAXpaw0hHZnyBE+LM+zROOzjzPq1Jj6B1c54/oQsTP6iw7XdyjH05x5n/KKtOXyuKBrEhg8SIgZZUqX5kE+vXSe22qB2zexKmakmVgadS1I87VN5vI4RYEmS7lYDQWftxXHvSi97HuLxh1UZANRTiowbtSe+aRNuSzUvznEvzgkvfYylaF0rrKiYQArzDCdRhD21Izl0lEomkZ0RUDd7I9VbMSFEVFI1V9flBK6RyJFrj9+shkz+pMfp8lsGn0xu2WuTp4Qz3nZpn53SNs4PpKxqIrjep3SbOvI9XW984WWxQJz5s4JQCCEU0lt3goTurqDP8hQxGKrr+zYyGba8cR7TOu5z4izkUDfS0hvDEFdcCjJzGwBMp4sMGoS9onnUx0iFWUUP4gtlXG1Q/speMnLaSCU1im0HhwSTxQYP2tMf49yu0J7oL3xVdwZ7zUXQFq6BhFnS0hIrfWL+LZvizGZI7LAAqH7Z70tEU7kuQ2G7SPOtQfn95n9HfzpIYNXFdF/7dDTxoieQKbGDZ2vXzmQ+uPoAIQ6i8UqBxJIMIVLSYz7bHJhn8lwtX3G/Gz/Z8HAWt96paIZ1uB1fCFb1XmnyntaPntlU/3nPb7dbqgpEPJ0723NYWRs9tX27vWdVxTLm5ntu2VuF+m9V7dyQ/7ff13BagmOpekj10YeFkFiUZ0PfcPPN/PYSwVapuAl25+pPqo8bwqo4jY/Se8BsEvV/Tcav3AU/MWF1QJ2X0nnBxvp6/eqNFvHB19+zxhf6e2x6ND/Xcti/e+/U/Xs/13Bag7fZ+H6pK70FfuxK7eqNL0BK9f+dhrPdrSVV7P+bTM6u7ZxW190FrIdN7peN621rVcTh2731YMtn7/W3qq/hOwtVNljWt93NnaL0vPq6276i7vZ/rWT3dc9uZRu9t7xu40HNbgH6z93HHH+Te7Lnta+3dqzqOj1ojPbedtXs/H5be+/c90ex9vAbgBpcfV3mL1sWTey0mDsbJb505umQrIohWw7YaW/AjSSSS1WFkNfoeWnYKHX4uA0DtmE3rMgHmtabyXpvGaYfCoQSF+5MkxkwUNRrrzr50mXFYyIrFAsVQyN+doHHSYf7VaJ7fnvRoXnBJ7bZIbjfxmyHN8y61j+2blnwmuTyZ/TFqH9tSmCqRSLYcIxfa7DtaZ27Q4uM7M4SaQozlOKoSCHb9yib+R4WlbaEnaCdV4ovPtkBXOHt3ksKZCTizcrKsBJCYCwk1aIyozN1jUNc741T2blg4qLP91y5ChekHDHaNra7PVVRQ9nqoe8u8f3YbyVLAtvdsNB8uHLKw/2IVNsGbFOEJUEW08mfKCdRWpbzNYMdhm9Rei8p73dejcjMug+ccztyZwJ+do+/RFIEdcu5vyzf5aK+AAoPPpklsM5j9TYPENpPUHgurT6f8Xov515vS0HQNMfyAe0/N01+3qSYN3rytj7l872vBWwoL3GddtBMa2riGOqmhuAqEINIhIiXoGysTyzrE8g7poSaqLrgrdm69j1yyStSESnzIIHTEuiaZbTq2amx5LZGnR3KNeJWA6Z/VQAGzoBEfNNAzGnpSpT3r48z5OHPe+iZ46xAfMUCAFl9dLoxkGSOnMfpbWYy0ht8K0RMqqV1R3kH1aJvZF3pbz0/vsRBhVPV2WYB5Y4TZ6X0WmQMx4iMGzqxP/eQGMrX5BMntJoOfTqNZKm7FJ/QEIoDpX9Rktd9bhPlXGmz//Ty5u+OLBqPrQ3jBQMzrGL8ljVAkEolktXi1gMz+GI2TDvZV1l9DV9A875K7K07l/Wvr99sTHtO/rDP0mTRBK2T8ml7lxjJVSHCqmeGO82USjs9HOwpX32kdUE2FwWcyePWA83+3fvHm/k+lyN0ZJ/SWjVVqx2xmfrUxxccXGXoujZHSaF5wSY6ZhN7lgwwiiOaRVyMxaiwZVJ79TwsMfy6DWdAov9+m8kG7ozLrlkCFvoeS5A8laE97TPygQmt8Zc6QnlRJ77OIDRrEhgz0xTmuU/KpfNCm8sEGyMVZFKGHvqB65Or9W+GBBIX7E7TOu/Q9kiJ/T4KzXy8R2lcWMF8RGQvsjjwl18SWFqdeDXvSYvYHQwhXi0SpT40zePeVRakSyUak+VoWhEL6iWigl7i3TvOVLKe/vov9f3ZqnY9OIpFIJJJNThiy+70WoQIzu1YnDpdIJBKJRLJ2eLWA6V/VsIo6elLFmfUpH2nhLtzcSgl+PWT2xQbtaY/ULovADVl4s0nz3NXdK8yCxo4/iBaS7FmP9H4LRVOwpz3aE9G/rS+d2VwoKqCC2aN7r0QikWwWCg8kKB6tM749zskDqQ4XbtUVjL7hEK8KasdshBCYWR0joxJvKlSLOtkFn2a2e/+oxRXGfu3ixxXOP23iJxdf/zJ+EkFc4cwX1mbO7SZV3KRK3ykXN6mysNMkefXdtgTKsI/4KEbwgzTKsBf9PhSg9O4/KNngmIsJBl65cwys+gLdE4x9bFMt6szuMCmoUVWhjVZNKLXLJLMvMrAceCKFoim41YD5N5qUD/du5Ci5MnHHZ6jcYudsDT0UkSg1F9vQlRduCgoE+wOC/UFX09Uducl1OCjJmqLCjq/mUDSY/sXGTkqUSCS3IALcheCmxzQvoppgFnRUQ4mEk0mVxDaT5A4LI6OiKAoiECy80d08X3JlFA1Gn88SeoJz3ygRuoJdf1JcElKu5rymdlu0zrs3dCyvJ1UGnk6THDNpjbvMvtigftJBbODixIkxE81SGf9+hfw9cZLbo1jC9t/LM/Wz2mUrJUm2Dm45oPJhm8J9CWrHnXURFQgB/jsJlD4PdURecxKJRLJa5l9vsu23c4x9JU/tuE3lSBsjoxHr1xFA+XBrxRhI+AIjrZG9I0bjrNtTFfpP0jjlMBdXGPhUmv4Zm7nB1RXXuYhqKiR3mOhJFS2hosVVFKLKrqEv8CoBjTPXYPShKHy8PY9jatx+vsyF/tQ1Hd+NJnQFM7+qrWuFUtVUyN0Zp/JBm7mXGvQ9EokU7bmNbzTduuBh5nSsPp3515u4XeL8V+Pi59cSKoEdYhUiOVjjjEPunjjxUYOJ71dpT27NMYoWVxh5PotV0Jl7tdHVxLNwf4L8fQkIwZ7xqH7Yxp7xsGf865tfqZDaZaEnVOonbIIuwt/4olhY0UDRFBQ1+s6EgMq7bZySDyKaO9qzHsntJqquMPKFLOe/VSY+bCA80SncVyF/dyTSjw0ai+dCjeZBP6kx8+s67QmX/OPX1rdJJGvBLStOLb+Wp/ZWDhTIPz7PvgdXV5VMItlIBBUdEFi7ogFt4p4myrhG43wae8EkVpTl3SQSiUQiuVbUENQA7JSK1QzxY9IpWCKRSCSSdUFA/ZhDnY3h2l4/4VA/sbpjGfnCcmX39N4Y6b3LgeHADnEWfCZ/VEVs/HWTWwMFig8nUTWF6lF7vY9GIpFIrovSD/ZHP4SCXUdaFC+4TNxuMrdPI6ss93GTpehZted0ndRMlF2QOhjDjyt4CYVGUiF3NiC7ED2sGgUdRRFMf+fgivcbHLfRP2jg6wrlIE7QjoRQg6lOgYiudGYxzDrpjm0/at/ZsS0UnQKri0vBQo3EehtLkndjOfb7bVJ7QlK7LRKjFlosTq2aYO7lBq3zy+sEn3nnWMe+fUZn9Z7vT93Vse3CbKdjexh0Ebp12Sa6fF9uuHKpsuV0Vtd1nE51bV3rTNo44fZ3bNPVznah6IztJKzORI1MrPP5P1vvTAoyjZWDN73LsT0ydrZj23gz17HtwUJndca3710+3vRnM7QTKuf+153L72+H7H+7wb4fVwAIVPhgb5Fay2TH7qga6eSPN1Yll8ZZl9nf1DEyGl49oHXBXd8qYZucE//hvuVfhCDXcLnn3Bzb5loECswW4ny8I4eTUlEjK/Sl5qraed5F2HmPlKrXLvOPJ1bOm/Qu71lvdFZyFWFnnzFb7bwH413uX9fvNE842+jsv+7KdwpRf7TQ2ff9XL19xe/dnl1T7UzHtm7PqbjRebxal3PScjv7vm7nLujyfdld+k0+cSxKF2Fut37a8TpTSrq1U7qFzbu8RzcUtUu7HvbV9M42J/7jfTxyZAat7nJmOAVfS7PtnTKKBs68z/zrDUI5vZNIJLcg/U+kyOy3UI3u65yhL2hPeVSOtGmekTlG10ps0MDIaIS+YOBTaYxLDJ3Of7OCuEJlpEtRLYXYgM7sb3qrsnotJHeaDD6TJvRE10pDG5WLldNUQ2HyhzUgSvYe+kyGkc9nOf/3ZbzqBlbXStaE0pst0rstxr6cozXh4sz7OPM+QSsk9LnhgtXwnEk4Y2A81rjlvX8kEonkWri0WmRi1CCzP1ozd6sBekJF1RXmXloeB82+2CC9N8bAE2mSO1wmf3htsc7qBzbJMZM98caqxalaTCF/b4LMwRiaqRI4IUErxG+HkdBMAdVSyRyI0fdIEvWMy/yuzlj31SjWoqDFYHnjGvg1Tq/vfCF0BfaMR3zIID5skD4Qo3nBJXPAovhggtrHNvOvrp/ZTmKbQfHhJPXjDpVPVMOce7nB3KsNuMahysBTKbIHo4qxIhBol+SxmgWN1C6LhTebW0+YqoKeUPEbIQNPptFTGhe+XcGZX7k2o2gw+Eya9N4YpbeblN5t9zwH64Xig0kK9yYQgaD4UJLaMZvQi+bS2qJwPb0vht8MCF2BCECEAkRkEpXZFyP0BSIUaKYa/W0REQq2fSlHfCiK607/orYyHymMDFIS20ys4nK81khrbP9qHnvGIwyi60IiWS9uSXFq7Uia2ls51ETA8O+Po6flYqdkcyNcFT4RP25NJ0AVmFkZNJZIJBKJ5HoIdRXfVIg3Qm5/pcHkPouNG/6RSIgiEWILBhq24meSSCS3HOe/UcYq6sSHDeLbDBIjywtSWkwlPmwsVjGSfd56Y/XrDH0mjZnVKb3dpHFqY4iiJRKJ5LoQgn2Hm+RmPE4dSlDb2aXqqRCkGz7bJptLIedjvxsDNcq0Uz1B+kKAFkC9oDGzs3u105lRi2zdZfCcS6rsUx24+aU7G306xXNbbAG+BxqnnOi5pUTJCMOfzTD6fJbGGYfyuy3sGemCsWlRwMhqeLVLEq2FYO+7Tax2yIe3ZXENlXrawLE0lFCQORjDnvVont1ga0UhVD+S6rC1xvACHv5ojkzLo21qHN2R5fxQikCLenT1WrOeJJJNRKrpUqhHfd6uqUZUvWRABwFWn07mQIzqR23mXmlecyLglmarxpbXEnl+JJuQ3D1xcndECczVj228qk/gRonMwhU0zzt4VdkprgXtaY/ZF+tYRR3VVFA0mH+tweDTaYoPJHpOks/sj6GoCq0LN2Ycr6dVhj6doTXuMvOr+g2tzrrWtC64NM44DH0mw9RPa0vVZad+WmXPP+kjMWpQleLULU/oCsa/VyV/KI5V1Envi6FqUexKhILGaYfGaYfmBW9NBQkXUTKL11hc9p0SiURyLaT3Lq8rTP+ihp7UsGd9vGpA7q44fY8mqX1sLwnPYv2R3KU97VE6fH2iw9akR3GnhekEuFaXNZLLkD+UIHtHVLWw8kH7skYIig79j6bYrivU+zScdO/vAVCPGwxW2hyYqHIur11TZc2tRKLqM3zWYWZs+ZoxMirtWY/c7XG2/U4OvxngNwOSY3HCQJC/J0HoCEqHb26Gp6IuCiP3xXCrPv2Pp3ArPq0Ln1inuo7hg7I43gnskKAdLolT/XaIPesz93JzhVHpViC9zyJ3V5zYgIE96xEbMGhPeww8mcKZ96mfdHArAaqhMPhMGquoM/WTKo3rNV1SQE+q6CkVUBCBIL3Xon7SZvbFBrm74mTviKMoULg3AYAIBHOvNmiccgjscKUpvQrxIQOrqKMYCn4jQE9p9D2UXNwXYgM67SkvyicaNjrM8ktvteh/PMXMr2oYWY3AFtQ+tomPGGQOxFAthelfdZoEXxEZC+yOPCfXxC0lTg1dmP3hEM54HMUMGf3jcdSYnCBKNj9qxoc5A3fSxByJHqahGw04Jl8YZviJKbTVG7BIJBKJRCJZ5L1Pp8lNe+x5p01mzpfiVIlEIpFIJKtHjRIm2jMe/Z9KrXAztGc8SodbNM+716RLNfMaO/4wqgJ08q/mZOXV6yS5w2ToMxncss/5b5Zx5uQJlUgkW4P+Cy6FaY/jDyQpD5mYLPdvSijoO+Nx4ESThB2ueBxZNYGTixa8Q0OhldFIlwPOH4yRn/bIznu0TJ3cgocWCCpFgwu7EvSNuzSzGvXi+ixF2RkVwxGoNyAJcVMgwF0IOPdfy+TujpO7K87Yl/OMf78CG6QSvWR1pPdaWEWd1oSL1QxwkhojpxwyCz4fPZJiMp5YarttvMne03WMUZPpX9TW8aglN5OBsk2m5fHWbX3M5mPIEj6SWxHXUKkmDGJeQCltcWY4Rf9/+xEAsUGd4c9myN2ZwOo3GP92ZX0PViKRSG4SF4cEih7FEWd/vcpkVUnvhFD9sNOERTUVBj6VRgSC0tstRBeNgVnQyNwWIzZoEB80qB5t4zdvTF7j4NNpAjtk+pf1GyLcu9FM/7zG0HOREVP9lE39mIPVp6Ooyg07Z5KNh1cNmH1hsaqeCmZOQ0+oUVWq/TGGPxsjDAT1EzahV0U11u5aVwsB6piL/0YSbaeLsjrdkUQikdzyxEciM8vKkRaBLSjcH0M1HKrVgMoHbTK3xRh8Ns2Fb5aJDxsMfjqDVw+Y/FGV0Lm+/rxx2iHzdIa736ny1sP5nuNnQoDfDFl448riWOHD3CsNMnfGSS8EPYtT9SBkqNRivC/F3qka48Ukbnmup323FEKw42hUbfTcbXH2vtciWQ8YGHdpfC4DSrSWTxgJNWdfrlP/2EG1FBLbzKVqombh5j+cjZxGel+Myodt5l5sMPJ8lsFnM8z8okZrfG2MVGd+XUf4Ai2hEjqRIUfrgoezsDXzGeIjBkOfzgDRvZvaHYmUrT4de9ojucsie3t8qb3fDBj/XuWa8jsyB2Pk74mjqMqSMFVRV/YPIojEoKEjKL3VovRWi75HkuQPRWsziqbQ/2iK/kdTkWHKKSeqnioEWlxFi6kYaRUtruKWgxU5Q1pCIfRFZGgPZG+PM/ubxor3d6sBIhTk7k4w+5v6khlt86y7ZFDqi1vPtFeycbhlxKm1I2nKLxUhUDAHHfp/a1oKUyVbhvSnqiycjlP7UZHCn0+h6jDw8Bzz7xaofJindjLN/n98Ej0hr3mJRCKRSK6FUFeJ10MUAAV2/KMCRloFAeX3Wiy8IeWqkg1ECGzF3EM5lJVIJJsARYsWHTRTRbUUVFNBi6mk91jEBg3sGY/YYGfluNnfNK5pwUBLqOTviZO/Jwp2h56QwtRrRNEgd3eC7MEYRkajec5h6qe1roliEolEslnZ/X40d01WAprZENLLf+s747HtiIO/6LpczRiEqsJsfwyRW7mQmV506t77dgvLFjSyGpm2jZ3QqOYNhs/bBIuv48RVDCfESdz8RAA7FRk4phaCW346UXm/Tf2kw+4/K2LmZMbkZiS5w1xKwsjfnUD5oMX5A3HGjreZ3BOjVjS46Kam+SEHTtaYGYjh/r8nb3l3/VuJWjKaa4SKIoWpklsW19R5+dDQim39i//bMz71Uw75uxOEzq0+OrgMWzW2vJbIS0eyCSm/G80HBp9Jkxg1GXk+w+QPpYHJzaT6gY1qqhQfSJC5LU7znIPfCiEANaYQGzCIDxn4zYDWhEf1ozb1YzfGVKj4YIL4iMHED6qbUpgKUVWhqR/XSO+z6HskSXpPDIDSuy2a57ZWpShJj4TglgLcUkBr3KPyfhs9rZLabVF8IMnMT4fI3lVFT3voaR9VX772Q1eheSZFcyFOaKuYQw6xHfZVc4uNh5o438wTXjDRdsrrTiKRSFbFYrhy/rUmfY+lSIyaJEZN6icdQlcw/csa27+SZ/tX85h5neZ5l5lf1q5bmArg10M+uDvL/W+W6Z9xmBuKXXWf+IhBaqcJYW/vLwJop1VSCwHzO6/eXgtC7j8xR19t2eTkzFCaoSvss1Xpm/QYORONg/smXEx3+ZyndlnYsx6zLzSon7TZ+0/7QUQ5EqEnmPhehYEn0wRtwcJbNzaXUzEUFAWELxCLQ4bEWFRF7GLF35lf1hj+fJbRL+bw2yH1YzbzbzSvL64Q0iFY3MpY/TpCCM78pxKZ22KkdlvMvdpYEohCZMBkZDREKLBn/WvqJ1J7LAafSlM/YePVoy/Iqwf4jQC/ESJCUA0FrxoQLs6hFBUGnkyTuS3GwptN7BkPI6eTHDOoHbPREhqFe+PoyZVrcoEdEvoCt+xTfrdFe8oj9ASapbDzj4tL7WZe6DSVao9HItTUbouxL+fXxrhexgK7I+N/18SWFqeGPrROJqm+nccvmyh6SPFzsyT3XV9Jd4lko6EmQpKPVWm+nKP5Spb0k1UGHp5n4OF55t4pMPPiIMf/4z5u+6fHULf0XS+RSCQSyY3DSaoIoiTcMKliz/mYWY38vQnqpxzcBZnoJ5FIJBLJrUz6QJTkYHzC/TT0Be1Jj9kX62QOLC9uudWA2V/XMbIaTvnaIsY7/iCPFouENwtvNSm9LQ0zrgkVRr+Uw+rTqR+3qf/aoT0pHSUlEsnWZfSkTaLmc/axZTdhZXGRTQ+iRdVS3uLs9iSBrrKNCgCaIyicWH5mtbIaJx+I0czrON4l7r6BYPRsm3pRpzDtkZvxeP/pDE7yxooiFRe0FiiaQKhR5dRGQWXkQ4dJS1mTxJW1QDEUNFNBS6rE+nVqH9s3xQwhaIW0xl3yhxIE8y5an3S02DSoMPy5SJjqt0IUBWZHTfa906SV0biwf2UCVbbmoQo4N5aiKIWptxSOEfWzao+JchLJrYbZp5O7K07oCyZ/LEVZEonk1sJvhEx8v8qef9qHkZGGNetB+XCL+gmbwqEEVr9OYpuKoisE7RC/GTL1kyqNc+4NTYJN77co3J9k7tUG7YnNH/+sn3Con3TQ4upSsrhEchG/HlJ5r43fCFHUNM3TKSBas6mfsHHmfcy8Tnq/hWaqeI2A0BVYhTShL6i836b0TgvhCYysRuCEhPalcy2fHX/kU/1/Gcz+5saIySUSiWSrMvEPVVAjEWf24HJs86Loy10IWHizSf7eBPNvNCkfXts18LlYktl8m70fN3CCyKhzIWd1NXtLH7AYeiZDe9pj7sXeRYGtn9YoPJCk/D9OXdYQJLP4f+HBBMXFMZqeUAl9wdBfHLmWj7Zp6fvt4wDs+xeRxdj5b5UZ+FQKBiIDcD0dVUivHrWpfRyJeENPoFzynXm1kIkfVG/ocepJlf5PpUjtspa2nf0vC3i1ED0R5W0MPpWmPeXhVQLGv1MhNqSTvzsRrc3YIeV32zf0GNeS43/x0BX/vv9fvHFD318zFUJbELRC0otVU51PCFDdcrB6g04VBj6Vwm+HuPM+hfsStCddpn/RKQi9HIntJpnbYsy/1lj+Tsc9qh8sf7/14zZGWosEqYFAX6yYepHkLpPkdpP+J1IrrmWgI1/F6tPZ/tV8xzZ7Wq71STYOW1amlj5gceEv+oik3IL47gZ9n52VwjzJliVxd5Pm6xncczFgeXDVf28JgJkXh5h9vZ+hx+fW6QglEolEItnczG+3qAwaWI0Q88/OYBY1xr6cB4GsQCGRSCQSyS2AnlIxMhpuySewVy4gmXmNoWei5aML360QG9DRLBW35OOUfBCg6Ar1U1UUVSExaqDoCv1PpLAKOoNPpxGBYPalBn49QE9rWAWN8vtt/PrKbCSzoJG7K058xFgSpgZOiKIq7PzjwgpxbP2Uw/TPZMLt1YgPGcQHDca/V5GiVIlEsmU5eKa89HN7BHJTPsP/7QStCy65QwkKhxLLf59y2enV2fZuhfHvV3H/coxENWTbBzbKJY/A/IyPsb2GnROUHy8tbW9YCoP/TR+5uWhBVBWw41iLVl4jfX+zw4H3eHmg43j352c7tqX1zrl32rXx304gFjTEXFQxcIDOBJHRL2a58M1K95Nzk9BiCmNfzWOkViaCu6WA9tTNef7MvFBn5AtZGt8ocOFblSUHb4Cn3u+s7t4f7zyXs7FUxzbHNju2Jfs7942bnZ/zzTM7Vvx+744LHW0W7GTHtnOTxY5t3dydX6vv6tiWy3QmMzl+Z4L+uZnO90gm7Y5tQ+mVCQtnZjv3+0AZ7timqZ1Z52/fq3ZsA6h+2Ca9P8aZ/7gAQGG/hemEfPRICt0QgGDnH74PwNhXcthA8Z8e7fpakq3Hnx96DQC/pFN+e5DP3H6U7zTv6Ghntzvv1TDscs2JzpupWwqd2uUa7sVkXXR5fUXpfAdV602ZEevStwRd3iNpdFYzyuqdyWAvTu6++nsanUk/C7XOvsrv0reoXT6ronb5/F22FXOd87vZWme/LMLOzz+QX9lXDSQ6k63eO7etY5ujdD4futGtWK9ldX433b5/z+1M4rhjdKpjW0xf+XrvTox2tIknOoUBJ/76fgBM12fbO5NoCuz+8yL1kw7zrzauv8KARCKRbBJigzqKxk2bf0g68eshs6sQNawlsUGdwafSVI+2qby3eRLir4qIzJjkar3kcjROOZw646AlVYyURnqfRfb2yLDNbwZUjrSpHbXxG9H8Q0uoZG+PkT+UIHswhlsNiA8ZCCGon3SYfaG+NH5snnNJ77Uu99YSiUQiuQzhJdUwF95q0ffQYkzlklBI+d32DRXxfbA/z2PvzHL/R1G89SePj3aExBQNhp7J4Mz7jH+nsqrXt+d8VF0hd0eMygftK8YevEo0kul/NMW5b5Ru3QIZi2FKt+LjzPpc+E6F7V/NExtcjk3FBnRqi2FvIQSqcfNKPia3mwx/PkPgCBbeaFJcvG79dnThzr/apPqRzcgXMox9OcfML+s0z7nY0z7izqiNNFNZHa1xj/x9CUaez2D16VQ+bNOevv75rGooS+NBiMaEMy90Fj9U1Kh6qzPvd5jMmjmNMBBUj3auGV0kdAXOwvLN79rRi2QOxsgfimNml2Oic680iPXrWH061Y/spWvFLGikdkdG+QCld1osvN4kNqBjz8mgpmRjsSWlmmpCJX9PAlDIPlgic28FtXOtTSLZUoQh0cC8y+pw/70lZl8doPJxTopTJRKJRCK5DnxLJVRg+6fTpPZEiwxTP63dUAdbiWS1KEKgiK1XIWMrfiaJRLLxUXRI742R2m2R3B4FlxpnHKZ+sjIh2K0G2LMesQGD0S9mUTWF0Ou+GHK57YqmMPhUesU2rx5SeX9x0U2B9F6LgafSqPrK/TVLpXBfgk9S/XALJRndIFRLoe+xJH4zkMJUiUSyZUnvs8h8uPx7+UGF7HuCoU9nuraPD5u4dR8trrL7z4rwYiTkC3RQfQgNgRJAaIFfWDlOT+026f9UuuM1rWZIftLHjmu4d1zD4nsI2KA4CrQUtNM62kkdl87nXzdi/UaU2LCO83chWHLOvsjkj6o3NTHcr4ec//syu/6kwODTaaZ/WcMtBSg6eCUDNRagJWSQY6OgxRWS2038tiBwBJoVXT+p3SZ9FzzOHIrjfELsnN5vERswuPCdcreXlGxxgkq09K8mAujMpZFIbnlcU+cX929j/4UKY+dq5O6IkxgzOfdfSlff+RZhq8aW1xJ5fiSbmeHPZ0HAwptrW3lKsvFRdBh8No0956+bOFYiWU9EGMVE/HpIe8pj7pUG8SGD1qTXESsKWiGlt1rUPrbJ3Rknsc1k4c0mgR3S93AS7XNZpn9WI3QFoSvQkxpqTPlEVVWJRCKR9Er5cIvqh22MTKfB143ENTVePTTAM29McWEwgVA71+/jI5Eo0urTSe4waZ7rND67HFYhitP1PZIivT/G9M9qly1+Yc8srxEo2s0TW240lMXlk/pxByOroeoKs7+pk9xuosVVRBhVkyw8kCC504wqn9euTeypJVRiAzpBK8SevbrAT9Gh/4kU7WmPhTeaDD2bwW+FTP64uqIyrlcNuPDNCoPPphn5QpbS4Sbld9somkJghzTO9H4NSSJjpemf1xl8KjLnE57o7qK4SkJH0DjjrKiAG+vTUVRw5n3Se2Mkd5gkRg1UUyWwQ4SIBOvuQkDjjEPungSNk86KKq69kr09tiRMFSKqAFy4L8G5r5cI2suv1/doktzdcUJXUD9p0zznUj8RGfP1ct32gowFdkeek2tjS4lTY0M6xQeTxIeiJAMt5ZG5vyKrpUq2PH5NpfqdfghU4nd1LykuQlBN6bgh2TyoYUi26ZBvOKRtDzupMjGQoJ3ozaFZIpFIbhR3vNQgttciaIVM/qSGs0YTPYlEIpFIJBsLI6cx+nwWPa2ucEEsv9uZvKWZCqXDLfofTy1VLlU0CL2QxjmXzN7YUttLhanj36/QnvCW3i+53USLKXj1EHvawy0HKBrk7opTeDCJqim0Jl0SI5FQtnq0TfOsS+AKjJSKs+DjluTcfzVkb48R6zM4/w0p4JBIJFsTRYO+R5Yruc18TiFMKJQfgcr/WqFwX4L48HK8be7lBlafTuZAjKmfVDGLOsqXshhOSGoh5My9MdJ3dlc8xYYMhj+b7dheL2q08iqxWohaW31ihXFSJf7y5WOC6j4bddRDKQaohYCXJnZjOCFaAJ6pkJn32Xu4hZ5Ql6pgrAehIzj3tyWSuyxEIKgdc1YkLdy8A4HJH9UYfDbN9t/PE7RCtLjK3N9G303yUI3sY5Wbf1ySFcRHDUa+kF1hStI446DFFQaeSlMaMVgYW3lfKCr0PZykftLGnpbxqlsNIaD1Xgq9z0XLBCC9aiWSrvi6yke7Cnj/4xnGfi+HVZTJJBKJ5NZg7Pdy6HGV+TebBC1pSHOrUXwoiZ7UmPxhWZouSySA8KNKXFfCb4TMv9bkUucftxIw/NkMO/+0QNAMMfM69RO2FKZKJBLJdRI6AmcdKgDGnOg9k20/Cq4pK9cv+h5NLf2c3LU6capT8gkDQe2jNvFRk7Gv5Jn6SbXr8+eiIHXiB5VbOg/xYoym+FByqSrpJ8ndESdoh7QmPRZer9C6cG3mnwNPpJaEie1Jl4U3W1c0Ei3cl0RLqNRPOYw8n8Wvh0x+r9J1zSn0BFM/qZG/L0Hx/gS5uxKohsLCm9JN8FponHJoT7jER03s2bUze535dZ3axzbp/THSeyz6H0+haAphIFA1hfaUR+mdKDfIzOt41QARCGKDBn0PJ1E0ZYWwvAMFYoM6iqp0mKRP/7xO5rYYqqkQ69OjtgMGu/+8j3N/V8ItBeQPxcnfk2DulQaVD9pyHifZFGyZSHt6n8Xgs5Ebd9AKWXi7yUN/N7/ORyWR3HhCG8p/OwQBxO+uk7i30+Hu/I9GIVTJ7Jbud5INTBgyWmqya7ZGuu2hABenegJQSrDnQp2X7hugmZTlsCUSyfoRa4b4jZDzf18idNb7aCSSLggR/dtqbMXPJJFINiRaTCExZtL/eAoRCJpnXJK7TAInZO7lBvbM8oJQ/r4E+XviqLqCoim41YDpX9TwGyFWv07/Y6klYarfCim/28JvhQx/JhNV6rxkgcOrBFQqKyudxkcMhj6dRk9qVI+28aoB+XujCnHTv6xRP748GLFv5EnZoqiGQvZgnNANccu37kKfRCLZ2mTviKPFVeq3QeoE9P1agCooParQrAXM/LqO3wwoPpAkfyhB8eHkshhOVTBzGulJn1CFUw/FqQ4bpC9Tjq//8agStZ5cdjivDOuk53zSC5F5grd39SYKQUEQZEK0mkpYDAmHAsKRANEfkkl2VgkXmoKb0IhXAw6+0iC+mBywnsLUi3i1kMp761/Z3Jn3Of/3ZdL7LIy0ht8Iuf1/aWKfTtB8L03qnjpaUhperBeKCsOfyUSu4L+ooSdVVF3BnvXpeyRKejh3d6wjWSo+YqAnNUqHq+t05JL1xDmWwJ+2yH5JqlIlkl4JWiH0gZpQCaVQK2KrxpbXEnl+JJsJNTIryt4eR9GgftKm/LasmnqrERsyyN0VZ/7VJl5VzvMkkuuhPeFx/u/KpA/E0BMqC282aZyWFdAkEolksxJoUanOQs3F8EM8Y2X11ovVXENP0FqFMBWiZ8bpfzePCEFPttn1j4vk7k7QGu+M3frNkNAXxIaMq5onbGWceZ/meRevHkQG3e0QEUaVMkUIIhSIEILm9cdwasfsJXFqfMRk2++YtMZd5t9odgiEVSuqaglQOJSg+lGb+VebhFcxHy0fjiqxZ2+LgQKlLTAXe/DUNLmWQz1mcrY/EyX534QwSWALGqfWNlE3dATNcy7Ncy7TvwAEJHeY5O6OU363Tev85e75NlpMIbnTonGm+zGl91kMfTqz9PvZ/1paMRfzqgELry+vtY7+9rLxb/HBJAtvNCk+mKR0uEXl/Ru8pihjgd2R5+Sa2HTi1O2vd3FC8MH8mzho4H6lDUnIodMKrM62l2OVZ2JQ731hd9LP99z2kHVhVcdxfhWvPeeme257qtbXc9uzerHntqulGsR7bmuHq6umOGVnrt5okdPV3s9HLtb7Q6Dtr+6YG12uaX/KgCBKQLDPJLBnYiipgHYhBVpI6700YVsHLaRejVP75m5CV0W1AowBl9i+Fufd3q8jgKmFTvf7y6HpvQc2G63Y1Rst0lRW1+lXmr1fS47du/DRtFY3EQjD3isDxH/3TM9tV+Onkl+lXfbqro7eGVr8Pz6iU7g/qnqtaAoiFLjlAGfBx1nwsWc97Fmf2H+/k7H5JloLAkO94mtf7e+Xoqq9X6MHRmZ6bgswVe+9362u4hpVVnn99xdqPbc11N4nbguNRM9tPXd1D1pf7f0zarHe2xbjq5vgLbR7/4z2Kvr0YqL3u/Z4daDntgDxQu/90mF7e89tz9q9PwsBPq4O9tx2IN696nc35uzU1RstIp6d6Lkt9N7ftb+UJTFisvtrfQStkHPfKBFKNYhEIpFIJJseRQMUGPtqHiO1vPCUGFNZeKNF+Z3OsWR6r4VmqXi1gPpJm+pRG78ejanbUx6NMw6Z22IU708iQkH/YynsGY+pn1ZpXfAwUir9j6eofNBe6eqpQO7uOH0PJWlPeUz8sAohjH0lT3vaY/61BpqlMvBkisqRNm55cV6jQv+jSZrnPVoXZELE5dDTKtnbYotulCrj36sgZB6yRCLZiqiQP5Sgdsym/idJmrsEhdcEZhn6fyno/0eFpabN8y6N0w6p3VEMuvJhm8YpB2feJ35bDN2H/KRHdfgK8Q/BkjC19E6Lqf9zP25KZf+vmyQrUUcbe13HHwpx7g+WnemuQlgQNL/sYfUYx1N9we53WhSmV8ZIrKKOsyDNCJYIoX5seeHcGnYxCh6toylqr2XJf7q0jgd3a2NkNbS4SvmdFqEtcO3o2k/uNMnfk2D+tQbBV3Ir9slNeQw8lcarBctjQ8ktRfujJOaONuaonAdIJL1Sfq9FYrvJ7j8t4NUCmuddSm83pSmlRCLZ/KjQ/1iS7ME4iqbgt0MWXm5QOyo7uFsNRYfBZ1LYMz6VI+tvlCSRbAX8Zkj58OYXl0gkEokETC+Kox4+WFwhTFX0aF3+opHn7G/qNM6sPuZ2cf1ZjUWvk9xuktpjdYjsQldQOdImf0+Cxinnlo3vigAmf3hzjBebZ13Gv1chd1d8SaRq5jXGfjfHxA+qKypdhp5g7pUGelqlecbtqIJ5JYJWSGkLjRtino8ZhBSbNsWmjfPVPFM/q+FVNsY1q6dU8ocSmDmN2nF7hdn7FVm8V5tnXZpnr36vB7ag9nH3hOFd/7iwwsQXYPDZNOPfriz9rujLFZMhqg6bGDXxGgELbzUZ+kwGrxZQektW25VsLjadOLUr+uI/H1id1k8i2fSo2zy0A23CaQPRUqGhI2Z0GqcuCj0XRVuBinNyUWSlAqGBOx6neTjLXUoDL6bQzqnUBzQq23RCs3dxn0RyRbTITURPqKimElUUMhSMtEZi1EA1VIQQeLWQ2tE25fe7lJ/Xoa/aRgBta2s8uiQSyeZl9jd1Bp/JEB+MqlGk98aofiDVqZINxFZ1tNqKn0kikawfKuhxFatfJ7XbItavY+ajuUb1aJvswTi1YzZOyad2zCa0O/sgLaZgFaJ9/FZI4AjiQwbt0MNfdOv06yGlN1uYGY3kbovKB23iIwbDn11p+iQCsGd9QkdgDUQVV2ODOpX32sy/0cRIa+xcFBAlx0ySY5eIiS64SwtUu/+8iGapqJYtxandUKD4YIL8vQlCV1A/4VA50pYVAyQSyZbFKujoCZXaxzZTjWHQYeKhkPt/UiNU4MRjUbw4Xg/py6gka8tBub7HNO79/9RQNDgyn0D7pkW+5BHLz/JxudNIK/HzFPPjAfmTPqX9Oo2vxsmb0aKptwd4O2qnLahoCyp7H7+AakbP15bfaRY438Wc6lBuvGPbnthsx7aJswMUpqO+feE2jfJ+nZ0/cdj2B3magyq1EZ1KwiQwFIQChiPQXUHK99Acgb74T/UF6XwbZY+LMrT8rDj2wOZ3Lk/+pr9j27izaB72kEv7pRTNAwqtROd3k453LubHzM5z0p/sXDRvuJ0GnKP9lRW/20HnQl/T7TyObK4zoaObqZ/jdcaTgy4mklY3o81kZ7wnCDvXTkqfMLizYp3nw+5yHGqX4+3Pawx/NjJXdUuRmPrs1+8G4IHD8ywoCu/89/vY+fz7K/bb8cfR+HDiB5Wb4lQu2VgcnRmmb0bFywsm5ocRFgRB57Xa7R7pZqoquhmtis5tqtXp8KLpndtazR7Mabscm/C1Lg07mS/3ZhT6sd35/Do23bmtWwgql14p5tC6HK/azXSzy3nznC6fq0s7pcvrnWt3MY3uds93+wo/8XsoOq+Rbt9ftz7NcTr7NKXLezpOZ5/eq42vG3aep9BfuXe367fbta+anX381HcOAlCeddh1okVCU8jndLK3xzn1V/M9HuUWZKvGltcSeX4kGxkNBj6VIrM/FolSWwHzrzdXmNJIbi2KDyXRkxqTPyzLeYJEIpFIJBLJZbjv6AI/eXwUoS6LSC/mAQDXve7uLgSc+c8L9D+aYvi5DNVtbWZfaKxoU3q7SXK7yfBnM5z/+zJCLl/fcNqTHu1Jj/iIwdBzGVRTRVEVBp5Ice7r5eWGITe+euUGpPhQkrsuzKMHIWf7M5STMY6OFHj4dFTk6e2dA9zPLDv/qMCF75Sxp9fXHDY+ajD6fJbAFXi1gMFn0rgLwU01rc3eHusQpgLEB5djpHpaZdefdC8M6JYDhp7JYGQ0LnyrfHMM1mUssDvynFwTW0PhM6fAxYewfBhLbjFUFcynViZ5hD4kKz6ho2KOOoS2Cp6KmvZRF+/6MAR/xqR9Ks7C+RxWIyQzFZCdChh9zyXUwE2qNAsq1WGd5oAavZlE0gPxbQaFexNYfTqqqaB0WZEWQhC0Q6pHW5TeahJ2mb/pSZXiw0lSuy0UL+TUcBo7tjUeXRKJZPNRfCgSMlzs00Jf0DjjSGGqRCKRSCSbCKtfZ/S3s2hXMGRyFgJO/MXcVV8rsAVTP62S3h/DKur0PZxEURVEKJj5VR171ic2oJPYZhLYIaEjyN0Z73gdIQSp3RbJHSZO2SfWZ+CUfMa/W4kC+Aps+1K2Y7/6CZvSOy3cUoCRUdn+B4Ul99aZX/Zemf5Woe+xJJn9MbSYysLbTcrvtBCyeJ5EItnqLK6bXZrEEJgqb30hi1BANaIGjT6Y22mQKgU8mT6NCGH2J0PUj2bI3FkDFYQO/u4rL8DUt2nUt3UuurYOgDsE2bcgl2iSfaCyJEy9EaQnotXaC08YtIai4znxuTi5cz6ZiYCRwy6jdAYjBRBY4FsKvqUQ6gqM64ijFtzfRrn3FknoHl58QDZUSFy5qWSNEYK+x1LoSZXZF+sEnzBISbQDxkc6vxTVVDAyGuX3Wng1WQ7+ViRc1H4aZYX+byjM/b68DiSSXikPWJQHLHacaLLjVBsRyMQjiUSyudCTKrl74qR2WuhpFUVR8JsBc682aZy8ReYwkq4YWY3cnXHmX29Kcz6JRCKRSCSSLpQzy2aKl/qGXaxoeO7rJfxmSOhef6zAr4dM/bRG5kCMwWfStC64NE4vr1MIH6Z+VmPH7+cZ/myG0jutdRf73Sq0Jz3O/32ZzD4LI63hlOR5Vw2Fwn0JCgt1GpbBoyemmM4mGK4um4bef3bZPDZ3R5zp6fXNUSnen8CrB5z/+zKKrrDrT4skd5k3TZwaG9AZeDIyUQzdkIkfVAlcwc4/KlA9uixu9hvLsfvyey2S280lI/1Yn45XDxj/buWWraAs2dxsboWPC/pLJuo5DRRwP+dAZ46fRHLLoepgDi272KqpkE+WolRVMIddzGGX16dGoo1+SG4yIDMdEC8HWPWQeC2k76yPAHwTzj0c693SVrIxUEE1IbzB2ilFh4En06R2mqhmVA01aIU0pzya5xy8WjRJC9yQ0AkjMepl8iPS+y0KDyQx0lHCeNAOObq3j/ODvblfSyQSyY2gcF9yxe+t8y4zv5DCD4lEIpFINhOKBpqp4tUCaidsivdHz/fQF5TeatK64K0qON04HS0a7frHBZRFJ1VFVRj6dKaj7cm/XBa8KrpCYsxEiyn0PZxCMZaN9yZ/XKV5dnkhKnNbd3dFPa2R2m2hHlTI37UsUrj0fbY6qqlgFnT0uIIWV9ESKuk9FmZex57zUBQFLa6gqNHfS++0aJxycOblgpJEIrk1CBfFFconVoJC/WKA95KECkWhUdRJjjUJPYX4WIv5X/ez8HKRpBfF6MK+axc7+VlY+DTsL8xc82v0gl02sWqLn+sSL4rQUCjtNSjtNdBcgVfT0T2BEgo8S8WzFKyU11H27c7cArxjId6OI6Z1lIc3vzu2okL8DJjzgACvAG4BGAKqKsorFiIewqgPm79I7OZBCPYcbZIYNZj6SY3mObfj74YX4nYxWYmPRq7btY+lgdotiwqhIVC9qA+zzgOdBaglEskV0Pxo/BC0Q9TYjV9XlUgkkutFjcHI53PEBnUURSH0Be0pj8p77c6xpOSWpHB/Ar8VUj2y+eexEolEIpFIJGvJnj95J/pBgebzWZJjJnu/9u6ysfH+SLTqVoPL5jhfK7VjNsldJn2PpmieK60wF/UqATO/rlO4P8HY7+ZpT7rMvNCQRiM3gaAZUn5XjpsvEnpRnMye85j61hz5exMMP7T4N1/gVQK8RoBbClCMjbE24dYCsiMmu/+siKIriBAap2+eYVPgClqTLomRSEMx8GSa+snovGQOxJarJQuoHm2TPRgnf89ynk/tuC1N6CWbns0pTvVBe9VAO6WDAJEWeE850C9dLCWS60JXqWxXqWxfLh9uNENy4x658YB4LWT3SzZnHg0J9fWroqoGIWMTTUJFYXxbXFZ0vQJDz2VI7TZRlKh6T/O8y9SPa6BBeo9FYszEzGqopkLoCtxKVMLenvVARA4dl7p0dENLqOTvjZO7Iw4Ki9VQm5TebnWthno1YkM6g8+kIYTWBZf515u4CwHn//2uazwLEolEcnly98TpezgJSlRJJnRDEKAYCqoWTVL9ZsDsSw3Gf1Ahd0ccI6th5iMxSP8TKeZebKz3x5BIViLEssJpK7EVP5NEIrnp2NM+9RM26X2xJWHq+Pcr2DPedVXRnPpJjewd8UggGVOIDSzPq/1WSOWD9oqFJRGIpcoFtY9tzILO9q/kifUZGOlIiKpaClpMRU92n/PGhwziQ8vvs/B2k9Kbra5ttxrxEYP8vQkSo8aSKPiTxPqjc9M87xC0BfaMR/Wj9V8UkUgkkpvJxcpfF12+e0U1BENfmqJ1NoFXMZjUMoisICxu/DG5qgvaBQUnp9IudH+GBqZCO9Np/GApnedJUYD7HCgGiJ+lEN/XUVQHsUmLEioqDH8uQ/JV8DKAColToAiAyBhQmALxuRaYSHHqTaRv2mXkvM3Mi42uYgJFRO79urfyPlRNhYEn0rTGXemkfSsjIIyDunjPKuvgxZJseKSaPm5SpZY1b8h7qP76rk/eaFQ/5Nn3JzD8kNNDGY7vzK33Id1SnD6QIPPTCun9Frv+pMipf7ew3oe0PmzV2PJaIs+PZAOgJVR2/FEe1VCwZ33mXm7gzEozNskyRlYjvddi7uXGpp2/SiQSiUQikdxosgdjJMfMSIh36VRv8WdF5YaMpeZfabDjjwqk98eoHbXR4kpUsXPBp37CoX7CIbXHYvi5DDv/UYHz3yzjzMnxvuTmYs96xAYM4sMG5cMtNEshc1uMc18vE7Q23iRj9oUGzTMuRlYj9CK9RNC8ecfpVQImvldFtRSyt0c5yVZf5CD5yZyW2ReidSA9peLMB4hArN89LmOB3ZHn5JrYNOJUM6+S2hvD+AcLZV5FCRXCRIj/mIsY23gdnESyVfCSKnMHLOb2hNz+kxa6C4MLbaYGk1ffeY3RvZB7jpTIV72l4q17zjZ49aEibmzTdGfXRGLMwOo3MHMaelpFT2ioBgTtSFDaOOMsJTYD6BmV0S/mMDMaTsmnPe2RGDZI7bTY+8/7QCESrAoBIYhQoKQVrH6dzP7YivcO3JDS2y0q70WuMGZRY/DpNGZBR1Gj14FF8dZv6jTPXV/GUt+jKRRF4czXF/Brsn+XSCQ3EBX6HkkSupGTsJFS0ZLqotBe4DkBiqFgZjVGfyu71N+tQFYTl0gkEolk0zH9izpzrzaJDxuIQNCeuH7VhT3rY8/WyR+Kk70zjlPyIwMLBVDAnr78eww+nSa9d3ke5jcCig8lVlRt95sB07+sE7RCQj+axxlZDSOrIQJBa9zbkAsAa42R1eh7JElqV+RWG9ghqrEsumrPeCy83sQt+6T3xuh7JIlXD6WZiEQiuWURixXA1FWKUyESZSZ3RaYHFxqbp/yemfY4/2lr7V940Q9Cucfe1Im9sWGD5A4LZxBKT4IwIhGbUYZCy4ZMCP3B0ueV3CSEYOeJJvMDJrWj3c00hKow1xdj22STszuX78nc3XFUQ2FaOmrf0sSPgV5b7uv1igK5G/ueMdtnx0SN/gWHZMtHuyRXI1ChnDMJNAVFgBJEAms1FNHvIvofBdqWRjVlcmE0if8J4akahoxMt9gx0SDZDlAAX1U4fEeBcn7lWtZmJNlyGZtr0l+1SdoeqoimkIECe6ZrzOctStn4eh/mrYOqMvOrOiiQ2R+T1VMlEsmGZvhzGVRDYeZXderHb14lGMnmoXBfgqAdbogKRhKJRCKRSCQbldw9CexZj+lf1ldWMK1Hv5g5HWd+7QVjXi2kNeEx+FSa4kNJ9HgUE/PbIZM/rOLM+TROOXiPBBhpDa8iTQklN5/JH1YZei7D0KfTzLzQILnTxJ71N25eiqCr8efNJnQE5XdaZO+IYaQ0vFrA/Gud+SrNs+t/rBLJWrMh1VyqCam9FskxC6tPR0+qS4pxMSsQSYH/gEO4e4N2bhLJVkRXaWU10nMBM/03fyE0W3W5790SWihoJnTO7EiSrbuMjbd55I0FXnqsf8u4JZu2z/CUzeiXsph5HS2mLAmihIgcekJfIP7/7P13cBxpnvD5fdNnZXl4gCDoPdnNZvvu6ememR7vZ3bWvrv73r5WUtxdKBS6i5AUp5BCf1ycdBHSKULvxmvu3nv33Vm/M7vjTfdM2+numfY0TU8CIDxQvir9oz+SDRBdRRIkQRIAn08EgqxEVlZWAUjzPD8TiqR7X5dGdoeF+IQgaMQQCYxCUvm/fKy1LAg3d8Amv8cmDgW10y71s97y7qYapPr1pMuPAnpGI7fbovfxDN0Pp4laMXom+Zz9hYigFhFUI1qTAY3zq3OhVHqnSeqzeYqHHWZflAHEkiTdHr0fS5PbY6MoCrMv16idvvrErWpCzxNZNFOhesYlrMWIMMYvyWtRaY2K2ZiJ0/JPTpKkVRQ1Y+pnbz1wS9FBs1TCRnw5cTJJFPArIcNfLSyuN/NSjcoxFxRIj5joWZXaaY/Bz+RwNi11FfLmQpqTAV0PtxeEilrxsm5YYSOmNbGx25kpOgx+JoeR09DTGqqx/AQnBNTOejRHfZrjPpG7FBGvp1UUTSGoysk6SZLuXR8GUyg6CNF+k+AF7VNEx+pDbctKnrPs8X3dE23rxKJ9bHasUWhb9n5tU9uyvdnptmXnGj1ty7y4fX979Wrbsv/jlh+3Lfsfdx5Y9jj6yba2dVpBe0bmyYeSc23XEYPCoZhz/3z9jVfue3PpcxNCEL/mYr5n0f9tqJ5ymX+tQRwIHni/0fbcC/WutmUD6fYkyFbY/tlFHX4nDndfals22iwue6wr7eduQ2tflrfbg6y77fb3kNbax607/S6dmO9rW7a3Z6ZtWcVrnx95sGt02ePRVvvndqrU27as+MXTAFh9OqlvFJn/q/bXA4jCZLw/UDViRV18DMm1Zf2ct3YDQqQ7Qj1qMt5j4po6OyeqXHLzuNUOifpx+7lATbUH2Klae1VwMw7ZNNmkb65Fth6ixQLl8iY9R6XcY1DPa+RbPsXRkO6Fq8wZKcsbUeTqAQPzLrsvVpnst2k4Oj0LHulGiBEmryGAWkHDS6l0TwU8eHSeF5/oJzST44yIYvacqZGvBdhehB4KVCEINYVqxmS2y2ZiwEHLLB1L0tWAnhkPESjEqoIWCSYGHBppgyhqP37NzWWXvw11ZZXTlQ6f5b5ghs1HPQw/+Z5QoGlruKZGqCuc2J3n47+a4f4zCzx///DyJ6srHPRT2l93crqw7PFEXGxbRzXajyVh2N5tPI7bP6NOe6ZpHbYXtG+vU13IU5Ptx2Xxkd/hTs/zOuwbHa6DXLdzJYYPO8/fs2ORG3VseTXdq78b0pqiOyoIqJ2RialSOyOnkt1lMftqY1mShSRJkiRJkrScokDsC8JahJ5O5vwhKUwdeTHZndZtSU4FmP5Fjfy+pPiaXwoJ6zG9T2YYeDbHxb9cAAHa5aTVOJAd/KQ7L3IFU8/XGP5Knk1fyANQO9k+ByN1NvpXJVRTWTyurFlyLLCzNf5jW6vWVHJqeptJ94NpzG5tsaNfHAi8uZDWpE/trE//P1iwMfLPJGndMVsxQoVYvbN/hKlmyENvzQNwdF+BqYEUiiKYHkzRtHX2nKnx8ZdnObMjw/jmO9/RdbWkmiH3v1ci3UyqP4tBg6gV0xwPaY77tCaD5Ebnoyc8DYqHUuT22GhOkswf1mImflLBn18+0lw95lI9do3KiBG0JkJaE0s3VLMv1Sk+6JDbZaE5Ku50yNTPq4T123PmbZz3ifyY9IjJ7G15BUmS7nW5fRaFgw6RF1M+2rxmYipA7MPML2X3CUmSJEmSlut5Ik3hYGqxoNqVzPzSkFv1pEtQi+l+JE1qQCc1lCSjOptMrK6l9ZrjPhM/qpDdaePOBMu+p6c19LSKv3DvRROlR5YH1dfOuLgzIa2J4JqTgWEruWfteTSNM2QQuYLYT6rQyiqUkiTdKz7snKrcROdUaYliKDgjJn5l/Z+HFQW0x1uc/W8b5PfaFO5PoZoK08/JcY+7KbvTImxE1y08EqsKV+Zc6RkVo6DR3OAFS6Tri9QkwfLUSIEzw3liVYFbOWTFMXoM/XMtBmab5Ov+skRR11KZydssbNeodS9P8PMshZlDy6/hw48kCy7Uryh6EMf0zPnsOlVjaDqZvxKAb6qUezQW+gymRyy4PDc5PhZz+P0yj745x6+PdBHqKk+8PkvKS67/fV3BtVRCTcVxQ7rLHj1lj73nKkSagm+pmF6MHrUH9W0db1BL65h+jBYLYlWhYetUMwZzuRQzhaX9uNnP9b6TJQZnXYQKc5t1ZreZNIs68+XlXcqne20GZl3yNZdKdv13iV1P6uc88vtS9D6ZTTqpSpIkrUGRF2NkNXb+ix7CRkzUigkbMUE1wi+FVE96MpDyHtb9aCbpmnqidbd3RZIkSZIkaU2beanO0Odz7PjnPSiKwtzrDSrHW8SeoHLcpXDAZuGtJrG/+smhUTNm4c3msmWNUZ/uh9MoGogQ5n5Vp++pLMNfLTD3eh136vYkykq3l7PZoHjYwS9FNMf9pLvnOsk3jhoxF/+ihJFTiX2xrFj4euRsNvBmQ5zNJpkdFrWTLvVVasz1UXEgZGK5dM9ZE8mpqglb/6AbzVIRQuBOh5SPtqif99onztQOVV4lSbojjJYgNK+/3mp7+O15FODXR7qp5JfvwPhIGqHCrjM19p6usfVigzce6sK318ThbcW2n6ux7UJSUWShaHJxs0P2f3t6ZU+OoPROi9I7t29gufRmk9JHboRuJ28uJDVooGfU25YEK0nSvUnPqxQOJsFPo39XIqzKY4y08ShCoIiNN7ixEd+TJEnrW35fCr8csfBmk8FP5xaX++UQvxyhOyrebEhmp0Vuj03YjPHmQ7z5EKtbJ7PNIvZjKidaVE+6uFMhPU+mKR5KrlW8hZDZV+pLHVNv5TD4YRT5OiNCOP2ns2h2klR1I5Md5XdbNC765PfamN06Rk5Fs3UKhxy8hZDS29cvUiJJkrTeiTjplKnoMjkVoHB/CqtbJ6xHTLdiAlvp3HLtCkZeY/CzOfSMyuSP27u0rmVWr87IN4uEfxuh3u+iDAYomeRcGjWSwJegEjHwbI6oERNWPfScDG654xTI7rCon/Oue71meyGRtpQY1/1QGmIovXPnxu6ltamUteiuJImd8Uo7a17B9EP2nqvQV3LRI7GsULoAfF1ltstkot9hpmcpQTObWYV5KVVlrs9mpidFtuKjR4JSwQBVxbHbA4PmelJMDHgMTbX4+KtJiVOFpPPoqw/1EOuXu6l+mBAbx/TPuQzMtSjUfEwvItIUZgZsJodsWsJAiwQDcy1GxhtkmiGBpuIbKkYYU6z5dNV8tk42iBWY7HI4tjVPZC91/1TDmJGpOoPzLSw/wjM0RgczXOpPL+5D34LH/jNlbD+mmVM5+aRDbF490fXkzhwDsy5Hzs/x0v4hQl1W775TmmMBfjUiu9ti/teNe26ecqOOLa8m+flIa8HY35bJ7LQoHEph5jX0Lh2rB5TL9zd9TwmCSsTcGw0atynQVlp7jLxG4VCK7A6LyZ9VZddUSZIkSZKk62iO+Vz6QYXMdgvdUel+xKH7YYfqKZfSOy26HnDIbLeofnCNhkCr6MMOi4VDKUpvt6gcu1wE+2EnSVD9VYPye7IAyXpTfMDBGTJxNkHhYApvLmT6xRrezPqZjwk2QIytnlbZ9MXC4uOgHpHenOPCtxfWfHdT1VIo3p+iNRnSHFvde3w5FtiZ/ExuzprI3up5PINqKpTeazL3euPWKrlKknTbBI6CVRMc/GCB47sLt6eDahyz83ydTD2kmdLwLA3Lj5nutdoSUz90aTjNpaEUu0/X2HypxeH3yrzxSM/q79ttYLohD75dIt2K8AyVtw8XqGeT95m9y/t2N82+Umfkt4ps+lKei39Zutu7I0nSBpDbY9H9WBrNTs5dzUu+TEyVJEmSJOmWlN5u0v1Imp5H04SNCD2dBCebBR0jq+EthKQvT1bVTnl480uTC3pWRTUUgkq0LEjIzC0FOJt5jeEvF6if85j86Y0nwyhqkpSy+etFIEnyXK9utgJnUI6Ye62xbFlmu8ngZ/IMfCqHOz2/ISZSJEmSrkWEsnNq6KsMfSG3rBt314+bjB+2WNhmdHyOGgi6x32Gv1EgasaM/X2ZoLy+Jq8WJ9NLGvEvLydIZSKUgZD0FpfGRZ/aGQ8916D7YYfJb29i4HcvYRTWT0DERpDebKKnNWpnrl80I1IVzCD5PczussjttZn+ZY14nVcrl26dGi9PKF2pYq3FgQ8WyDWS7ru+oTKTtwh1lUiFatpkos8h1lVU9fZfN9euMg/4Ucf3Fbg0lGL7hTqhpjLdYzPdn+q8sqoy3ecw3edg2e1dhn0vCZeo5UxOb88DEEXL5z+dZsDAbIstU3WG5psMzTdpWRquqeF4IZYfL9YDCjSFvB9w35kSB86V8AwN249QRfL985syLDx0/flV39S52Jtly2yNZ98d4+V9g9Sdu1BB+B41+ZMKI79VpO+pDBM/Wl/FKSRJunfUz3jUP3INqTkq6S0GhQMOZpfG4GdyjP71An5Jjn9tREZeI7fbwu43sHr1pClILJh5uUb9rCzKJ0mSJEmStBKtSwGtS8mYkZZSyO606XksTX5vMtYU+3fuWrr6gYuR1+h5NEN6s4k7G5IaMjCyGiKG9BZTJqeuQ9PP10hvMSkcTGEWdawenc1fLTD5syqNC7KY0J1i5JNYHHcmoHrSxS9HDH0uz6av5Ln0vcqaKlCnpZLR/jgQKKrCpi/msfuS+cyxfyjjTraPc0vSWrAmklOzO22iVszcq43rryxJ0l1z5uMpdv2ixaaZFoOzLappg1LeYrIvRS27OhOij7y1QL4WIGDZRHo10zlIaJGqcmpPnp55j3RjfQTP9E23OHisggJMDNgc35tbrDZ9z4sFiqIsXgxKkiTdLNWCzd/owsxrxKGgdsqj9F4Tf359BZRKkiRJkrT2LLzVpDnhk91pY2RVZl9t4M4kg8CxK4iDqycJhLX2gW3VVkgNLd1bf5hIZA8aKHqSXLQSHyZfXqk5fm9MaigqKLpCHAq44iNWDYXUoJF0D7g/RdSKmf9NQyamSpJ0TxCRQF0TM0F3h9/SeeuH+0gNmpTfb+GXQopHHIyMRnUwGXssXgzoPR3QyqjMbTYJLIXdrzXRAkF91GfmpTqxv/6S/6JmzOk/nWX3v8kg3k2hHEyqu4sJnaHP56mddZP3JcCbC7F7DRR1/b3PtUSI6zbjXcbIawx8Ooc3H+JOX/9ir5Y2GZptsW2sRt/Hs1RPunesar+0thXqPqWMdd31+soNdk9UcLwAVQg+/JOvZAyObytQySfbuJHf47ulkrd4+/5kf293EfOmY3B22OTscJ5ixWXPaIV808e+3IV1Pm8x3ucw2ZNK5vnimJ1jNYZnmphBTNPWmexLcX5ThlhX6aW2otc9tqWLuazFg+fmeOjMDL88OCTnEe+Q3B4bRVEIm/KeUZKk9SVqxlRPeFRPeOgZla1/0EXXkTRTz63s3COtD3a/TvGwQ3qrSewJWpMBpXdbeDMB7mxI7Mn7OkmSJEmSpJsRtQTl91tkdyYFQFqTAfVzd3aeff6NBmE9IjVkkNlmIWJB81JAatCgekqOBa9HYT2mcszFmwvZ/PUipXeb6BmVwc/kGPtOGW92feQ8rHeRm4zzGTmN3iczKGoyCG7mdVKbDMyCTuOijzt19xI/M9tMCvc5pAaX58xEbsz8rxt0P5zGyKq4k3dpByXpOu5+SIIOig6hrNImSWtebKqc/GwajuvsulAjVw8o1AO2XaoTA56lUc0YzHbZTPanbriz6vB4g3wtYKbH4t1DXdjNECuI8A2NlrOCw1UcY7sxTWftJzSqYczB4xWECm/eX6RSvH7QwL2keCSp5K8oCjv/VQ9BJWK85dNMyarQkiStnJ5WGfmdIqqhUDnRYuaF+t3eJUm6M4S4/VF5d8NGfE+SJK177lSIO3WL1xhKEvhauC+FaiQD4NWTLXJ7UsSB4NL3yytOTE06IiwlpvqVkJkX68kA+uVWPoqhMPS5HKqhMPb35Vvb9zVCT6v0PJ4ms8NCUZLk1NYln9Z0iJnXyGy3UA2FOBK4kwFTz9eIZJCxJEn3CBEJFE2h60un2r5X//H2tmVnqz1ty8J4+TjvwfxE2zqa0n5cLfntXeyqHZbVzWbbMlVpv/7P6e2BFwWt/blubBD6Kidf3cqFd4eIAh3VgMKh5a9tfWuUwSMOxcMOQTWimNPIXfCpn/UQIyYXvlNe6j66Ru17c/m4eSzaM8pOPlxn+Ks6TGmMf7cMwNf/psy5wjC6EaGoAs3wMe5vksovD7TpT7UHsc976bZlhtZeBKzTz1BX29cz1eUXOnuz023r7MjMtS272OxqW5Y32qvGX3hkZZXkeyhjFjXsfoPmmE/YiKlc8X3NUbF7dBidT/a7SyP2BWEj5lifSXa3TeFAiuaETzwV4JdC6ue9xeu4IuWljalQvC9F8esFIjdm/B+v+F4HO/7gbQCsXp3oS3l2ny1TPesy+7Ic65ISc06K4YU6dhlcIzku2H1Lx0e7GfLAOyWcVoQAXFsl0lSqOYNTO3KEZnKcN7j6jUenhNWW1z5nIzochzqt91HqCpPjbas9OKgr3X4uaAXtRW9LNadtWRy3z2V2eq+KkZwPKj0mb/T0djzGZVJLx9CpvMUUFs3m8vk/BWiu8HPTUhFzm2zGGw6bp5s8c3yCsYE0Nceg7hi4pnrVZFVNbz/eBq3ln4mqr+wcFwTt866d8pc7vWYcdfh8O/ysRdy+RaXDq2ja8n1Wtfb34LvtP/tdf/RW27Jrye+1CVvxvTmnsFHHlleT/HykdSKsxyCS61hp/dJSCoVDDpEXEzVj8vtTpAYN/FLIzAt1aqddhKzJLEmSJEmStKqCWoTdb5AaNFBNZdWLVyqXh1o6XscJqBxzqRyTiagbjTsdUjnRIrPN4sJfLLDld5KiM1M/q97QdnJ7LDLbLZrjAbUzLlFLjlOshL8QMf3LGn1PZaid9sjtsWlc9EgNmQx8IgeA3adz6XuV62xplamQ2WZRuC9Fqt+gOe4z9VyV2BeohoJiKLQmAnJ7k2aQtVPe6r6+HAvsTH4mN+XuJ6eGEPfEWIrOyH/OEe+89iTIY7kzK970dJC//kofrhuufF2ALWb7RPjVjPvdK173f5j/3A3tx1d63lnxuv3myk9e1ZS94nVnW5kVrwvwk+n9K153rtk+SXg1vekb67xb91eeDFhprfzzaPrX6fB5hXzqxi4ey8HKP485f+U/F8e4scou3sGYcweTz88uReTGItKzEVY9om8+on/eZf/ZMhMPGJzItQczXc3m6QYCOPNQirTqQQpCQCUizfKrcD9sP3wNjTZRgUsjKfSPTKhu+saxG3qPt1tuv4X68RzTL1Qp/P9mKdztHVpjpp+rUT3p4gwZyU3ekMEzb08y91oDdy4gDiD24o7dhgAmv7tvxa8VdZgYXy3aDXQaMIyVV7/pFCxxLRlz5X/jWWPlx6WMufKLXFu7sWoyurrywL9t6fkVr/vRYMrr8aPBFa9rarengtFsoz3g71pqwcrPWT+eP7jidQfsG7sJdsOVnw9Pl3tXvG7u82dXtJ5RUNnyu10oOsz8skb15CrflEmSJEmSJK2S3o9lKBxIkmWCaohfjsjtSR6rhkJmu8XCfHuw9ZXsfp3cXpv8vuR51ZMu079IkknMLo2d/6KXoBYx+tcltvxuET2tEdTWf9SSZiv0PJEhu9NChIK5XyWVZPWsRnrEpHAoRdSMWXi7Se20e9V7SEmSpI1KtRW0lLrmEyxXWxwr/OpvDlOdS7P9yDibD0zx/P/8KABhI0JPJ5EfO/4kGbue/VUdRYWeRzNolorZpRPW443zuQmoHG8x8Mkcme0m9XM+Wx+YZOsDy0srH3c33aUdvL0UFbofTeNsMkGFoBzhVyPsHp04EOgZFTOvEdRjrK5k3iFsxYvVypuXfIycRn6vjaIpzLxUwxk2k6r1QqBczmKL/OT3xRkySQ0Yi1W3q6dcFBX0jMb8rxu0LgUMfCpHZptJ5bjLwm8aK+5s5M2GnP9f50G5SuCSdM8601dkoNLgvrEZ3tg2uCy70m6GPP7aHIqAqT6bE/tyxPrSOLmMsVj7ju3uQosFg7Mt9l5YGqcXgFAgUhUiTcHXVTxTwzU1IgNSXoQiYLrHplQwSdVjXFPDN+9+iMiao0HhYJLsEzYiFEOhcVYGgUqStAEoScEiaX3K7rbofTKJ/VJUBdVQaE0GTPy4QuPCne3gJUmSJEmSdC8pH3XJ7rSpHG/ddGLqmT97oOPyYsXjwRNzxKrCazsHqF+jYc/uf/nrm3ptae2yunX0tIqiQnPMxxleecMmzVHZ9MU8VreOtxDS/ZhJ18MOsy/VqZ2WsbErUf3ApXbWQwTJ33Vuj42Il/7GGxdv7T5ragW5C48NXUj+44J60kA9YaA0VeLBkPBQi0vf6Fwsz50O6HrAQc+oSTEqSVqD1sTMg/9ZH/svbYx3Dbyd8uAoSeuJW9Rwi0sVc5Uwpng+ov9YwKY3A7LZOY7uy9NMXz1JSY1itow1SFcjvNTVq/xej3k5+KOWXeGhTYP0sIGe1fBLEa1Ld64Ve25PCiEE1ePymHc1rfGA1njyM0kN6Wz6YmFx4P1DkRcz8aMK7tTtSQqUJGn9Mbs0eh6/HHCowORPqzTOL79p1DMqelpFc5J/o5agflYej6UNJBbQoXvDuhdvwPckSdKGo6dVsrssUBVKb107oRQgs8Miu2OpeNbMK3VSgybpkeRx2IioHL16ty9ns8GmLxaWLfPmQ2ZeWOpy9mGyg5HV2PHPlgpIjf1daSVvaVWYXRphPV61qrJ6VqV4X4rsLhsEzL5Sp3bKIw6Wtl9+d2Vd0iRJkjay3O7kOOnNhygqiHtkrrI271CazLHrsYvs+9h5AM78u1kK9yWTtrEX03VkqRiYNxPSmgpQTZX8ARurW2fquRsr0nW3iHkNcdFALGigglBB6Q9hJEBxls6LtVMe6c0u/Z/I4Zfv3DXAWpA/mKJ4v0PlRIs4EKQ3m2S2J9dfjVEfvxRRO+NhFjSsLh1vLiTyYhQVFF2h+6E0YSMiqEeYeZ2+p7IATP+iipZSKdznUDnWYuGtJsUHHMyCRu2sR2pQJzWQVNdXVNDTGs6wid1vkN1h3XRA+b3ydyzdmEDXeG9zH4+en2Sw0mCysDSXcvBYBUXA24eLlLpXXrhXWlve29vN0Z0xhapHphniuCG2F2H7EWYQo0cx6VZIthku9hv98CzQN7809i2A3+zqZqbrxopibkTp7Sapfp3UkInVraOoyrKiA9XT92hy6kYdW15NcpxaWi8uh92sdpcn6c5wNhv0fyJL7bTH7Ct1Yl+gO/de8SlJkiRJkqS7wZ0KOPPvZle9QKARRBw+OU/T1jHDmPsuzvGrPYOIKwrNSRuMkhQrz2y3CBsRdo/B5OVOqc6IhTez8rwF1VCwupOim5XjLnafTm63zcCncgx8Csb/sUxr4s7lQaxXHyamzrxYw68khUxRoX7Wu+1JvmokUC5pqOd1lLNJrovYHhIecKHr6vd6ekal94lkzF+zVzk5VY4FdibH/27KmkhOxQQUlmZIJElat4SusrBLZWGbxshrPrnpgCfemMM3VOoZnbkui3LeRIkFPQsevfMemUYyURppcOKhG+vEe6Xo8gX6kV+XGd3mMLrNWaz+rDkq6a0GzibzcuURDUVncYIRkoqRjYs+s6/Wb2tVCT2jYvfp+GVZ2nylWhMhZ/7DHOmtJkYm+dnpmaRaff8nc1z89sLd3kVJku6y3H6L4uE0RlZdPLaLWND/iSzKpxQUFT6MylE6DOiET0aM/m2ZqCkn9CRJkiRJujm5vTb9z2QXH9fPuATVztcWdr9OzxMZUv0GjYseiq4kxTVihcr7LZwhA7vPIKjHRK3OA2b5A/ZicgQkgbO1ky7N8eUTDmEjpjm+vOrmmX8/i7hDNX7SW02GPpcHoHy0xewr9VseAxx8NoeR16id8Vj4TYPIlYOKkiRJnTibTRRNYeSbReJA0JoKaI75VE+5xBv42JnrbjCwc46zvxlm5OAk6YKLiKD0dlI4QlGTasiqpaLqCvagQWsyYP71BvNvNNb+XJUK2Z0WxcMO0d/rYAiU3ssn9kBBnEnBKylEIQZVsOkrMfUzHjMv19hU1Nj89SLjx/oYPjBzd9/HHbKYzBnD3KsN5tRGMj6/ELUF6s+80Lki9YfSW01USyGsx4vFLkvvLBXEKL3VRLUVtv1hN6qWjD9VTrTQ0yp6WsMsaqS3mMz/uiE7HUmrbj6TYj5ts22uTKQoWLGL7UbkqgGNtCYTUzeAWFeZL6aYL157PS2MsUWAa6moMQxNt3BaIX6ss3OiyuFzC7ycMnBXWux3g1FN2Pr73Wh2MocsYoFfilh4u0n9jEfvx9LkD6QY/nKB+lmPqZ9fLv6kQ+/jGaweHdVIutcpejL3EPuCoBox/Yua7FwgSdKakdtroSgKzUkZnLze6FmVgWdzNEd9pp9fKkIoE1MlSZIkSZLunNVOTAU4eKaEKuDNfT2k/JDH3ptl+3SFswOF1X8xaU1QNCgcSAGgp1TiUGAWNQqHCuhplcm3r1/w/ENBJWL2lTr5/Ta9j6cJWzHVky65PTbAskLe0vWJiBUVnF8N6WrI1lMN8gsBWpxCpGPi+33iPQGkrv/8zA4LzVG5+NcL+Asy90Rau9bEjIPxKwMlUgi3ys53krRh6CqjH7Mpj6XZda5KoezTVfLpLi0PuBBALaNzcXOG2hZuumsqgNMMESRJrlvPN9l6vrkYR6T8UXfyekIgwqT7jDeXVMQPKhFWn0F+r016m0l6WxdBJWL+N8kk5Gob+nwSlDv18/VRfX/NiKFxbvnvj5FWcUZMVBNiGcsjSfcUszvpNpEaSgoPqLqCiATNsaTjhZHXMAsaKAoiiIgCQewlX5EbEbUEYSsmbMSkNxsU7nPY9gddBLWI0vstqsfu0aro0sYgRPK10WzE9yRJ0oaR3mLS/0yWyIvRLJW5NxptiamKBsXDDtmdFmZRx50NGP/HMoWDKZzNBrO/qtO85NP7ZAa7zwBYTGq4kjNskN1tJ93wgPoFj8mfVuEasUmRt/wYejsm066mOe5T+aBFfm+KwsHka+GdJkEl2QlFgbAZ45cigmrUMSHI6tFJj5iotoKeUrH7DSZ+WKExevUbQWc4ucZTTQURCuJAJP+GAm8upHLCveZnJkmStBEoWvJvUIsoH02KH3Q/kqbriMOlH1bolIandKiO64XLp5J+emlv2zpb8+3F4+pBeyJUMzDblsW0n+8eKV5oW2Yo7SewP538RNuy+SdLKLpg5z/X+PYfHqB6Yvk9vojhrc/1MHDJxbdUpp7tJtYVBr924vYnpj433L7sU+Nti3pfLbQt22NP0zyRpvF2lriuY21tse2BC+Q311C1ZMe7tTpe02D6bDeV6QwIOPZmN71PZeh5IkPjgkdYi3nnR3t58f+9lZkXa4vXBU+/1951XFfaT5bdVqNtmRe1TzdaWvuc34nywHWfO22270dOb19W+dh827KqDmaXTn5fcp1Ufq+FX4pQdeh5LEMcCOZea+BO3dx85EoSSmNP0JoISG9OftfnXmtgZDViT5AaNim/22LhzTsT8CDdOz7x4DEADN9AP6nz0Oj04vcEUHsQtvXMM1YutD03jtuPwYV0+99cp/4N87X27pudziMrGdLp1CCi07Y0tf249PG+M23LmlH7+eaX8a62ZaWq0/7CYgXdKjrsmx+0Hws7vfVGw25bZpjtx6VOP5souv48amwqaOmY9OUbnlLWoIRBvWETW7DnfJVn3puiZWm8t6tIKb+0P6LDa+pG+/n309tPti3b40y1Lfs3J55qW+b77Z+Tqt7cCTgMtbZlu/7orauun9tn0fNoBtVSWHirQeUDl/Aj9+6zLzcovdti6PN5sjttUkMGpbdbdD3soJkqIhKIWCAiiMNk3lk1FFJDBlt+p4ux75bw59dxkNhGHVteTfLzkdaJriNpRCTknOc6VDzsIELB1HO1668sSZIkSZIkrQtqFDOw4PLBljyepeFZGmf7c+yeLDOfsSln2seLpPVPhHD6386S3mySGjSwBwzy+2yCaszEDys3nGhYfr9F+f3WsqaAMy/X0VPKVQunS3eX3Yw4+JsKoaFycZfD5v1zUIg7D7hfbRt9Ov5CeHsSU+VYYGfyM7kpdz05VTVBO6kROzHhEZmcKkkbTTOt8+6hruRBHNMz75FtJEmk80WLWlZfTEhNq7eWCJqrhAgFXvlED0PjLtlqiOHH6GEMr9ZojvlJ4GqHc3NzLKD0ZhOzqNLzZBZnyGDw2Rzh4xEX/mJh1TrKaI6K2aUlyVPreWJyjVis9HLzOc2SJK0zvU8mVcsV9XJ3VCGImjELv2kt61RxI1rjAa2JgN6PZTELOr2PpuVErSRJkiRJK6allMUiRJqlEkeircKillbZ9Pk8RlGjdtJl/tcN6ud88vttMtstJn5coXUpYPirBVL9SWJqc9zn0vcrABQfSJIsqx+4bPpSYXG7tbMeU89dTkxVQLOUjl1EzcLygN1NX8wz8cPKUiex20iEMPPLOrMv1tl0+f11He4QAM7ljjULEX4pJPIFmqlg9RmYeY3ISwqLiEgw/5vGNRNT+z+ZJbfbTgpSlSMUPQkWVh0Vw1DI7bHJ708x+dMqcZBcT0qSJG1E8eXiBN58SPndFuV3W2i2wtAX8/Q+nqE9tW/j6H0yA4DudB44dNMaF3a3J1WtOQK0BTAuqMyeGyR2VeydTdJH5jC6A4pWewFEywkYOTQFh5LHP//fGBh5jcwOi55H0oTNmKnnqvQ/kyWoRhsmUbJwX4ruR9Ko+tKMfnaXzfh3y4SNGL8SUTzsUD/v4U7fxvlIARM/qGD16UlhDE/geaEMLJfuiGgoQj+p4z/gU9ZtIluh1QsYchJFSlzcnGWuy2L3+So9Cx6PHp1jtmjz9t4u4lsoILzWpbea9H8yu5hcuvBmk4XfXP38F9ZiRv+6RPFBh+6HHHqfzCCEYPqFKtUTneez09tNBp/NMfLNIhf/aoGg0vk+U7WheJ9DashMiilFSefW+lmPxkVZiVeSpNVh9+voaZX62dUvxi7dXooG2Z0WlWMusS+DYSVJkiRJkjaKWFUoZwx6yi7nh7MAnB4sUGx4PHpmmtMDBS705YjVG8hYk9aHGBoX/dUd97niVkEEgkB2TV2TcgsB+9+uEhgK7z2SJ7BUNhdvLDYlt88mu8Nm9tVOJYclaW2568mpvU8lJ9jgiUAmF0nSRqeqzPWmmOtd5e3GMQffreI0I0pdBqgqEyPLA103/feTK9qUX4qZ+H4FNNj2T7rR0xpdRxzm37j1AB3NURn8TA5FUfDmZTL+akhvMYlaMbHMIZOke0Mckz+YQlGSqubNSwGtyWBVOl41Lga4s2W2/WEXflUWD5AkSZIkaeUiVzD3RgOrqOFXI+rn2oO+hj6bQ3NUJn9UIWzF+AsRzrBB75MZykdbNEZ9Nn+jgN1jLD7nw86iAD2PJskzXQ8s3evWzrhMPV9bvBbq/2SW3C6bse+WcacCAMyixuBncpjFZAgw9mNUU8UZNtn5L3upn/OYealG1Lr9kxUihvHvlCk+kMLZbOIMtXcyUlQFq0fH6lk+ZDn/ZoP6GY/YTzqgxuFV9leFnkfSi11lx79b7rha/mCKvo9l2Pp7STEtdyagetLFnQrl/bokSRvKh+cSI7dUpCByBbVTHj2Pp5Oqr51a1W0AzuWulR89p3xIjQQ7j9fRQsGJ+7OwSgEfqqkw+JkcYSOmesrFnQpurmN5BOY5Beu4hlZRiC2BvauOc38dPX/j56qwkVx7AMy/3qB22sPZbNL9cBojrzH9/PpNnFQthd6PZcjtsim916R+xsMrRWz93SJ6WmPkt4qL67YmfML6nSlK4c3IawrpLrjcsDreGlM32ztKShJAI23y9sEe9GbEQyfm6S25PPv6BGN9aU5tzhMaG+93Z+BTORQN5n/TuGZS6keV3mxSOdokPWLRGPWIr5Hj1TjnM/r3ZUa+WaDn8QyTP14qIGH26BQO2DjDJnpGRVGUxe6rippcr+R220R+TPUDl+pJVxY5liTplnxYrGfm5fV7nX+vcjabaJZK7bQMgpEkSZIkSdpQFIWx/jQHz5YxgpjAUIlVlV/v6GfPRIk9EyVG5mqcGC4ynXc27NyNJN0LsuWA4qzP8PkWtYLBiQeyhDdRQNLq1el/Okv5/Sbl926ucY8k3Ul3PTk1PWKCBvGQ7FAgSdLNOfR2he75gGpO570j+VvfoAbb/6g76XgTJBXVUbm15CcdtvxOEdVU8Mshpbc3RjX6u03RFdxLwd3eDUmS7hRVJQ4EIoxXpWjARw1/tQDAzAuyypC03okkyHzD2YjvSZKkDUHQ1ilVtRXiyx1M9YyK3Zckg3zY9bR8rEVul0Vz3Gf21TrpLeayxNSFt5rMv9FItmUmE0/uXMDCb5qkt5jk96WY/mWSmGr16gx9Pr/YCWHz1wpc+kGF5pgPKm2JqR/ySyGZ7RbOZpPS202aEz5hLSZsxrf1kFt6u0Xp7RZGQUMEgrAZo6VUzIKGWdQu/6uj2SoiFhg5je4H03Q/uLy7XeTFlN5pEtaT59v9BqkhA81WmHu9QfXk1QO4qidaqKaCqicJsWaXTu+TGRRVoTUZUHq3SXPMv7lkIkmSpDWkcrxF8bCD1aWjmspi1xVvLgQFdr7S4vwjKSJz4wU5zL/eYOBTuatWEh4ccxm4lJw7R+sRjdzqTJeJWOAMJ4mxuT32su+FjYjWawGhrRCmwO1RUSIwD9jY/Qa53TbeQsj4d8pkfqqhzybn7SgriLMC1YnQsjeX8Nj7ZAa712DsuyXcqWQb07+o4c2F9D6RoXJs/U1q6xmVnkfTOFtMEDD18yq1M0tZQ+f/fAGrW0ezFUQMqq7IjnSSJElX8C2dVw/3MzTdYP/5MlunGmyZatBI6ZwfzDLW58A676aa22/RdSSNoif32TeSmPqh2IPa6ZV1HvTnQqJWTHqzSeG+FI1Rj8Ihh/z+5JpAhNAcD1h4s7F4PgZQLSgedsjvT1G8z6F4n4MQAhEKwqbAmw2YebVB3LwTMTUbdWx5NcnPR1rbVEfF6tVxZ0JZ5Hsdymy38BZC/JIcmJQkSZIkSdpoamkDBbD9kMBI5hEiTeX45m5Ge7Lsu7TAQ+dmudiT5ejmrru7s5Ik3ZTirM/BN6uEusLcgMWZAxli7ebmYZ1NBpEfM/tqY5X38kpyLLAz+ZncjLuenNq46JPbbWP+3MT/jJwUliTpxjnNiEiFtx5bnYtx3VYXg39VQ2XgEzn6nxa4MwHuVIDVY6DoCtWTLaonlk9Gqo6KbkFQixEfzimqsOVbXaimwsxLNarHVzaBKa1ADOnNJgOfylI97eLOBHKCRZI2sjhGNRRas6vfeaL3qQxmXqN8tIl3G7YvSZIkSdLGp+hQOJgivc0i1W8w+1odPa2S35tatl7jokd2p4Vfipj8WRViSA0sJaa2JgO6jjhoKYWZF+oIAUEtwu4x8OZD0iMmkbcUkNrzRBrdUUlvM4kjgaop9DyaZnTMxy9FNC/5OJtMFE1BCEFQjQBlMWlVNRS6H0nTzfLkz/o5j8mfVrldgvJSgFXUjGk1Y1oT7cWHFB3MvI5iJPuqGgqKrpAaNOh5NOkCEYcCbzakeqJF7bR33eAtEbUnFCtq0pmg+IDD0OfyxJEgrEeE9ZiwERPWY/xSuOKgZEmSpLUgqMa4MwF2n0F6i7l4DGtNBlz6XoWBbxbY9nqLMx9Lbbgq3MrlTqhRo3MSR3TFRPCDr5a5sNMhULjluUYRwvk/mye3xya3z8bILnWf09Ma2bEYL6tgNAVqdPl89VR2cR3NUlAtZTExFUCrKagu1CfzoEDmwRvrfpTZYSWFLV6oLUuEQUDlaIvCoRSbvlzAG/exhtfHeU5EMPBsDiOrUn63ReV4q70TfIwc45HuOUpJQSAQpgyckFZuoj/NRH+arpLLzrEqxZrPoXMl9l4s8+6ubkqDxvU3ssb0Ppkmvz+V3AfHgsrRFgu/vjOFg2dfaTDwqSy9T2TofeLyPWsguPhXC1ft3h17MP96k/nXm9iDOs6wid2rY+Q0dEfF2GGR2W4x9XyN+pn1ca6WJOnu6XsiGeObfVkW4113VEhvMSm/v/6KB0mSJEmSJEnXp0fJmF2kts/H1FMmv97Rz7aZKvsvlaimzDu9e5IkXUHPqnQ94GDkNBRdQYSCOBCU3291jGsBUEPBzmN1yl0G7z+cu+W5V7NLT+Y55XC/tE7c9eTU6edrZPdZKNWNFfggSdKdM99tMTzeomfKZW7Avv4TriNsxEz+rEp2h403FxAHgvz+VNKFZcBECAECUgM5uh+K8BYizGIyOahccdMgRHIhomoKqEmgj0xMXV2TP6vS93SWzE6L7K7kZx/5MdGlFjObUtd5tiRJ641TiVGUpJvVqm97yEAIwezLt7PKkCTdIWKDVrTaiO9JkqR1zezSKB52qJ/1MLs08vtSaI5KayIgbMUUDqRQLYXy0Rald5rEnkBPq2z6ch4Rw8SPKotFjRoXfYr3OwCkLgf+ujPJN8XlINad/7yX3icvB7Z6AtVUKT6awhlMJqb0tIpyeXDb6tGxB3TMgo6zyaQx6pMaMhj9iwWCahIMq2dUrG4dPati5pP17d6loOM4WBvHXRGCN9+eWFI75TH7Sj0p5LgKjQREnPwcGhd9jIKGM2xgZDT0tIqR1UgNGhhZh9RQi7lfNRa7D0qSJK11tTMedp9B6re6OPvoFROhQpA+XaF4NiIbBUSpy8X6Osxwmvry4/DmbLltnU7P62RPYaZt2WO5s23LJoNC27Ix9yPFCedUvP+yiaIlyahBJaI1EZA/mKLn0TTeXIi4SoMx5b88z/gmg+EvJ6+z9UyT2ftSVI+7t3wODBsxC281Cf4/DsmJCpQQ0kchc1zBf9bFS4FaUbDf0dEvLSWiOt+qs/9/LxibiUmdUUgfTX4uSpD8W34+yzv/LFh8Xx87W1r22k/a7WMm+f/vGH/+jwf43f9mgW9+9hQAnx06DCTnv9G/KTHyrSIX/6cCkz+pLpvk/t+dfntF7/mF6t62Zecb3W3LFKX9s52tLS+QUfPag256vnxq8f9dDzoUDqWw+xQufb9y1SAASbqXPFVI/kbOlUfwh0weHjxDLWqfI/ludH/bsplapm1ZudH+3MBvDyuIRfv8fi1sf66iLv/bj6P2bpydUsk7vaamt1/8/+TSvvb11PYTwEfPZwBqh/Xo8L4++l6/vue9tnXyWnsiyf9y9PH2zbe/4sqHvTrsWyeNpnX9lT6yqYUumzeKNsQx2y/V2TVW5cEP5qiNGry/o0glu7TNY+WBts2Vg5X93uz4/Xeuv2+3wBkxyB9MEbViSu+0KL93ZxN86mc9zpz3SG82sAcM9IxG5VjrqompH+VOhriTS7+rmqOy5beLaLZK7+Pp25+culHHlleT/HykNc7qM4gDIQu1rEN2v4FmqTQuyuYekiRJkiRJ693OP2wfW88fsBFPZBj6V0c7DhDlD6boeSwNusLIT8dpn02RJOlOGfhkjtSgQeTFRK5AUUkK0ipcdV5qeKaB5cWc/piD02G+DuBUpe+ar2tyEUiOF7ndNnNv3OZ4ZjkW2Jn8TG7KXU1OVU3o/2QOIhAF+QOUJOnmXBpJMTzeonfGW5XkVIDGOZ/GuaUB38pRF0UHLa0SVpLJw96PZ8jttnGGVeJA4M6EuLMBsS/QbDUJ9O3SiWJB6Z1GW5dV6dY1LvicvzCP5qhkd1iYXRrZXTa7jjWYGbRAbQ9wkCRp/TIvdzsJaquQffARpfeb9H88R9fDzh2roC5JkiRJ0vqjWgpdRxyyOy30dNIJLbfbJg4F9fMeC282CcoRvU8l94uNix7zryeDxdldFv3PZBExzLxYI3KXxsJakwGtqWCxg+r5P58nrF0OXFXA6k6G8DJbLaZfqOFsNun/RBYjoyKEQFEUqifdJCm1xyBsxWz+WhFIOqC6swF2v76YmAokHUHr6zvQSdymGLugHFEpt19z9j2dIbvbxhk2Gftu+ard+CRJktaSDws85UshuYUQN63RPeXRN+6RqUVURlSi1RlSvf2mNXjLglwMngLnDQafXb5K+WiLwsEUQS1i/Hvlq25KtRSy2y1EJBBx0p279/EM/nxIc3yVkh0jQAUEGPMsBZsYyVfcI2g9GpD7iY5oaBjP1FA3Ja8dZ6Bxv0Crg3kJ1EDBL4WYRR2rV8edXvlJ8PHDE7iuzt/9dA+P3j/B8MDyDkqxL5h/o0H/J7Js+e0itbMe5fdaa7IQQ+/HMuQP2JTfa1H9wL1ut3RJutcoqpAxE9KtU1XObc4xOpjhgQ/m6a54PPH+DPWUzpt7e2im7kAnVZUkefYmDvM9j2VAwMW/XCC+W7e8MTQuBjQu3vo1Rf8zGVRLoTUdUHr7xucunG0mnL/l3ZAkaR3RLIXYkxcE65HdpxP7sUwsliRJkiRJ2qCMvIaIRMfEVNVU6H08Te2MR+V4C1deE0rSXRW1klgQzVLRLtfsE0JQP3eVXBAFBk95+LaCn77F3AUFig84VE+6lN6SsczS+nFXklPT2016Hk5jFJIgPtEl8J9Z38FwkiTdHTtP1BgabyGAqaHbG0UlQhYTUwFmX6wz+2L9Gs+Q7pSoGVN+P6l8HNQieh7JMHTRZWKbc5f3TJKk1RSZSSl3/VZv3jqoHvfoeTSm67BD44IvJ/0kSZIkSeqo55E02d02lRNJ15PeJ5IuQxf/cmFZFxR3MqBwIIU9YKDoyf1k4WAKdzpg4sfV9mQPkSQPpQYMLvzFwmJiqlnU2PI7SZe46V/U6P9Elt6PZfCmA+xeHc1Orov8Skh+b4rSO0282ZD8vhTVUy61Mx7NMZ/MNhPNUlFlcNotmXmhzsKbTYa/WmDTF/KM/0N5TSbuSJIkXcmbW7q/3XaigVNPsjzKPQajR1Rafdrd2rUbN6HBhA4TS4uqJ13q5z0aF3wGPp2jcDDp2jb3WuOa57yuIw7ZPTYLbyXnzqEv5Kmf81YvMRXo+w6onkKYFuiNZEzDOxQirmgspwQK2j6X8Ddp4ikDffflSe0IrNHkXzVQcLcK7MtTeh+e/2/Exx4a40cvbePFX2/m9798ou37tdMefiWicCBF8X6H3B6bi3+xcMOvczulhgwKB1PMvFijcty927sjSWuSVfQon8vJBFVpVYS6yq8P9mK6EYfOLNBb8fj4O1O8cLi9a+qtUC0Y/Eweu1dH0ZQkMRVQFAURC/yFkJmX6rjTIXpaZfBzOYy8RumdJuX3Wm1Fi/SMStiM715i6mrSIDVkErkx498p39BTc/ss+j6WJYgC+A+3Z/ckSVqjBCjr6DZPWqIaCpEcu5UkSZIkSdqwmuMBxfscuh9LU/3AJbiiWLKR1VA0hfLRloxblKQ1YOrnVex+g7ARgaqg6gp+OWwbi1RUyB9Kkd+fwnQFUzvMW3rdnifSZHfZ6CmVyfert7QtSbrTbkty6vBrmc7fiMF4wUC7mLQ0jntjwsMhh/euvFTjE6lzK173nNG14nVPezc2iXLKHVzxui/N7lzxuq3wxiqN/nX00IrX1dWVd3Pwo5X/aiy0biz5q1JfeQJh6N2+/GlVWfm6irLywb9Gy1rxutV66vorXWGhcXsS7bL2jXX0vJHfpa2/896K1z3zZw+seF1FE6QbPpvGWoS6wvu7i8xkUiBjUu55pbdadB122H6sgfg/XIRVbGRzo6FpxdV76WXG/+7ADa0/XbvKebmDpr3y89DT/WdWvK6j3VgUwPlmz4rXHTZLK1530s/f0H6oN3D8r/orP7+JT15a8bo9TK94XYDxG1p75Vb+KUNqSMeeubCiTlZmt8bmgylSAwaqqYACUVPgLYQsvNUgKC//I47/RQ+FgylK77RW9e8bYPJnVTZ9Ic/wVwuM/0MZrxSCHOuR1qNY0LHM3noXb8D3JEnSumL16uQPpHBnAuZebaBoLCan5vbYVE+5i0mlXim5iNAdlW1/1E3UjDELOlPPdUhMvSwoJ8/JbDNpjPnkdtkUDyfjAEEtonrSpXbWpe/jWbI7LM5/ewE9peIMG7QmArK7bXJ7bca+UyZsxHQ94DD7ah0EuDMhIhLk99nJdZR008J6zKUfVNj8tQJDn88z+ZPKsi64kiRJa46AOBSoejIgfnGPw/SwRWSo9GQad3nnbtBhHwYimNegpkBdJYdNasigcWGBqeeqNEdt4iCmfu46Y1FqUvW49E6T3J5kTGfqudWd5HU3gXMO4jTMPy6I0mAXkmATpQnO8wbavEpIMlEdfWAjHmuAIci/rGCNKUQZQe1ITGsfiNdCUgMGmR0WjYs3NtZm6IIvPn2Ov/nxXu7bM9txHW8mZHqmRvloi5FvFrEH70BnvBuQ22PjLYQyMVWSrsHpbRF5On7VhJVPC0jSNXmWzm8O9NFdavHIiTmefH+as8MWsXnrRSQzOy0GPpEFNbnXCpsRsRcTtQQiFljdScfw4a8ViFyBZi9N8Pc8kqH74XTyIAYRAwhUQ6V+dmPc9w58IouiwdyL17lmU5MiDiIUuDMh+f02vU9miAPB3Bs3WGh5o44tryY5Ti2tce50gDNiJsn69VWeTJVuK9VQiAN5jJEkSZIkSdqomqM+lRNJfHPXYYep56vUz3qICJTLw/HyelCS1gYRJwXmr0qB/H6bwn0ORlaldsrj4mczVPtuPvep52SSwN4Y8ymN+8sKEN82ciywMzn+d1PuTOfUGLQPNIz3DBRXIS7GeJ/34NYSwyVJuselvAgFODOSZabnxhJ9pY1t5uU6/Z/IMvLNIuPfKxHLeCVJumPMosrwV5LU7LAVEXuCsBkT1mOCWoQIBKql4GwyMbt0VF1BCIGILg+uCIFR0DC7NbK7LCJX0LjgsfCbJmEjpnK8RfGQw85/1sPsr+pUjq7eH3hrPGDyZ1UGP5Nj5JtFwkbE+T9bW11CJEmSJEm6e4xc0nJAtZIA3IFP5Ra/1/1wGrOoMfXzGgD+fETttEt2l40/H+DOhiy82aR2+urFoWpnPFJDLj2PZeh5bGl5+ViL2VfqqKZC8QGH1ICBoilotoI3Fy4OSAf1JuktJlt+u0jYjFE0BbvPoDnqE9ZjGmM+zrApk1NXQVCOmPhRhcHP5Rn57S6mn6+uaqc9SZKk1VZ6q0nh8TTvfqxwt3fl1ijAYJR8AZRUGDUwshpGTiWoxlRPrmycoHbaI783xdY/6Ea1FNzpABF1XtfIa2gphagZE7YE4nJwiKJDasAgfyBF/bxH7VRyntfTKuktJloThCZY+CTwkc5Fiqegzbcn9YTvplA3BVhjCpWnYrwtS98rv98iNWCQ220z+3L9hrt3H9o9y9/8eO9118vuTgpwZndaCAHKDRT6vJ2sXp3WhDzfStK1ZAabqHrMwqk8mSM3mJAmSdcxX0xxYmuefRcq7Pqpy9lP2YSpm09Qze6x6H8miwhh8icVmqOdj/GqDf0fz5EaMvDnI6Z+UcWfj8jssEhvMdEdFcVQUA0FRVMIGz4zL2+M3/8Pxx8Uo8PJWIXifSmye2zMgoZy+YQthEBRFCI35sK35/E9ee6UpHtN6f0W6S0W2Z2WHAdcZ1RDQYQyAFaSJEmSJGkjm3mhTv28T/fDDgOfzMEnwZ0L0C6PAcjrQUlaH6xenb6nsgBMPV+ldsqj+t/23fT2zHpM37GA6imX6V/UZL6otC7d1uRUZVrBeMdAnVJRhIJQBMHBgPAh2YJKkqRbt2mqCUA1vbYquEt3X+2UR2arRXqbyfY/6qFyrMXC2y2ipqwMKkm3mzOSBDCGjSSiU0+rSSKHwmJwBICIBUEtpnHRo3ysRVhZ/vep51W6H0yT3mKS25t0AROBIPIEkRejmgq9T2ZojPltz70VjfM+498tM/y1AnpaY9sfdhG1kuriVwuOkaQ1Ryy2CthYNuJ7kiRp/VCg7+mk9dD0L2r0fixDZrtFHAhUQ6H6gcvsK8uDX6eeq5HeapEaNJl6rnbdTgUiSradGkqSbErvNakcbRFUY5xhg/5P5lA0aFzwqV/wGHw2hzsT0hz3aYz6RM2Yi3+1QOFgip7Hkn1V1GTfux50cDabVI7KgLTV4k6HjP5NiYFPZtn0pQILbzeZ/3UD5OlKkqQ1SAgQKqSt5d02vzjwftu6Z5r9bcveWxha9vhitdi2Tr+zsiSQbam5tmW12KY5liJq6qh2Mp4QoWH2e6jm0uzr6YcvF3lQwcxrFI845HYlizQnSU4F4Lnh9hf+1Piyh95MyNh3S2R3WESeuGY3zk1fymNkl2eXhs0YzVZQ1GSsI7PNYuCTEOsCJQIUiJpQeYRliallP+mKThoWflfQ80qMM7b0/eCUTVRU0IGs6ZG1QphVUd4z6f3XIXNnk/W++JcVBg/O4ajLC198adPDbfv/pxdfBuDcZNJdrpFaADp8Rpf5C8nPIL8vxSt/+iBHHj3Dg4+cRr2cf/Rcc3fbcwKhtS1z9PZxFF1tP1EeGphc9niinm9bx/jlIPp3QnjSwPh/JJP9wTOTbetJ0r3qL/YuHac3fSVk3B8kpdUw9y2//m/4q1s5ulPuuhAdln7kT19ROkTWdHpeB2HYfryZL7e3ie34Gp2W3aRXpre3LUsb7V2tO+1Hp88o8NvDNjoVBxAd3oKmtR9bt/S1F12cbzjLHtebVts6UYfPV7kiEuripixaLNg9WmX3D12CArS2Q2M7vDs91Pbc7b//TvsOA4X7U/Q8liYOBBe+PX/NIrOxC5M/be9uXj/rUT979QJQG8HMSzW2fKuL/qeydD/kMPb3ZcJaTGrYYOgzOVRTRcRJt9T6WQ9FA6tbJ/IE86/XiW+s0Xpio44tryb5+UhrXG6PDYB7JzqsSKtK0RVimYwgSZIkSZK04TVHfZqjPvn9Nn0fz+LPR+hZgTcXEsoYZ0laF7yZkJkXa/R9PIvdZywWsL1ZPR8ERCbMvHCHE1PlWGBn8jO5KbclOVU9p2K+bsLlvzGRFQT7AqK9Edx88UxJkqRFD74/R2/Jo+bolIr23d4daQ2a/GmV1JDOwLM5Cocc8gdTxL7AL0eE1QivHOHPBTQuymQzSbpZ9oBOesREc7Qk2bQcUTiUQgjB2HfKyxMwVDCLGqqhELVigusklIaVmOnnk85jZo9O9xEHs0tDS6lJBfTLkTn5PTbzbzRX9X250yGXflCh97E0WlrD7FIZ+nyeC3++cN2kEkmSJEmSNiZFA81UibyYwU9nUXSFudfqGHmN/L4UmZ0W1VNuWzev2Vfr9D+dxezSCevXjgo18hpdDzkYWY3pX9aofpBE5xo5lcHP5WlNBMy/2aDvyQx2X3IfLKIk4CwOBDMv1Kid8Si908KvRGS2WbjTAXa/TvdDSTLKtRJvpBsXNWMufb9C8XCK7ofT2H06l75fkVUsJUlac1KDBq18e7LJWjL5gyFEsHwCSdFj0vvqmAMeiiro+3gGe8DAzGso2lLGzrn/NH9TRen8+Yj5+euPKUz9vEp+fwqzW8PuSQol6o5Kc8Knctyl/+MZVPNyZ7MY6o8L/BFBoF1nQkxRaGxVSdUChA3EoM5o6M+nELkYBkOY0lB+mEIRCnN0LT31JubaTp8aBOD5n93PtU5W1RMu1Q9cCodSPPj7TV7+xUHmZnJ8/itv3viLrqLWoEL+pEDzIsqHVOSoriR1Vv3AxRkycV/Mghlj7tjYyXvSnXduc47i3ir5N8GcB/MtyL0FPeYclYJBuWhQy+uokWDrP+lCd1TiMJk/UA0FI6+hqAqRF3Pxr0rXTEy914XVmLP/YY7uRx2Khx22/m4XfinE7NYhhtlX6pTfl0WoJElaoqdVsjst/EpEa1xeMa83qq4goru9F5IkSZIkSdKdUjmejMXLHChJWp8qJ1wy2y1ye23cqYCqEJ0rDq5AdiJCD6D4gMPCm00ZcyKtS6uanKrasOkLBcwXdVAh2hkRHAnAuf5zJUmSbkRPycMzVF450nu3d0Vaw1oTIef/0wL2oE5hf4rUkIHdq0OfTvbyBWAcCaonXeZerSM+WjxUTyp/ty2XpHuckVcZ/moB3WkPbBVCUP3AbU/ijJOgz5vhz4XLK6OrsPlrBew+A9W6PZVPWuMBo39bBqD3qQyFAyny+1c/EVaSbgshOrdRWO824nuSJGn9EElneD2t0SoFTP6kQtRKjkutiYC+p7P0PpFh9G9LAKiGQm6fTe8TlzuYruAlep/MkB4xmXlpKTEVoOtyYun081VGvlUk9gWXfljBnQmIXYHmqPQ8lqb/k1m8Uog/H9E479M4nyTDRq2QmZdrdD+UZuvvddGaDJh6riqLbqyi0jst3NmQTV/KM/iZHM1xn6AW0xy9mTY1kiRJq8ssajibDcaGb0ut0lUz9OUJ6mcyxIFKWNNpjTuIUKVxIkP9/RwAqaGQ5nhA5WgLrxQhAkEciptKTL0R7nQItNj89eUdY50hE28m5Ox/nKfvr5PE0aCfpSKtK9it1rBCuOtyUklTQf3L5LwvPt2Chor6g/YJtmx/nb498yvef9/XeOPVPRx9dxsAl8Z7yOyoXrvbnIDyey2++b1XeO7H93P86Ahwd5NT5x5WCXKC3AcxRi1i7PpPkaR70mIXaRS8N9IyOVW6LcIemP8sEIM9Cs550GahZ8and+aK+6CMRms6QE+rWD06IgZvPqR2xkuSKuVt6YrMv96kOeYz+Jk8ZpeONxdy6Qfl25PYu1HHlleT/HykNaxwn42iKEw9195xWlr7wmZMasi427shSXePCqqpELvyXCtJkiTdO2RiqiStYwImflSh/5ksA8/mCM76zOy0bmpTF5+y2fG8S/dDaUrvthDBHbomlmOBncnP5KasWjRC8Ugq6cKgQDwU4z/jg7laW5ckSVquZWnYXkSx4svOqdJ1uZMhU5O1pQUqWN06zrBB4VCKwv4U+X02sSdASSpSorLYmVEIAQJEKGheCpj+RZXYBz2jggJhTd4hSneIDtkdFpktFnpWJQ4EUSsmasaEzZiwHhPUIoJqfPXATB10S0U1QbVVNFNFNRUUU0EzFRRNoTHq481cPSt7+CsFtJRK+ViLyvEW/nyEaoPda9CcDOB2J3THMPb3ZbJ7LBoXbl9wVWanxcAnsiiaQuzH1K4VtClJkiRJ0oYmIrj4VyW0lEpQWSq40fWQQ/dDabyF5AJo+3/RjQgFWirJSvEWQiZ+WFlRIqhqKbSmAyrHlqJLtZRCbrdNUI9whk30tMb578wv217UjJn+ZY3UgEHxPofpX9Tatl05mlRd7Xk8Kbqx7Z904y2ENEd9Su+3iBrynuZWtS4FTD9fo/epDJltyYRD2IxZeKtB/Zx/2xOnJEmSrqb3qQxBNaY0srYDXFObWqQ2LXX+qs06zP5jPyJUUawI4WmYBZ2JH1auSLy6CiEwagLdhfRkTKxDvVu7atEse9DA6tKonvKuOtnrlyMaYz7pzcsnvnJ7bRbeaRIM3tj77cgURA97xFtDtFwMLojdPqQFYmfArpl5KuNZRh6eRNWuPilq9+mkt1lolkLzUsD/+u8/RbXioGkhX//tX/HeO9uIvCHcqYDwGtcAZlHj+Z/cx9F3t3Lg/our8AZvkaZQ2a+gRILcSYHVrePNy6qCkvRR6hWz/6JqEIyaGCOyaIp0m6jgbk2+Ts/3oIYxhYWAdDVk01gL04sZ/075Lu/kxtCaCDn3H1denEKSpHtTeotFHIprzvNKa5e/EJLfZ6NaShK7Ikn3gMKhFJltJnpOQ3dUFFXBL4VUTrhUjrUQEfx359667nb+79uP3IG9lSRJkiRJku5lp/70kY7LTwL3X5yl76Uy7n85vqJtmUWN3F4bu89ARII4ELDNojnh37nEVElaZbecnGoWVYa+UMDIakRuzORPK3T/vUwUkyTpBmmgBzGxArF+/S547+8u8PDReR55f55IVYg0Bd9Q+WB7jvmu1B3YYWldi8GbDfFmQ0pvt3BGDIqHHYysBgKCakTUigkbMUKAbquotoKR00hvNdn+X/QgYlC1y8mrkSCoRiy83aR2SiavSasvu8ei98kMqqGgKEqSMB2TtOBSlhKpryQ+rNwiWNaqq9O6H9X9UBoRCWpnPaZ/WVtWvTw1pKOnNSonWsy+VF9cHrvQHAtu7g3epNrJ2/v31v90BkVTmHutTuk9WcVdkiRJku51sS+I/eVJLc6QQeTFtCYDcnts/PmQxphP2Ihpjvkr7k5aOJQi1W9w6fvlZcs/7M5qZDRUK7kOVI0O13Mx+JWI3B6buV/ViTpUFhchzL5Up3HeQ0+r2P0Gub022T02498pXT/RR7qu2mkPdybE7tcZ+GQO3VHpeTxD75NQP+sx/YsaonNelCRJ0m2RP2DjDJmM/2MZ8ccFlEjQNRrglGNiFaI+Fc1am8d/szug72vTlF7owru0NN4btjpPyGppFbtbx+rVyf44wKwvX6/7W124MwELbzVpXLgiSUuFzV8tAFC83+HSDyrLClF8KPYEEz+oLD3NVMjssOh5JM3IbxWptkDc6rC0DvGhK8ZWbBBPLY19jGyeggenOj5VCBg/08eW3yti5nXCZkzsxeT3p2g1Q0DhD//ZL0jZPr29VU5Zw+QP2My/0WzblqJB39NZcrttTp90ePTJD3j48VO3+OZWT22nijMesfmbBaZ/UaN2Wo7HStKVoisSGZSuAPfFHPpvz6OYMqBFuv1iXWWhz2KhzyJbC+mZlsdoSZKkO8nIaXhzMjF1vaqf8+h9MkN2p7WsgKEkbWTFIw56SmXhzQZBPSb2BekRk55H0xTuSzH1M9kJWpIkSZIkSVr7PF3rHMvzEUZeo/thh8wOi6gZ05oIUHSF1NDlIsNrc9pWklbklpJT+z+RJbs76QRQPt5i9sX6dZ4hSZIEqg2ZHTbpTSZmt46eVlE02PXGBAKYLdi8eaDnmtsoFW1efKif+06WsPwILRKkmyEPHV1gdDDNiV2FO/JepI2hORrQHK1cf0WSxLzuR9KohkprOoBYkBo0MYsaA5/M0ftkTOVYq2NglyStRPFwiuxum7ARM/XzCpkdFn1PZRGhoHHep37Ro37WQ1wxr6jaYOR0jKyGnlHR0yq6o6LZyfE1DpPOvyIUREHybxyIJMEiiIk9iLxkoB8Bme0m2Z02ud02me0W1VMuYSPG7tVJj5iIWDD3643/O94cC8hst8gfSOFXIxrnZIcBaZ2IBUlm+gYTb8D3JEnSurfwVpO+j2dxhk1K7zYpvd1cdp22Ul0PO9QveDTHlxf7UK2lwev6eZ/8gYiR3y4y+tcl/NLyxJnqiRbpzSabvlRg9G9LV32tD1+jetKj/H6LLb/TRfGww4wc11sVQSUiqETUzsxCnCQv9X8yS3anTe2UR2NUXlNKknSHqNDzaBq/FBK1YtJfOEfvExkKB5cyKN87ug1vx/Lr7NKTC22bGnpl+bjZeK3Qtk7GaE8+yZmttmWdnGv1LnssBIx9FQY/l0MzVYJ6hDsVUPuvHMzf619cyZqG7LkYawq0yy8fm9AztEDP/nmChkH5Qo4tH7/EQLnBsbe2MdbXx/Y9E0wqObIPVSBWmPn25eeGguGvFhj/h3LHBNUrxb6getIlcmOGPptn01gN+4HGsnWyWnsw8bF6e4vVAas90LIStme6nnTbn3u0NUzUUKn/sog/ahNUfWZeKNOaDECAnlYBwZbf6eLf/b8+ieYkY0X1cx7l95b/fJ56L9nfxvsZaq9Y5J5eYOTAFA1N8Etv1+J6F9z2sfsZL9u2LBbtk/CVj12/41vje+3bT332/OL/A+CiCn1PZRj4VI6oVW67hpKke83o3xxa/H9xwWPk7eR+4EyhyI5zdX757l7KRRPHbj9Wq0r7eEsYa+3rae1RMXHc/nfeqTai8pHXUNUOxXQ6HDPCoMN+dNjfW9FpXyyz/ZgSxcsL685V023rzMSZtmVKh+2rSociCHGHwr0dPpOVCjtt7yNWUMcy2Y0O+/HOuZG2Zbv+6ZuL/09vN+l5NpdU/JfWl406trya5Di1tEY5mw0UVaF+ThYGWK8iV9C46JM/kKJy3JWHY+meELsxpFS8+ZDmpYDYE4tJ9rk9Npu/XiQMVHRDRulLkiRJkiRJa5QQ9NRauNPXnqtyNpsMfiZH5MbMvFinetJdloxqdmtJDPedJMcCO5PjfzflppJTnRGDgU/l0CwVvxJx6Ydlwoq8AZQk6epUGzZ9sYDVpYPKYuc/ESYdJ735kNLHuumqevSVXXoWWsxdpwOqm9J54/BS4JLuxzz15jSbpxqc2JED9foTr5J0o1oTIePf/WgiawNU6H7YIX8gRdeRNMXDDiICEQtEJJL/f5gQGF5OCvQFsRcT+YLYFURuTNiKiVxBWA+JZTHMDS+9xSR/IOk4r1oqVo+OqimISGAWNbb9k24UXSH2BRf+Yv6qvxOxC54b4s2sTiVcbzZk/vUmuf0W3Q9nKOxPjsdCiCRp9rkqcXPjX/tN/rRK39MZcntshj6TJ/ZjFt5pUXpr4yfmSpIkSZK0Ms3xgAvfbk/iuWERHTtqFg4k12Fj3y0RNWMW3moy+GwOq0dvS04Vly/PrB4dPaOuqGur5iT3zfn9Kby5MAl6klbH5Y8/9gULv2mS2Wox9IU8p/909u7ulyRJ944YvIWI1IDBlt/pInJjNDs57kdejGapOO8rhD2CKH93d1X4IF5x4JIOfRFc0hn+SjJ+nKwA2Z02qV/G1HcqaC6kLgn0BgQ5aO6CoAuCIkQOPNZ/YXHbvQeS8/S23mm27pzmvV9v59XnDwLQ+iCNlknOp3qXz9n/WGXr73XR9/EMkz+pXncCePDZHJntSQFXxbw74ySxr1D5QTeipZH73Dynv7Z8P8JG8njix1WKhx3cky7loy1i7+rvLW5oKEaMvbWFqq3RydcY5n/dJLfHJjVoyORUSbpCqrV0nzDfZbLtPGy5WKdcKN7FvZLuJcUHUnQ/kkZEMPHDlRWGlSRJkm6dnkuKOngLsnPqelZ6t8nmrxfJ7rConZGJxtLGN/NSnZ5H0wx+JhmciiOBqilEXkxrOqB+xkP/bzZ+bIokSZIkSZK0fhWaHnnX59Kpq9/DGTmVgU9naU34TP6s2rHovT9/7cK5krTW3XByat8zWXJ7LIhh9ld1yu+urPK1JEn3tqHPFRaDZ93pgMaYT+OiD1ecR8/8053sGK2QHavdVDHg0FSZ6kmxZbKB7ce4tkxOle6gGOZfbyYJfXsscvtTqKaCqikoetItR7EVFFUBheSLJFH7akScJLCG9Ri/HOJOh9TOygmIjaL4oEP3Q87SAgFhM2bunSaVoy65/UnH1Ni7nJh6F3701eMe1eMeVm9yyejNh8sq9dwLZl6oM/NSne6HkuTz7ocdFA0W7oHOsdI6JkTytdFsxPckSZJ0mWopuFPLkyoUHbofSVM76+JOJSPTzVEfEQtSAwa108svEJuXlp6f3WlReuf6Y3atSwFn/v0s/c9kKR5xZHLqbeLNhdTPeWS2W6S3mjQuyO6pkiTdGePfLaNnVYyMRnqrSfH+ZBxCs1SiVozIKuR/pNJ4SOBtF3AXhlObpxzEzwtLC0aXdkJRFOrnPSZ/VsUq6vT+10VyxwSRA26/Qn27QtwbL46zXY+iQFdvbfFx9rEKtdeS11btGOELaqc9CgdTFO5LsfCba9/7f3iLEnkxrVdzaD0hev+dTZKsv1AgruoUvj6L3h0CZsf1WhMBrYmVJQil9tdpnUgz/90+ur9Zx0ivseB2Neme0vNYmsgVVK8x2S9J96JMPfmbjVSo5U0+2Jtj/4kquWpAh6bMkrTqPuzSfu4/znUMspLWuI06trya5OcjrVF6KrmX+rBAjbQ+udMh7kxAeqspk1Ole0JrImDsO8n4ld1voNkKYTWmeclHiOTa8i/+h88C8Nk/+hVdA9W7vMeSJEmSJEmStNzIXI2modMc6xwHomgw8OkcUStm6ue1tTVmKscCO5OfyU25oeRUZ8Qkv9fGL4WMfadELOOoJElaCRXsPh1/PmT0b8vXXDVfDxCX/62nDDz7RnPok5NBqN5EdqskrZLqSY/qyZVNFKh2MlGkpVS0lIaWUlAtFT2tYhU1jJyGUdQwuzWyO216nkjT/8o853almeuzb/M7kW6X9DaT7occombM+b9YgA43G9XjHs2xIJlAvMtziN7sWrobugtimH+jyfxvmmz7gy66jjhErZjKUZm8IUmSJEnS6ohaMXr6iowgFXqfzAAsC0KKfUH1pEv+QIrUsEn9rIc7GxC1YkCh9F6T4n1OW1fVq9GzKs6wid1vEFRkFcbbafLnVbb+fhepQUMmp0qSdEeFtZiwFtOaDFh4q0nhYIruh9NoKZXAEKg1heyvFDJvCKIcpL9eQAQCvxRRPtq67ecHLRuCIcASMBJAQ4WLBrEfo5oqmW0Wu/5lL7Ov1pl9WksmA68o9qbfwDDw1KUi3/+rxxcff5iYCuBP2Oz8l8lYW1CPrjqBvGx7P6sy9TNQVNjzfyrQeiVL5usLXKMW3aoTsYJix2iFWx+7EQKiso6WD8k/O0/pe32MPzfItq+MrcKeXpueUVENhaB27d831VYY/lJSCLN60mX21fo1u8BK0r3G8CM2jyeJ9fPdSWfnycEU28/V6Z92udRv3c3dk+4Big6qpaIoCmZRl3MLkiRJd5DVpSOEILzONbW09tXP+3Q95GD1tfBm5LlUujeEtZh6bXmc1eBncmS2L93DvPr9QwxsnSeTb7F5zzTpnIzXkCRJkiRJku4uM4gYKjc4PVBAE5Md1+n9WAazqDP+nTJxIOe0pI3rhrK+tv9PIdFPBNawwv2/ANXpnClxOP3+De3Ef9i9bcXr/iNP3NC2V+pfnjp3Q+v/Q/Xwitc1tJUP/A2nyze0H5a28kGoc7XuFa+bMVZefa2QurHuudXGypOpdv3xWyte9+JfH7qh/ShkVr7f9/XNrHjd6VZ2xetemF75zwRg4GsnVrzumf/8wIrXzdo3Vm1PUVZ+Yhz9m0PsOVFBmWhx6ukeZn5n81XX3fmtt/EHdPhKgT2jVXZfrBAHgpkX6tRX2C2y/7cKiC6dLf/0xo5DknS3xC74bgylmI4Zih/SwNlkULzPwRmCQ+9Wibwy1ZMuC++0iJvLz8lmj44zaGD16pgFLQnwMlVEJIhaMWErRlEVVF1B0RVUHdy5kMmfVFecCPnmDbXTuNFE2vqK1xyneIPbvhETt2WrA3/SjYjg4l91Tkz9UFiTlW3XlDj5mW39/W56n8xg5DTmXm3c7b2SpHaCjVm9aQO+JUmSJCOv0fN4Gj2tJV3qL9v6+10YGY3SO00a55cnx8y8UKf6gUt+X4rcXpuuI86y77vTwbJtdaI5Kv3PZEiPWIhY0JoImP5F7ZrPkW5RDFEzRjVkMS1Jku6e2BMsvNmk9G4T1VTY9idXjE/HEBYE/kKIaipktptkd1rJ2MVtZA36qH+cdPSMv5OBeR0UwczLdQY+mVtcr/eJDBNVQZi7+eNortAkk2vSbFhYO1sYPQHVV9rHlYJKhF9e+byOiMG6r0Hz+QLRpIE+dOe6p6YfqlL6mz5Kf9tH6kCDzHaFyBW40wHiBmPSay8VaB7NohUComoyfRgH6kfzgW+cgNRJsC4q5H+7iGooqIaCoimEzRiEwCwkrydiQc8bNWaGLUr9BrG29MJaSmHoC3k0R2X0b0rXvd6RpHvR1gtLY5XVnLH4f8/SyNYCQCanSrfXpi8VUDRoTvgyMXW92qhjy6tJfjzSGpUaNohasWw0sQGU322S3mIy9Nkc4/9YkUUFpXuWOxuQ2W5R7K+Q62rgtUxmxro4957Dey/t4oFPnGTn4bE7WiRMkiRJkiRJkq50/+gsoaow1p1la4fvdz+SJr8vxdTz1bU5ryXHAjuTH8lNuaHkVL0nRDvUxH/fof6X3eT+ZPZ27ZckSRuA6sc89MY8uVqAa6nMDKSu+xx3KuTMv50jNWyQ22WT2WEx8GyW4GGHyI1RdRXFUAibEd5MQGMsoDURQAxmt4bVnXRolaQNJ4LmaEBztAIa9DyaJrfXpnifQ+FQ6vIF4uV1VVAuj74KIZIgaC8mqEaopoKeVjFyGojkmlLEyTrpEZMd/7QbrxQhIoGIwJ0JqJ5yCSsySXK1FB9IoZoqc6/V5eTgGpXbZ1G4z8GbDZn/dRLQFbViRAixDxf+usSWbxYo3ueQ22Mz8eMK7qQ890iSJEnS3WB16wx8Oos7HVI/5+HOBESt9TFKqNkKI79VJA4EEz+uLOumWX63Rc/jaTI7LUrvNtvekzsd4k7XFrej2iqKAmE9XlGlxZ7H0li9BlPPVWlc9In99fGZrXeao8rPWpKkNUGEEIWChdeadD+UxlsIsbp0Jv5vC0SXC6BptsK2P+wms8Oi6i8vOhbG7QXLxuuFtmUZs73g4LyZbltWC5PtW2kFfR4av+1R+zcetVOzOMMGm76UbLvvFzFTX13+2o2gPdHqtdrOtmWTQZKEWvzDGYrAqUY/oKEMuQhdgAW6GqFMaqSet9n+X3cRPtviwmeabdv6kKImHT/tfoPy2zlMYHyqm2bm6vvWCo22ZU/kz7YtG2+1J81Oubm2ZdNRltTTEX3HA8KXDAY/kywPGxELbzepHHNXNIFqFDSaR5PCm1F5aR8b4xl+89/twZsLiaOkC5M7EyaPl53TlpKYjbxGbq9NbquJ5qiIUKCnNernPIJ6RBwIRCAQMeiOiqLB3OsNolaM1a2T3WWzezZ5vaASIUIB3yhgFnViP+bS98v4CysPzvZ/tqVtmfnpiyt+viStByPfeh+7X2fz15Njh4gE5v9zjJGZkOIRh/wjacrHWvT89+3FGMf/7kDbspXGoqhq+4rdufZifk3PXPa40TLb1hEdzi0dd0OsLPJcUdvnNDRtZW+sJ9P+HqKP7N98w2lbJ47b9y3u8L66su3bLzfa51ADvz2Uo9P2oqh92ehUV9syPrJ7nX5+SodlnXRaa/xP72PnO5PUHIOXv7EFvgHCa9+33f/q1yt6DUmSJGnlrF4dzVQpn7mx5gLS2iRimPxpleEv5xn5ZoH5N5uU35U/W+neU36vRfcjaXYdHmPH/ZcWlweexrsv7uY3P9vPiTe2smVf5w5VkiRJkiRJknS7+boGSntPKEWHvo9nye22mX21Tu3UjTWSk6T16IaSU+MQogkTUFC771zlZ0mS1qE4ZtdPXTQP5rtN3r2vcENPb40HtMYDZn9VY+hzeaxuAyOnIeIkkc7IGjiDJsX7k+Q7EYGiAQKmZLcXaaOLYO7VBnOvNkgN6eT2pdDTKoqmoKhJQLo3H9KaCmhNBdfszHml/EGb7kfS2D16EqSgQHqzSfeDaUQkCOox7kxA/ZxH46K/4g6r0nLFBxziIKb0jpxAWksUPUnScDZbmHkNAKuok9udBMgKIfDnQ8b/sUzcjDn/ZwsUD6fofiTN4KdznP9Pt7eTjCRJkiRJnRl5FbOgYxZ0cnuS83bYjGlN+JSPurhTa3f8Ss9oqIbCpR+UcaeWX7SX32+hGAo9j6Rxhk1qp68+UB25gshdWYKGaiv0PZUhu8Nm9pX6NbcrrT5VV1Bk51RJktaQhbeapEdM7L4kGdHu0WmMJsUSIlfgzYfY/Qb1O7Q/cUHAKJjvLE1dBbWlASi9Cd0vxSw8piBW6Xgq0svTa8RgRPjlJvrPbfTvOxh576pdanqezFA4cDmZqAR+NzS3rcpu3ZBWt8bFpzSIBfaXx9AzKoVDKXqfzGBkNeZ+1Z4E9VFhPaJ+3iP2BWEjRjGgfsZDs1UyOyyMooaigbHLQjPVZJykFOHNhgTVCBRQLQW71yA1YBC5MfWzHkEtQjVVWhM+zfHrX5e5UyGVYy5GXsMZNjAKGurl7qn1cx7VD1wiVxZ6kKSP0tMqA88uJbBf+kEFbyYktcmg55GkKEDhQIrZl+7UEV2658QxH3t/CoBjW9oLLEiSJEm3V9cRByEEpTevXlxHWl+iZszYd8t0PeTQ+3gGfz5c0T2VJG0kIoKwEdOoLi/kYlgRD336BCN7Jzn73jDHX9uBM1KhOSqrw0uSJEn3jtSggV8O103hbknaqD4YKjJ4vMFjZ6cod2v48xGZ7Sbdj6TR0xpTz1VlXI50z7ih5NTm33VjhDr6jhbOs9XbtU+SJG0AqZJA9+DSoM0H+ws3vZ3YhfHvVjp+zyiopLdYpAaSIJXYjZn/dQN/fuVV0yVpvWtNhLQmVichu3LUpXLUXbbMHtDJ7LBwBk2MvEp2p0Vul40QgthLgtVUW0HRkqRYfyGiNeXTHA0I65eDB9Wko5XVo2EWkqQ/byGiORYsduO4V/Q9nUEzVWZ/JYOA1oq+pzOkR5JOHoqiEAeC5iWf2jmPqBmTGtARMVi9Bs4mg+1/3ENQj1GNy4VbmjFaWkXPqEu/85J0twmx8hYX68lGfE+SJN00LaWg2Sr1cz7zv2nQ/VAScL3wVhOEIL3VYvgreWZfrlM57l5na7dGUSF/MIXVrRNUI5rjPu709SvE+OWkI1h6xCRyBektJoqSJAOlt5pktlpUT7nUzq7eQPXwlwroaVUOgN8lpXea9DyWoXbGw52UwWSSJK0BMUz8sEL/J7Kkt1go5vKEz8aoT/F+h7lIgHb7k+uDQyH6RRXjpI55eQI3qESc//N5CgdTpJ9xSI2D1oCwcBt3JCcIn/Yw/sFh4NksY39X7rhac8xfSk4FlBDQbuN+XY+qEPsCfyFi5oU6IoLMDmtFyakihMmfdJ73a1xcHtxpFDTsPh27z8Du03GGDUQMcSAIyhGTP6/SOO8hbmGYPqhEVK6SFHyzlEhQuBhSG7ibPyRJWn16RmXTlwsY2eR3u3nJpzWRXGvqTtK1sjnh4wyZ9DyWZu616x8TJOlGOW6IEQkEsG+0RKCrpLwILRQEuopnaLQMjaZlLJ7jpTVqo44tryb5+UhrkNWjLxaakTaO2BPMvdLAGTTJ70/J5FTpnhR7gpf/7SDf/eNcx+8rGuz4Z4JNX8hTOd5i9uU6Qh4KJUmSpHvA8FcLAIx/r5yMBcpbVUm67Xb/6zc6Lp8aMel9PE3ut4oE1Rgzr9EY85n4cZWgvMbHQeVYYGfyM7kpN5ScKpoq5sNN7MdkQoUk3Q5qHNMz55F2A2wvwghi6mmD0cE0oXlFwISedDNsnF+7Fb/UIDko1zPGbXuNoBxTLrcovyu7D0rS7eJOhZe7OCUBK6oN2Z026RETq0fHyGuoehKcqBkqVvfyTpMIQAFFaQ9gFEIQtWIaF30W3moS1jbWCLGig5FV8UsxZlGlcH+a3B4LvxrJ49YaoGdVNn+jgJ7SiPyY1qWAhXeatD4yqXfluTa9xaT3qQxaSkGEAj2lol7u1NL3iSwT3+tcTEGSJEmSpJtnDxqkBnTq53yCSoSWUtjyu11oVhJkHdSixSBsSLoENCd8Rv+2RO8Tafo+niWz3aIxljzfmwtXvaBE8bBD9+VuRADdD6c5829nrxsAIcKkI1nXkTRdR9LEQTLoq5oq7mzA1M+r1M6sbgKpnlMpvd2Sial3iTuTJC1/eA8lSZK0FkSuYOJHnZMSVUNBxHdw8s0A7/GA1I8tep/IMPNinaASEdZi5n7VwP0/pxn8vsCcv83JqYD+ogWA3Wtg5FSCavuJvXHB5+JfLWDkNIY+n8eoQNfzUHoKxO0bFl8ZFUQkMDIazmaT5tjqzSUE5YigHFE7tb6uJ3pOBvSdCAnNgKlBg5YsFCFtAEZOZevvdy8+bk0HTD23VMyydtqjdnoWRYOd/6KX4mGHzA4LPa0SVCMu/UCOZ0qro+mYnBvIMrjQJNcIUIBIVYgVBdMLyLrJMgDxW0XK77eYe1UmSkuSJK0W1UgK8EobU+VEi94nM2iOes8V/95oVEOh54k0iq4w92pddjpbAREJMlssqh+4HQuciAgu/nWJ7A6L4hGHOBTyOlOSJEm6J3jzIVa3zvCXCzQv+Uz8qIK4fv1sSZJug+aoz8Vxn/w+G3vAYPoX1ctx95J0b7mh5FRtxMN+TCZTSNLtMDDT4OCpMtoV44gCUOZc+uda/OrBfgB6HnMo3OegqAq1sx5TP1ubXYyzU8mAUC17t6NwJElaTbG7vMNq8XAq6fxz2mXquRqKDs5mk9SQgdWlgwJhI8YvR/gLId5sCArYfQbZHRapYYPcXpvcXpvIFTTHfMrvtwgqIVaPjtVjoGjglyIaoz6sk7mWoS/mcIZNFEVBCLH4b+QKLn2/fLd3T1Jh6+92gQpzb9QpvbWy69vGRZ/GxYVlywr3p+h5LE16k8n2P+mm+oHL3OsNEGD36UkCwjr5vZU2kDhmQ/7ixRvwPUmStIyiQ9eRNMXDKeJAJMUg0hoiEhQPO1z6foWwGS8mptbPeQSNCHcyQMQw9Lk8kFx/ImD2lQat6ZDcHpvuh9KLRSX8StKFber5KrG7suAPu18nu9tGM5XkulRNklW8+ZDqGRe/EhEHSXVuYMWVuad/WaN8rIWqK3hzIXEgUJSVP/9GZHdbaKaKOyMTMe6WDxO8zC6N5thd3hlJkqQV0CyVoBLdka6pH4oHBK3P+tjfNxj+aoHz/2l+8Xvq5XlcvXm5GtptJLICpZQEAV+rsIVfivBLERO/C9mjydfg30D5EWhsua27CIDmCcx6jNkQmA2B/UwWPadiFXW0lEpz3Mebled+Zy6i51RIeUTDaAo2fSVP7ZRH+f0W3pwMEJDWJz2rsvnrxWXLJn9S7ZiwoNrq0vPSahK81qOz5Xe6mK6HtDI3FDIgSR19sLXIB1uX/04KL/ndGyg12LRQp9j0sMKY1KCcP16zNurY8mqS49TSGqRoCrFMWtywaqc9eh7L0HXEYfZl2VBkPUttMsjvSwHJeELpreZd3qO1b/blOn1PZ9n0hTyjf1fueL8TlCMW3myiaAr5/bZMTpUkSZLuCRM/rrDlt7tQDQVnk0l6q0V9lQtfS5J0A2KoHHOpHHPv9p7cGDkW2Jkc/7spNzTTZH+iCsiJAklabfmKx30flIlVOLU1y0LeopnSCHSVZ16fJtsIOfLeHMqDDoX7HaJmjOaoWN3a9Td+t1yO7zWCNd6OXJKkW5LaZCCEWKzGLsKk0+T1OjvXax71s8nNsNmt0fWAgzNskt1lLXZe/SghBO5MeNUAm7Vi05fzOJtM3LmAoByhaApBNaRywiUor939vpcYWRVFU6icaK04MfVqyu+2KL/fovshh/z+FMX7HAoHkwklRU06zERuTFCJmHmlgS8DHiVJkiQJAKtPp//pLCgw/VyNyI/Z/LUCejq5z9UsBSwIWzEX/3KB7X/cTWa7RWariYgEF/5ygbC2/Nrq9J/Otr1O/Yy3OAljFjWKRxxyu2zMvEZ62OzYmVRRwe43sAcNNFNBz2pkd1hJAqoXM/CpHAB+KSS/P7l2bU0GuLMhjXEfM68x8ttFvNmQhTcbHTutLRLgzSy/PhC3oVh6ashg4JM5GqM+rUsyQeVucadCqqdceh/PgIDye7IIoCRJa4vZrSUJqbWkW6k3H5LZaVGp28RXdH229fZ722bQPndk6+3nHFVpP9FNPJaMK6mmQhwKiGHr/7UbtabQ/XJxMQ914ekZCt8okn1Pw37Fp3HBx3u72VZs4myH93b8pweWPX6452LbOu8dWdqOorUY+VaR5ieLjP1Xy7NMh795rO25jWdm8fMa2d/rAiD3ckz8bxZQzCQwRASC5kRA1IrxZkP8SrQ4vvWzbZswijr1M+7idUPxFbPtNebdpU7tVimm+3jI3omlc0nYigmKGkE1ojXRon7Ow1+Q4/O78zNoL6WgC9LP1EGFC7/uZSilMrLHppHViDUY3eVQ6V3+e9z7lZN3aa8l6dr0rMrIN4poqSTxrzXhM/nzWtu4uZZW6TriLCZhB/WIC99egBjSW0wGP5fjkZfmmX2lRnMigBDiICZeYbPlM3/2QNuyqbn8dZ+ndKgv0FVoT7So1FNty+JIbVvWiaa1n2+6s+1B6rrafr+WN9uv00ues+zxru72+8+K376/E6X2z2O2nGlbZlnt51ZVa983RW1/X53uIUW8ss+p7TU7fB7bfv+9m9oWgOqojHytgJHTEEIgYvAqEZNrtPiyJEnSeqVoEPtyHnqjin3B3Gt1+p7KolkK0y/WEbJT7rrUGPVZeKeJkdVoXJDJIyvhzoRc+kGFkW8W2PK7RaonXCrH3aSY2hXS20y6jly+ZldYjFuUJEmSpI0qrMVM/LDC4GdzaLaKnrq5sSBJ2qj0jEp2l0Vj1Mefl3NlknQn3FByqnqHz1tWr05qwMDs0lA0BRGJ5CuGyBW0Lvm40zLAfyNTTVY8AbpuxTEPHp1HAK8c6aflLP+zfPnBfh48OkdP2UN5OE0cxJz/8wW2/WH3YteXtWhut0H3uYj73q/wy6ctYl1e+ErSRmR16bdcNMWfj5j6eRKEaORVcntsVEslqEZ4swFxCKl+g+wuC7tPZ9s/6aJyvMXsy2ur2uHAs1mczSaapdK85HPpe5W7vUvSVQS1GCEEZmGVijzEMP9Gk/k3mqS3mfQ/k0U1FeoXPPS0ip5WsQcMRr5ZoDnqM/EjGXgj3WZC3J7MprttI74nSdrgNFsh+jBZRE3iAfSsRnaXRfdDS8kVI98qIiKB0qErm55SsXp04lBQOJRC1ZPxodSAQa22suANI6fS9WCa7E4r6SIQClRdoXB/CrNLByUJ4FI0BSOrkho0UQ2FyIuJWjGxL5h5qbZY4VCzFVAVomaMaitktlpktptktlmEtYjaGQ9VV5JlO7qYe61O5ejdqY6oaFA4lKL7kTTNSz6zr8rK+nfb7Mt1crtt0ltMmZwqSdKa0vd0ZrF7BySdxid+VKH3yQyFyYCFze3JkqtBRGD16HQdcchst5LElUCgTqvUH4+WNUgVIYx9p0x2u0nvkxmK9zsU73dojvsYeQ13JmT6l7VVCdIVUfK1rEGrEJ0zqi4LKhHNcR9n2EQ1k+sPvxzSmgxQdYXcbmuxEAdA5MaE9RirJ5kTcIYNLv3jVcaTBBTOhmQvRqBCak7gZxRmXqzRmg4IqzGxDE6+KqWhEO8KF2dFp7baTG2x6JoKKM4EOLWIvW/WmNtkMTVi0cjLLpLS2uWMmAx+Orc4Rzjx4wqNC50nU4uHUxQOJMf2yE0C1j4cz29c9Jn4UYWhz+bpfzq37HlxKGiO+8y+VCdsyEQX6eZt+lwOPatSOdFi5uU6yDiwtW+jji2vJvn5SGuUkMfYDa1yzCVqxfQ/k2XkGwUmf1rFL8kf+roTw/xrayvOZT2ImjGjf1uicMghv9+meL9DUI9wJwOCepzM9xxKETYiqic9mZgqSZIk3TNakwGXvldh4NksflleG0oSgD2gk91lk91hodkq+f0RF/584W7v1tolxwI7k5/JTVlTs6t6WqXvmQypQTMJCrxikl8IsexxIo0QgjgQhPWkindrwqdxMVjTHdWkziw3ZMe5OvlagOVH6KFA+ZNehEgqpS+83WThN827vZurrmfBw4gE5zdl2hJTAUJT5fUjfXQvtNj6P49SOdaCGEQo1nRyamY6udBtOppMTJWkDcDZbJDfn0JzVDRLQcRJZRnNVCkfW72A6qASM/9G+7Hemwkpv9/C6tMZ/EyOwkGH7C6b8tEWYTUijkgKWIRJIYs45PK/Iqn2HsbEIcsDH1Sw+3TsfgN3JsCdvMGCF1rSgTO1yaTn4TSqpSCiJHhTJqaucTH4pQh7wEiuhlex1knjvM+58/NtBTY0R2XwsznSWyw2/1aBsb8tr96LSpIkSdIa1PdMhvzeFGErxi+FOENLCS2RFxM2IvS0RuTGybWls3Tf2Bj1SQ0ai/e8XQ84jP9DmaHP5lFzGpEnGPhUDiPfuPo4gQLFBxxye5IuqWEzZu71BvWzHiPfKtKaC4laMdldFiK+fC0ZC6KmYOHNBs2xAG++80VCknCbDETGrqD6gUv1g/bk07nXoP+TWXqfyFA97iLu8FBV4VCKroccNEtl4a0G879uyqCMNSD2BZEbr+kxHUmS7j2KBrk9NvNvNjAy2uL5c+vvJl1ANx33bktyqgjA/V96GPmt5Ppg5qUaIgLVUrD/LymCwQ7d4QJB9aSHaqtJJ2qSuaXGBS8Zu/psjktXJF/drOwuC6tbZ2ow6ZI+MNFi37Eak4M21yr1cOkHFaweHatLo37eJ/Y/8h5UMHIaZl7D6tUxizqV4y36Pp7FGTLZ9a97qRxr8dGes8YE9Ly1/Npk9n6d1v/o3vJ73fAE4CpgfeRnoSgsDJosDJqokWDwnEf/qEf/mEfLUakVdRpZlbAmP2BpbVA06HksQ+HQUiGBsX8o4062d6n+kAiS4+vFvy4Ru3Fb0kpzNODMf5gjv99Gd1QUDVRLw9lkkN5ikt7SRXPMZ+bFOmFd/i1ICWfEoOtIMicSNmL8+YDWdEhut41Z0GhNBlQ/cHGnQ6xunaAcMfOCLJQkSZJ0O4mYxY7q0sZVP+fjzZcZ/EyOzd8oMvtKnepJd3HMV9EhNWAQ+QJvRjb7kDaWqCWYf6PBwlsNUkMmzpCBPWBg9RmY+aQQ2IVvL8hEfUmSJOme482HXPyr0t3eDUlaE6xenc1fKwJJAUYRC9ypq4+fS5K0utZEcqpRUOl/Jofdn+xOUI3x5kK8hRBvJsCdDpLgfhVUHRRdTZJBhk1S/cnkvZHTMIsauV1JoICIBVErxq9EVI671M+srJuGdOfpQcyD78yTrScDY7EKvqFSd3TU16tolkpqyKDrQQdvPqRxfmO1Ut00kwTSjg2mr7nefFeK/FtLCWBxINDstTu4rEbJ+Kflxhx8r8R0v02paBGaa3efJUnqQIVNX8yTGjKSx3FyjoXkOFQ60WDuV3eucIA3E3LhPy9QuD/p/tT94LWPnZ2IKyqafFj4QghB6e1mx8TYNhps+VYRI68tPT8WzL3WoPyu7Hy0Xsy/Xmfo8wW6jzgr+7nfoI92fo+aMePfKTPwqSzZXTaDn8sx+WPZQVWSJEnamDI7LfJ7U5TebSIigVlYGn6aer5K/ay3LEBAT6ts+8Pu5Pu/qFI7mYzhdD+SpuuIg4jBn48Y+26Z4a8W0DMqfiWkeL/TMTlV0WHwMzmcYZPqBy7zr/s0Rn1ECL1PptFslYU3azTHbu/4goigdSkgs82644mpekal98kM1ZMuC281CSoyImMtmX+jQd/Hs5hdGv6C/NlIknT3WT06iqrQOO/jdEhCNd3bU93A//lSp77aKXexSzlA95B9zee2Li1NJpePti53Qldwhk30lHp5jujm9luzFYr3J/MR5S6T7lmPfcdqACjXq5QrwJsN8WavEggcQ1COCMoRjTE/SSxVoO/j2cVVnC0mFcGyrq1hH5R2aBTPLp03hl8OqD6dZfoXtZt6n/eMuoISKYj/P3v/GSTXeSb4nv/jT570Wd6g4A0Jggb0Er1EifK+1ZLaTHfPTNzZiZ25cWM24s7sh5nYmNiYuB96P03s7L3T093TrW51tywlUZREiqIokqIBQQsShAfKm/Tu2Hc/nELBVAGoAgrl8P4iKoDKyso8lZV1zPM+xrn0CVmkKQzvSDC8zSY/5ZOb8uk77dJ4IMXoz2T8Rlp9Rk6j7xMZrEJ8bRU0QsZ+XqV9haKD+kmXwn4HI63SvtQE1Agq785vtmN2aPQ8ksbZZLL1DzoQQhA0IooH4qY/kQemF6BG0LbXRMqBtAKS2+LJvRBPNDdzGslBkzzxOosIIbNHI3tTYq75eOmdjdd8WpIkaa2J3Ag9KXNxbgR+JeTMD0p0P5im55E0HXc7NE576EmVRL+JqscXkvUTLhO/qhH5sluhtLGIAJqnPZqnz63vaLaC5qiyMFWSJEmSJOkGJ8L4+qd4sEnkCQp3OUy9JJvmSdJKWdWVospIkqPPbmXz1+MOr+5UwMTzNbyZS1wpRrOJ/l5E2IxoTwSc3+tB0cEZMnEGTOwuHT2tkegzcPpNGrtcRp+SC8hrjd0K+MirU6gRFHMmR7anqWXOJb9s+T9G4//osOPPOsnssjdccepwr0PPdJuPHpjg4N4CM4XElb+JuChMWcOx5eJOA6FC17sB3VMuPVNxcrEAAl2hkjF4b29OFqtK0lqmwZZvFNCTKu0Jn9GnKvMK7lZL+a0W5bdaWF06ekpF0ZR46roGqhZ3eEdTUGdvU1Rl9nMl3neqCgiBWwxoTwb0fixNYX+S3K0O7UmfoBZhZFT0tEZ7zGf82XNJfkNfjQtTm8Me7ckArxRSP+7KKRXrTGt2ooC6wo0exp+toac1UlssBj6fZfSpCkI2rpWWmxDxx0azEX8mSdqAVFMhty+BXw+Z/l1jrmu73aMT1COCBRKig0bEkf82Nf/2ZhwfmvhVFc1Rye1LYKRUwnZE5ArUrIKeUi+Y4GPmVXofz2KkVMZ+XqFx6lzhijNokNsXB5+vd2HqWemdNoqqYHZol453XQeZXXbcQOXl+uykV2ktqX7YpuO+JD2PpBl5qkIkf0eSJK0i1YyPp3C2wYRN5AuO/eU0ySGT/ieyfHi/c12e27inQZAMaTyvk9vn4JVDKu+3sXsMEgdV9EkFtQXCAnfbhecQ7nTAmR+W0BIq2ZsSJIfOrSucbXrh10JqH7ZpnPFRiyGtnBrHhM4jBIiqimhoJPoFIhR03J1Ec1RGn65gfDliz6Eqvq5gBIKxgQSp5fjhFdj5L7sW/FL5nRYKF64TCAMm9xtM7jdQQsHAb32SkxFGJp4OYnZoCF/gV2WA6mLKZPwaqYcNopRAdF3mNVIVSj0m1YJOz7BLePHkW0laBZk9Nj2PnCtgL77RoPhGc1ExRXc6IAoFVqdBe3xpQUhvJuTM98ok+nWSWyzMvI7Tb9DzcIbuhwQiEOx4bRyAo5vSHB3Kxt8YReRrHvmqR7rhEykKrqnimhotS6Nl6RgioqPkkq15aJHg2KY0IrekzZNWSe6W+Ph04m+KhM14f6pnVJw+A78e0Rrx0VMq2Ztt7F6D5rBP9ZBsIr6ubNTY8nKSr4+0BjVOe2T22Cseg5RWhwhg4rkapbebZHbZJIdMgkbEzKsNmmfi90L+Nof6ZpeaHOYh3QDCtiBsy32fJEmSJEnSjc6vxueE3kyAkdWI2tFVN7K9YchY4MLka3JVllScOvofMpRedq+42PWJY+cKOLyWzsn3epk40UmzZhGFKoGn4bUMhFABQWvEZ+L5GkHt2hbNRQCN4x6N4+clGKow9LX8gt2+zzcTLi2dYG9qbNH3dTKLT3jsMcpL2o4Tbvei7zvtLn66XK+9+ELe2oPTi74vwBbOzP1/01dyaF0G47+qUvvQpQPoWOibgnjiiJHVLvm4ur6098/DfUcXfd8+s7zo+zZT1qLv+/zH4gW8id0WPY+k2fvsBMM/WNxzRW4El6mn2fEHBxe9HddLAzj0j/vQvZDeyTapWkCyGeC0QjqKHre+XeLAnQv+xiVJWmVGTmXwC3k0W1n8RNFVEE+iuPbHOfHtIp33JElttUj0GSj9CiKKE2zSO20UXWHs51WsLh0zp9E46TH2c9n0Ys3T4klswQKJmaqhIoQg0a2jmvMnnV5Pwz8s0/+ZLMlNJtv/rJPWWFz8bXXqS04SkyRJkqS1JNFv0PNoGiMdX7sryrl4XXti6ce4yrttqofa5G5L0HnvubhN6a3WXAGKntawOjQKdybREurccwP0fyqHOxPQnvRBgfQOm6AZUX1//lSg60Jhrthn89cKtMZ9hn9Yvq5PaeY1QldQuNOh9FZLFqauUSKAiWdr9H48Q9f9KTnxTpKkVeMMmQx8Ojv3eeF2h+aox/RLDYjiApTmqEejJ43KuWNKwW7Me6xis3P+46fnX2y7UbwsJRoK4s0EHDOxe+KvdT+YJrcvEU9dfze+bWqHgdmMyL4asuP/lUfs9SAjIBPHx4/d3cYvh7SnLLyZgESfSW5fguHeBPRBT06ncKeAX7fxayFeKSTyBSMVh/aUT/42h0SvAcDg5+PnDDU4cW+C2jez7Pn3JzHuStIc8RFZjdS/OELi+Z55P1fNn78uoH/89CVeeUDAzOsNOu6av27TdX+K5muC+t0XHsfVj8VrK1pCIfnH8ev9wbc6SHwxz+ZX4s7P06808EoBIhBEvsCvx81euYFPCU58o0Z6t0fhDgdz1MGdDthbHMOdCagfdxdcmxz4bBa6dUpvrM2YqHRjMDs0Ou9NkhyK9y+hGzH28yqtUf8K33meKE7Esbt0Kle5Ha3RgNbo7PWcCpndFs6gRaJXpz3sktxisu1IhczfjZLaYuEMGihK3Ajg7OTMSxGzF4x3VVxejbqYyV1YmK8Z8/8+FWVxO7SFckeCaP7C6uN9H8y77ZPpd+bddqC95YLP/+r4/YvaNtuc//tS1QWaNoXz18ANY36CfX9m/rqEpc+/3h6rZebdVm9deKwa+tr8n/NKrIKOCJkrTAUIqhHV6rnCl6Aerdk1JUmSpI2qeKBJZo/NwKeznPib4mpvjrRCvJmQ6ZcbTL984TW67qi4xYDaMVmYKkmSJEmSJF1e4+ltV7xP8onjK7AlknRpJ/7+tst+fes33gJAS8Tx38gThO0IzVbRbEXmzUjSCllScWpqh0V+V4rhJyu4U5dPKowiePPZXRx/axCEAgg0PUJRBZoWkeupke+tcvNHjvP/ufXma/kZLi8Crxhg5Ve+8EC6staoh91lYPca1D68QlBMrO1Jodeidtil55E0YXvxBbbREtaeV1tgagwPnpdkE0U89vwkhi+7uEvSWmNkVTrvTZHcGif7z7zSoPRma5W3agUEMP1SI06+hLj4f3YXtekrOZJbTPL7E+T2zjYVeKG+OtspLVrnR5PkbkmgKEqcuPWLKq2RcwfPoBHRGvdJ9Bps+2edDD9ZXtHC0NGfVkgMGnTdlyTRZ7Djn8fTUkQkiDxB45RH/aSLWwwIKvJ4KS1RJNiQmcfRBvyZJGkdy96SoLDfofJ+i/a4T/eD6bnJXQDVI23EMhzCRMS8QHHXR1IEjZDim00SfQYddzsg4gCzVwlwJwPaUwGhG+H0m1gdcfir+n6bmVcbRP4K7U8EnPqHInpSI39bgsxNNorOdZmant5pUdjvYOZ1QjdC0ZSlJa2vJhU0O56Iq5rKDTNFtHHKY+q3NXoezVA/6dI4IYOWkiStLM1RLyhM9coBwz8qX9BB2Mhq1I9fp2TWMR2OXdhUtHa0jbP5wtucmRCzKaj2aKTrEeov4ymuwo4Qt3lAG68UUnwtLoKpH/c48H/bQqgqoCh8sEOQaAcM/T+PktpmYqQ0VFMhe5NNYb+DVwoYfbqCVwpp/sUmlFDgOSqRBj2HXTrvTdE47ZHoNygeWN5Cm+LrTYoHmsx8ZzdaKBg83qRvOH69ncMKkSUwxxS8fkFr97nvC1uCkacqDHw6S27Sp9xtzH2t8975xa4iFDTOeEy9WL/mJrHrVe2wS+1Dl9QWE2fIxMzrpLZadN2fojXu0xr18coBkSvic8hBk/K7LbySnLwirTy7R6dwpzNXlApQ/bDN9Ev1q0qicacCEv3Gle+4GBFU33epvn/u2ND1QJLs3gQ9D6YRQsSF38dcWmM+7cn44kdPx42EjKSKltJACJpnfNypANVR2faHBfacqvDiRcWp0toy+KUcqqUw89r8JhXSBrJRY8vLScappTUoqEeUDjYp7E/S+/E048/IRmg3MsVQCFs3dpMiSZIkSZIkSZJuPOkdNkIIWhM++V4HRVPQkiphW671XJKMBS5Mxv+uypKKUyd+XWfT4wUGP5/jxN9MX7LQs16yefZv7sF3DexUm9seOcLAzknUJT3b8kgMGqS2WgStSBamrjGqCYm+ONHEKy4yM3OD/51fpnnwPOrsOnL2FpvKuysw9UWNk12tTh0zq6ElVEQYj0CvH3dpnFzcH5juRex/s4gqYLRPLjJL0lqRvz1Bbl8CzYm7AAT1iNGnynilGzNhjfN+7JEfl9nyrQ4674mndVUPt4maN+jrskbpKZUt3yggBITtCEWJk2yDekRz2COzy2bgs1nc6YDGaQ8RCOwuA91WEYFANVRy+xKMj6/sQm1r2Of0d89NUY18QXvax8xqZHbbZHbHF8vFA02Kr8tO85IkSdLa0v1AfG7UcWcSvx5ipOLC1GN/MR1PoF+m2K6R1eh5OD33edAIGftljfZ4XHi583/pQgjB8b9aOE5VO7y63eFFAH4lxOrSURSFwv4k5XdbF0yZWQ6d96cI6iGNMx7OQBww6LjboTnsrflYStf9SXL7nLnPvUpI2IrmJr6JQBDN/R+iQCB8gWoqpHfZmFmN5qjHyI8ra/5nvVj1sEtmj0/f45n4nG+Zi54kSZIup/+JeKJa6EaU3mxROjh/H9Qa9UnvsFB9QWQsIXi9GNt9FLMOtuDDz7bnYjF6UqVwt4NzawLDg+RsbMqYCIkedBG9IdRVlBM66is2PY/CxK9rc8cARYddx2pM5y2mOywiTaGRNGiP+3PnD/Ed43hC0IjmntudnXiemgoYerON1RAUD8bNMCI3ovzuZRq4RQK9LVBD8FLK4oP9AnxLJYgEpS6TyX4bN6Fyz/MlUm/H22NOKTjvC/T7kggBmV0WejI+99r6bota/txJ0Ol/KqElFFRbRXgCVDDSGvnbE3Q/lGb0p1c7O3EDEFA/4VGfbQih6JDaYpHcapHZbaEnz52P+LWQ6gcrsO4ibTwKJDeZhG5Ee+LCtU/FUGabsUTzrpdUUyG5xSSzy8YZPFek3zjtMf27Ol7x6i+w6ic9snsTJAaMC5r3LZep3zaYebVBos/EKwf4CzTaCyoRQSViob1o1IxwpwIyikKy6dFwzAXuJa0mZ8ig6yMpzJxO/YRL6Y0boKGpJEnSOjTzahNnyCS13SJ10qN+VE7NvFHVj7n0fixDzyNpyodauJMr16BZkiRJkiRJ2hisekSoQ2Bv0Kli0oaTvdmm894kpbeac83dZw408GZkYaokrZQllYs2jrtM/rZGz0MZsjcnFpykZnXp/OIv7yMKVfY+cJSb7j+1bBu7VLl9CTo/koQIxn95Ay+4rzHJbSYddyUx83HyRP2Eu6jiSkVTCFobtxgobEZzxbqLMfN6k0S/SfcDabruTzH5Up3qe1efLGF26njlAC6KSaZ2WORvS2B16ChqnFAjhIgTdpS4g3Nml03oRkw8X6Nx/NJFqqmqxz0HiigCpjosTm9yLnlfSZKuv/Rui+SmeFqAZqpEvqB+zGX61QZBdePub5cq8uD4X8+Qvz0x181dWlusTh1FUwgbIaqugBIvup3tCjz9Sp3+T2axew3srrhYQ4i4uEGEgsAPqby/egmHoz+tYHXpF7y3Ou5xSG2zUE2Fwp0Oqg7Tv5PFCpIkSdLaUT/hxs3AmhFhM5orTt3+Z52c+JuZuNBjGfR9MjP3/5GnKjRPn7vmzN+eQAiBXw7XfEOy8tstkptDsnttsnttRp+qzEtWv2oq6I7KzCt1qoddeh5Nk9ltY3XqdH00xdRv68vzPNeJOTvZtn7SjaeVtSNUS0HVFVRDwejQsQqXD2E6/SaqrqzcVNxlNPzjMt0PpOi4Oy5cjtz19zNIkrT+OIMG9uy0zdPfLV1ymubMaw0yuzvIjQUUh5Zp6t4sRQGGZo+Fs09vZFTMDp2ZVxqc+vdd5E/5bHrjXEK1+kKC6J/VIBMi+kNEX0g6svFKwdx6laIqbBptsmm0SaApjHfZnBxKzd8AwfyfWwj6D3n0HPGodWicuNti4Ggbq1Nn+Mky4rzjjDEjyL4tUALQmjDQaqPMftlNKxR36jRNhci78n7dbIfc9UIJLZzbtAuESYHixrF6RVOoH3PJ3XKu8WOoK9TyGslKGE+1088VxopQEDQi9KSGutwFxuucCKB21KU2m7SvqKAmVIy0ijsdXJdp99LGpqjQ/+nsXHFp0AjjRq8RILjgbzDy4/PesB2haApmVkPRFFrnFdG3p3yCRkhhv4NqKHFxq64QNCOapz0qH7QvaLK4ENVSQMR7FWfAvC7FqRDH0Bunrv6ibOK5KkNf7+ChtyaAeD94oi/F0Z3Zy3+jtCyMnErvYxnMnIYAhC9Q9Pj9hgqKoiCEoHyoxdRv1vb1pSRJ0o1u+Idltv1xBz2Ppqkfd694riBtTLUjLlqiTm5fgsweG68SUD/uUT/hykJVSZIkSZIk6Yq6jnoMvOsSajCz1aCqI+Pl0pqXu82heqTNzKsNNn+9QPVwm+JrMt9WklbSkmeZZnbGE5zak/MXrxIDBgOfySIi+OiX36Rve3FZNvJqddybRPiCk98pLftECunqdNzjkL/DAQHtyYCZV+q0Rq98xmJkVRRVwStv3O4F1cNtCvuTJLeaNE5ceQHXnQw49t+nyd4Sd3ro/miK+pH2khNyVRO2fLMDzVbjv+2JgPakj91tYHfFxT5CCNyZgMp7LRqn/Av+nlQTCnc65G5x6H00w7Hj05d8rtveLaMIOHhbnmKHtbQNlSRpWfV9MkNqq4UQgsgTTL/aoPSGPBG/pAjZDXwNO1v8Unm/veCE0agNwz+KG5VYXTqKFp+HrKUF2YuLnmdebTLzahNU2PqtArnbHEpvt+U5rbQoQkQIsfHeKxvxZ5Kk9Wzs59W5/2/6cu6Cr2X3JZh5tbEsx9qJ52qopkJr1J9XqdFxb9yQbPrVxrU/0XVWO+JSO+KimgoDn83S80ia0Z9X8ZcjzhFB6EVosxPUvEqIEAJFVUjvsph6sX7VE0UVQ6Fwh4M77VO/TDOqa9Ea9jHzOmNPVy+4XbMVUtstuh88Nzl3+nd1Ev0mdq+OZp7r0jrzemNdFqYCEMWJ/NmbExhZTSaISZJ0/anQdd6+1e4xaHoeIhQomoKiK3GRnq5g98cFqYlyiJNSyI4FJIshloAwAWES2pvA67r2zbK6dIa+kgdARIJ3Q4FYoJZS/as0QhGI/R7s9ai81yK/36F6uE3YiuNc7+3KsvfDCnooGBxv0TfZpnKPQ2F/konnawS1kObw/DWuwpmAniMezYzK0QcSZCZC0jtsxn5ZvWD/bA8LOn4rCJPgdoDbDQ3bwHcUEJA/EdD7hk/0rQIjT1ZwZxbetysq9HwsjTHcJtBVtDDiyM1J9ECQ21Qn+7yCGihojfiFqBx1qZ/ysDq0ucc48IksTiVkx8EGgaFQfblOc8RH+AI9pWKkNfS0hqLEExilSxMRhI2IcJmarEg3nvTs1NORn5TRbBWzoBPUw7i4T1UImxGhJ9AsBc1W0ez43ygSlN8JaZzy4sY/WY2uj6bQU/FjCF/Exaz1CBEKjLRG14Mp8rc7tCZ8gvPet1pCnW3kB2ZeR3fic2avElI9vHanAXuliJf3drFlvIEiBH3FFtvH6mTaPseG0lSyck3xutFg8PM5tISKX4tAgGbFzRW8ckhQC3GLAZV3W2u+KZS0PDZqbHk5yddHWstEABPP1+n7eIauB1KyqcANrPx2i/I7LZwBg9Q2i8wem8IdDkEjvh5W9HhIROlgc/maKEqSJEmSJEnrXmoqYOBdl6mtBumpkO6jPl6XQWvs+jS9k6TloNkKRkaleMCj57EMmqNSelvmwy+GjAUuTL4mV2dJxanOVhO716A16s8rKEz06wx8NgsRPPLN1+jory3rhl6NyIvQEipmQaMlE/lXXfcjaTK7LYJGxKnvFJfURSN/u4MQgso7G/dAUXyjGRenbrYWVZx6VuXdNl4xYOBzOXofzzD60+qVv+k82VscNFuldrSNkdOwe3QSvUY8faYaUX2/Rent1iWTiiMPpl9ugqqQ3+dgZFX8ysJ3ttsRpZwpC1MlaZUlt5okt5i0J33O/KgMG7fuX7pBhLOT1TXryhNA1t3k2wjK77bovDeF1aHRlOe0kiRJ0ho0/myNwS/k5hKfC7c7aLbC5K+vPfnpksfu2brE5qi/pGvo1RZ5gonna/R/MsvQV/KMP1PFr4d4xfCqC0jhbHGjTfVQi9LBJpEnSPQZVN5rxY+rQKLPwMxpRL6gccpb1CS3jrsc8rc5iEgw+lRlrpBHNRQS/QaNM94Vi5CNjMqWb3YAMPLTCpldFnafgQjj2J2e0uYVgegplU1fzs+9p86qHXHnJuOhcE2v2VrSHInfw+ltlixOlSTpunMGTcysFjc2MFX6Pp654vd0H/fpPh4fA4QQEIExO0kt9WFcTNrtThI2I/xqXMTiTga0xrx5hSyHL3psI6vR+3gGZ9Ag8kU8HVBV2PT/np6bDtqa8DFzGpoVHxcUoaAcsOCAReYmgaorZPbYlA7GxwjzfzvK6Q6d7odT2N0GWiQo7E8C0PNwXJgrIsHJbxcvmPY+9FoLNAWnGpH61AkGvpqj6Qnqx9zzNxnrr9qwxeTM//fc97u/2DL39WqPgd6K2Pxym74/zFMZ0ml2qTR6VCIl/hlUX5AZCUkf8EgfbeHPhsyNjoBGt8bmXAO6FKIpDfoDeM8k6yfI3+5csC13/iJuxtUc9hh7pkrUPndw9EohIBNGJGmlZPbYNM545xW/u5e9/6X4lZDRpyqXvY+Z18jdGjc3sbsN9KQKIj6/FlFc/F59v4VbDPGKwez+YG3r+r8f4mzbodHNJr0fS9NZcuksuRy6Jc1kX3xM0LX5FyB+oM27LWnPv050/fmpES/PbF3U9r1T7b/g81pz/lpnJjm/ALiQnL+2nTXnN8Js+PMf787C6Xm3PZF9e95t48H8CbN/ETw4f1s+++EFn+f3O3Tc5YASN36UBUySJEkbQ/2oS/hARGqLydRvVntrpFUloDnsx+enL9Sxew1SW00SvQaRJ9BslcEv5Jh6sU7lvbXbyESSJEmSJElaOenJkMBUGLnVYvNrbZRI0BqX6wzS2uU0A7ofSYOAoB6R3m4x/mwVb2btx8QlaaNZUnFqz4MpRAgjP5u/INb1kXhB/9Q/Fen431e/MBXgzPfKbP5mgYHPZJl5pXEueU1acf2fyZDcZOEWA05/t7Tk6SnJIZPIF3iljVuQkZjtQu9Xl34wbI0GuNMBzqBJZq9NdQlBQ2V2vbb0Vmsu6VfPqATVpb3WZye5ac6li1OFAum6jxpERLq64H0kSbq+9KRK78cyiBDOPFmWhanSuqeaMPC5HEIIakevLuFrzZvNKzWyGpyRwR5pEYSAaINU6zwlkfkAAQAASURBVJxPbMCfSZLWMdVSSA6Z5G9ziHyBOxOgO+bc18P29fubVU0Y/FI8Wa12dP0lzXgzIaf+ociWb3XQ/6k4idgrBUz8unbVXepnXm2w6Ut5Bj6fY/yXVSrvtqi8G8fB7G6dnkfTmHkdEcUTVduTPuPP1vArl78g0FMafi0unB34bI6gFdEa9UhvtwE4/f1SXEypxsVO7TF/3gTTs4WpAAOfyRL5gvI7LVBAMxXcyYDSOxfG7LofTiNCwfH/OYPVqaPqcSLVBQW1G+iwIAIovdkkc5NN8Y3mogqHJUmSrpaRiQPCkSsI6gFW4dwykVcJ4qneCoCC3a3jlYN44qai0DztXdA4Qk+rpHfZJDeZGGkVI6thFjRSW88V2ESBYOQnZdrjFx3jFOh+IEXmJpvIO1eUGjRC9KQ2V5gKMPnrGl4pREsoFO5Kktpios9ODA/qIa0Rn/pFzSrcmYAzPyiTuyVBxz1JVEOhftIltSXeNkVVGPq9PMf/cobCnQ75OxwUTaFx2qXybpvUdgu70+DMD0vzXsPyW00SvTqbvpqn9EaT8rvz156ChMrwRyy63/HJngnp/DAgNKDWp+GlVLoO+ZxtsTWx1yBzxkd3YfMLLqN3GLAfSApIzr5ud3ic+Nc19JRK5Al6HkvjDJhU3m9RP+HRPONtqGOjtDHoSRUtoaKaSvxhzP8X5cJmcyIStMdn/6bX2Xvar4QkBgwUDcR1jrt7pZDJ5zduIWHjlMex/zHD5N/u5v4Xi2w71pgrTpWWiQodd8fX8xPP1micWj9Nn6TrbKPGlpeTjFNL60DQiKexS9IcAe0xn/b5E68U6PtEhs77UzROewS1jZuTJ0mSJEmSJM3nDJm0fEFknIvRNnMqPUcEyZmQVk4lOxHE8U7ZX1lag5INn3sPTiM6dMZ/VUOdHW7TGpU5tosmY4ELk/G/q7Kk4lTVUJl8oQYLHmDiX8DZyVVrQdCIOP1PRQa/kKfzvhTJrRbDPyiv9mZtfFpcTJro1bE6DOxeA1VXaI56jDx5+U6/C1GtuOBxoy+Kdd2fiqfDvnd102FHflpmyzc66H4gRcd+h9oxl8ZpDxEIRASIeFGfSCBEvM9M9Brkb03EU1LP6xC/1MJUgNpxl457kmT3JGiPLVygfnRbip3H6jz04hRv7ctRKsgJqpK0kjJ7bTrvTaJoxJ3X5QWjtI5ZXToddzs4gyYoUP2gfdXFHGtd6c0WhbuSdNyVpPLu+ivAkSRJkjam7odScwWKAO1Jn+aoh9MfF6h6M9fnuOwMGfR9IouiQfWwS+3w+mxOIUKoHGrRcVc8xc3M6wx8Nsfxv56+qoWdoBYx/GSZvk9k2PSVPDOvNCi/08LMawx8PjdboFOiPRGQ6Dfo/1SWLd8oEHoRjRMe1Q/bcYD+ovhq5b0W6e05IC6grZ9wSfSZhO0IzVaxu3TcyYCeh9Nkdts0TrmM/qwKxMUI2b3n3iNTL9WpH3OJAkHkXjqQ6wyZJDeZjP6sQtiMaJ7e2PGgs0pvt8juS5C92ZYN9iRJuq7srnhZaPrlOvXjl9/HDnw+i6Io8UTSBXbdQS2idKBJ6cCFMW2zQ8PuNbA7dTJ7bPo/nY2LWhWwCjqqpaDMFqRFYTytpXHaJTlkzRWdirNxbF+gOypeKSRsCWZea1B+q0nki9kp3JdZHBRQfqdF/YRL1wMpUlssokDQOOGiGMpcI4fcrQlUXSHyIkafqoICm7+ep3HKnV9US3ysigIwsypdH03RGvMXnI8YOAqj95ogBFZVkB4OSQ+H5E7HVWvNgsqpj1pEpkJpq86up1qoEfS+48MeBZwLf7bIF/i1kNwtCczZomKvHN4wx0pp7VJ00JMaVoeG1WlgdenYnTpaYn6TUhEKIl8QefG/F+9bFB3ytzr41ZDWuE9rzKd2uB2vc61xxTeabN6ZJ7PHlpOnlomX0KlkdXLljRn3XU2prRaKohDUww2/Bi9JknQjChohZkEWp0qXN/CZLM6gSehGaKZKsNRJE5IkSZIkSdK6leg3GPh0Fu2ox/hN53L5tdlG1EJVqPbq9B/ysLuNqyr2Uy2F7E02yS0WihrXGLWnAsrvtC6bLyBJi7XzRA3XVBn7xxLCFxg5jSgQcVP3X1Rxr1PekiRJC1tScWrkRZdM+pt8sc7g53P0PJpZlg1bLn454sRfz9D/6QzOJpPBL+YY/mF5tTdrQ9KzKv1PZDFz2lxiiRCCsBkx9VKD6qGrSxh1BuPFsfqJ9Zlwuhj5Ox3MvE71SJvoKn/MqA3H/2aGngfTpLZb5G91yN/qXPH7hBBMPFcjal5bkDGoRITNiPQui6ARMvPq/CLb05tTBLrCng9r7H+zxGifzfs35a7peSVJWpyBz2dx+k1EKJh6sU5TTl+U1hHVUem82yHRZ6DZ8bQFRVXi5gqVkMkX6rRGNvZ7uvxOk8IdSQa/mGX4xxU59Vi6PCFYd+NFFkN2pJKkVWf3GST6DBSVuSLUua91G0w8V72qplRL0f9EFgSM/aJK48T6TqAtvtEkcgVdH00BoBoKiV6D5vDVndf45ZAz3yvRcW+Sro/Gk+haIx6qrjD9cn2ukUdr1OfE38xgd+vYPQbpnRaZ3TmCRkj53Tblt5tzk55aoz4n/75I72Np7B6DmX8oAfH1fteDKbofTMcFMvk4xJjcbNFxXxIzo5HcYhL5guoHbZojXjzlfhG78uRmExGJGy5BOmxG1A63yd3mUDnUltNTJUm6blRztgP2RdMKtYSCaqqISBC2oniq8xtN+j+dpesjSaZebCz6ObyZEG8mpDr7eWaXTaLPAOICy9a4j9WhE7mC8tstGqdc/GqEYijYXTp6SkXVFawundRWi4HP5Wic9ii/02LgM/HUcXcmYOJXtUUtLAf1iLGnq+gpFRGIeRPej//lDNlbbLofSGN161h5HTOnM/7L+U0YzYI211yiPeFTPdzGnb7CNigKblbBzapM3mxiViNypwOaHRrR7O8jtBQ++HyCLb9u45QF4jtJxKMt2HouAKAaCgOfz2IWdGoftCm91cS/ikaTkrQUig56SkNPqugpFT2pYZz3/7PTUc/y6yHuVED53RbuVEDQiIj8aK4YdTETRa1uncxum9zeBJldNj0Ppwka8aTQxhqeEuxXQpojPs4mUxanLpPekRaZaoBQrnxfafEKdzsU9jvxddfJjbv+Ll2ljRpbXk4yTi2tA14lJDmkoDkq4TXmAkkbk55UcQZNpl6qU363haxLlSRJkiRJunGopkLvx9IAKBedB/pOHOtVhECcXUe6ysvg/B0OhdvjYVuRG6E5KvnbHDJ7bE59pyinsUrXzHLjBQczp+FOBfjlkNP/VKLv8Qy9n8hw+p/k++yKZCxwYTL+d1WWVJzqli7919keCwjqEckhk2bVpDieodBbxcmsjUSy0aeq9D2RIbXFovOjSaaXkEghXVl6t0XPw2lQoD3uUz3q0jzjXdUEzotZHXE3P3dyYxad6BmVjjsdglbIxLMLTxxdtAAmnqsx8VwNs0PDGYinySkKoAKKEv9/9ja/FlI97C5bkPHUPxXZ/LUChf1JMrttRp+uzrvP6ECS6Q6Luw6WGBhrE2gVjuzKLs8GSJJ0Sc3T8RSrygdtOXlRWjeyt9jk9jkYmTjoIQJB6Aq8Skh7wqf0ZuuGWVCdeaWJ1WXgDBhs+6MOTn+/RFC5MX52SZIkafVl9tjkbk1gFXTCdkQUCBRjfnZw14Pp+Brzap/nZgszpzPzamMuQNx5v0NmTwIRgaqDoirUT7rrvjAVgCie5lY75jL0lRx6UsOvXdvxXYQw/VKDxkmPro+kSG2Lu5z2PZ7h5N+fC7xHnqA57NMc9ikeaGJ162R323Tc5ZDaajL6VGWucMevhKj2bMGBwlxceuqFOvXjLpldNkEjQlFBz2iktpqETRE3KjvcRviLC9oqelzcmtpizhXS3miKB5qktlv0fjzD+DNVWaAqSdJ1IcJ43xK58TEn0W/Q/WBqrtEAxNNMiwealN5oUn6vRX5fXDjvlZbeKWny+TqTz9cXt22+mNd9e/I3ddI7LXoeSZMciptjVN5vYXcZ9D6e5tR3SovelqB+6eNs5b02uX0OPQ+l0RyV2rH2goWvXjmkccYjucnE7jEwshrOoEnzPY9WQaXWo4F6+SoqL6MyeYs573ahKZz4WIL8UZ/+t3yUXzlEX2pAIYI29H0qg5HROPP9Et6M7FolXR96Ok5SdwZNnH5j3vTToBUR1EOCRkRrwieoRwSNkKAe4ZUCwta1n7+4kwF1wyW3N0FzNI5r60mN/k+fK06ferF+Vd36ryfVUDBzGq2xtbVd65GzyaDz3hTWoRqRAh/uSa/2Jm0ozqAJAo7+92lZiCJJkrRBebP5fXaXfsM1gJMWR9Hj61Z3OpDnA5IkSZIkSRvYyPf3zrstWfPZ/nK8tqIgUJVzMd1Gt4qbVOg47TNyq0VgQv//miR89NJ5IL3W/FoBf8KgdVDBPwGD/3uFA8ogAEZNMPS0T/a/9lLZqc3dXzw2ctU/41mVp3Zc8T5+qF72652f+/Cat0NamqN/e8cV77PjGwcXvL3ao9PzSJqhr+Tjxjtvt/ArIWO/rDL01TzdD6WZeK4may8laYUsqTjVL19+sXv82SqDX8jx1P/vAUBB1UK++L/+GvXy+/EVUznUIrnZJNFjrPambChmXqXnkTSRLxj+UXnZkyL8evx4Rk7HK228oGnvYxlQYOQnyztdJu5O31rWx7ySqA0n/qZI50eS5G5JsOnLOapjLcb7Ehdum63z0r0dPPzCFEPDLVmcKkkroPRmi/wdDqltJlMvrPbWSNI5ekal854kdq+BZilzk1sUNS4+EaGgOeIz80oDd+rGLFI4a/QnFbK32HR9NMWWrxcY++X6nxgnSZIkrW1Wt05uX4LMTpv6CZep385PANeTKnpaJXIFQeMqslhU6P9UhkSvgWrEAaTcvgRhK0KzVBRNIXQjiARhG1AE7fH1n+yd2m6R2WVhdRnojooIBVMv1fEryxNTaY36TP62xqYv5gHQkxpdH00x9WJ9wc6Q7mTA5GSdyvtt+j+VYfBLeerHXLxyQP2YGycpCTEvaN8a8Zdtgv3AZ3Mkeg1aYz5jv5y/gHUjCBoR47+s0vvxDFv/sIMoEIz/srrmCi8kSVrfigeaBI2IvieyhO0IIxUv/lfejxdsI1+Qv82h4y6H8ltNWsM+2T2CzV8vUDvmUn6rSXtyBa/PBdQ+dGmN+igq8aRQBTrvT5K/1aHvkxnGfr4Mxw0BU7+t03lfMi58e+kSDU4jGP1pBT2tYmY17F6DRL9B4Y02elIjaEXUjrSpftDGKy79uG516vR/NX9us/4hwfgzNXoeSWN1wNjPq2u2MFU1FbSESlAPFzUdU1obVFMh0W/gbIoLUs2shogE7cmA8nst/HKI34gLUsNmtGK/22i2wYndZXD6+yWEL+i4J0lqq4XVoTP4+RwAbjFg/JfVqyqeX1Yq9DyaRrMUZl6TDZKvxuSP9gBgNgN2Ph+vmRY7Dd7dnwZVRZutmtC1+b/rzfn5jQo6rPm/hzfGB+fddrqYn3fbTDN5xe2NovmNCGpNe95tLW9+XsK0Mv/x8878Nd0+c/7acTl05t32Ybtv3m1Vz5p3W2b238gXceMhWYgiSZK0YblTs9NjOmVxqrQwvxYSuhHOJlPGHiVJkiRJkm4w+RkfAQSGgnFxs0FFoVnQsGoRQlcYvdVi6HXAgKgnBFsgEgIcAYnZGNNFIleh+mQHCAUlESICBWZDZH5aodmjkD0SXlCcKklXoz0RcOofS/Q/kSGzx6b8dhxj9SshzWGPzC6b6gdtec0jSStkScWpZztpX0p7PGDkx2Xu/t98mpUElak0xdEsnYPLW3R3NVQT+j6RRUQw8lR5tTdnQ7G6DRRFQVHBSGnLnhjRPO0jhCB/u7PhCjAUHeweHXc6WLMJJVdj+qUG5bdabP5GgT0fVucVp5puwO4Pa+ihoJpe0m5IkqRr0J4McAYNjKyKLycuSmtA14MpsjfHCTuRFxe0iBBEJBAR1I7ISb8Xq7zbxp0KGPhcjr7HM5z+npyWIi0gikDZgPt5sQF/Jkla43ofS2PmdOon3EsWfQSNaNFFqYo6/0/ZzGskN8VJs5X3WzROuhTuTKKnVLxKSOVQa0OdDyga9H0iQ3KzhV8L4+YcgF+PMLMavY9n0B0VzVHxigFTv61fXdEvcZyuerhNZrdN8UCDwp1JwrZg5pVLJ8u70wFnflim59E06Z0WRtpBPCxQNIXm8PWLyeT2JUj0Ggw/Wb7hFwaawz6n/rFE90MpUlssuh5IcfofFz8VUJIk6Ur8aoizyUTVFdSUxsxrDTI32WRvujCGW3yziQihccrj2F9Ok9lpU7jTYdOX88y81qB4oLmi233+1NOBz2TjqW9AaqtFeodF7ejVT28/q3nG4/SZxR3vglpEUItoDp87bpkdGpldNumdNvlbHeonXEoH5xfzWh06VqeG5miEzRC/FuFXw9m4yIWJINMvN+j6aIqgHjL6dJWwuXaui5JDJolBAzOvYxU09OS5RJLT3y3FzS2kNUnR4/Ov5GYLu1tHURW8SkDzjMf0yx6tUX/VJ7i7kwHH/+cMg5/L0vtYPCX57DWJ3aPT82h8rWIVdDZ/vcDM67P7pVXa7PytCVLbLEZ/ViGorZ2/0/XoltdqCODYXofRTfMLMaVrZ3frq/43Lq1hGzW2vJxknFpaB/xafC6u2QtkiksSQASVQ23ytyYQkaB5xouvXeUu7rKcTQYDn8nhlQJaEz5hSxA2I2pH24QXF3ZIkiRJkiStUduO1GkmNcb7bbYdaSCUNiN3WAhNgUiQKIe0snG8vzyoM6BVUd820D+8sAmbMOMC1aKbQE1EKE6EogrCsg6RQurRMpGrEtU0TC3CdxT0FlglgZ+R1yrSMhGgaMq8IYxGJn4Py7WqK5CxwIXJ+N9VWVJV2MxrLXTl8lNHW6MBB/8vm56HUqAK/ubr22mPr/4f9eCX8iha3FU6WiCn8cmJ25b0eB/ven/R953wM1e+06znizuXtB3HSx2Lvu9CHVcvZbKZXvR9rcMn0ew6nfck6Xsiw8iPy7RGl+93HtQjmmc8kkMWW75VoPxui+r7LaKLckQGvvzekh73zSXc9xPHziz6vv/H9n2Lvm/fJzMoisL0ZRJD16ugEdE46ZLabnHz/+MwaJDeZpHoM9CceBqOX4uY/h9TbPbGVnlrJenGUDzQwBnMMfS1AvVjLqltJq2xONGoPRVQfmtlpy1LN7b87QmyN9v4tYjRn5ZlwfQStCcCznyvyNDXCgx+Psfxv56RC4WSJEnSdeEVQ8ycTmqrxfY/7aB2zKX4elyIEnkCu1fHzOsE9ZD0LhtFgbFfVkkOmaS22zROuii6gpFSMQvx44w/W6V25FzxiDcT4pUDzJxOZo+NM2ji10NGflzG7jdpLrJAZL3o+2SW5JAZT6pLa0SBoPZhG9VQsLp1wrbAr4a4MwHZm2ysL+Y4+e3iVT9f/aRLZrdN9pa44MhIq1f8nqAWMfJk3GjOyKhx8Y8C1cPXp0jYzGt03pek9Fbzhi9MPStsRpTebJLaYmEVdPo+kaF4sIlfC4naMslJkqRro5oKRvZcEWF6l82Z75VQDQXVVtHMOCHg/KJLovg4UD3cpuNuh8JdDo1T3qot6DZOeyi6gl8Jyey2yeyxl6U49Vp5MyHTLzeY/l2D9A6Lwl1JNn05j1cJqR9rE/mQu8WeK+IM2xGafe7YLMJzXcbbUz5mTqd5xiN/u0NrzF9ThanZm226Hzq3jlQ80CB3u4OqKfj1kLC9drZVupAzaND9UBrNUWmc8ph8oU5z2FuTBZVhM8IthqS3W2z7kw7OfK+EX43ibujfiZt3dD+cIntTgo67ktjdBqNPV1Y8Tmb36BTuStKe9OVksmWgRhBqMDGUWLVi441O1RX8qmx4KEmStJFZhTgdUPjyYCpd2syrDVRDIXdLgo474/PZM98vr/ZmrWlWV5w3a+bjtZGzzLzG5G/qq7VZkiRJkiRJS6IKsFshI0MOHU2XwpkApxTiplXsaoTZFJzZP1svpChEe32ivT6EQEtBaSvQVFBmVGipOJkWoqUSNTWIwNjkomUD6s/m555ziHPrSYENE/fKwVbS8jnbmBeFuZjy1It1+p/IMPiFHKe/W5KxZklaAcu6Z8/eYlPY76A7GpEfMfKTypooTM3cZGHldaoftmmclIuC10P5rRa1Iy5bv1Wg/1M5jv/1NGIZf/WjT1XpeihFdo9N1/0pOu9LEtQiKodalN5cf8VU2Vts8rc5GGmN9pRPa3hjJl8GjRBFUej/VBYAIQSRJ2iN+Ey/0sCdWv39gyTdSNrjATOvN+m8O0l6h4WiKSSHLIQQpHfYdN6XRATgFgMmf13FK629hCRpfUhuNijcncTM6fEU1DBOsBSBIAoEqqlipFXCdsSp7xRlYeVV8EoRky/W6X4gxZbfLzD8o/JVT1WTNiAh2JARFbEBfyZJWuPGflFFT6lYnTq9j2fI3pSYN1XtYjv+edfc/9PbLUQkUNRzXS+DBYoqTn2nRGq7RfeDKXRHRU+pbP563IzLq4ac+rurL85cUxQwC3EximIoTDxfo37MveTEmuZpj/5PZ7H7DNpjVxc3aJzwOPPDEs6AScfdSUJ3aftSvxpROXR9J9dmdtuEntiQjbuuRWqrde7/2yxS2+LPvXJA9UMXd8rHnQnXVKGSJEnrQ9gSnPluiYHPZtGTGmZWw8hotCcCqF55n+IW45jv0FfzjP+qSu3DlS8KLb/dovx2vC6gWgrKlXsvrCwBtSMutaMuiX6D9A6L7M0JVFOherhN7UOX9qSPCOOp6npKw8ioGGkNIaA96RM2IjZ9Oc/AZ7KErQirc5UTNRTovD9J/laH0ltN2uPnzk2awx5CgKopRL7g1D+U4iR4hblzOxQFvxLISTKrwMhp2F06ekrD7tFJbbFojniM/LSCX1n7xWnlt5ukt1tolkpmT4KZVy88Z5x8vk7kCfK3OSSHTDK7barvX9/z1/OZeY3+J7K4UwEjPymv2PNuZEok9xPXW+O0R3KzSWa3RfXw6jd3kNaYjRpbXk4yTi2tA10PphFCUHq7udqbIq1lAqZ+W8fq1DHzUHxDvl+upPRGk+oHbZwBg/ROG2eTgaIoeOvg2kqSJEmSJOmsRlLD9CIiFU7fbVHt1UhPhGi+oN6pUdxq0Mpr879RA1ICkYqvi8VQfA7kWPObdERthfa7SaKajpoNaJgGrS6FdqdKq0NBGApKKMgejWj2KsgIlXTVFEj0GRjpeL3Tr4RojoqZ02ic9kjvsDHSKv4i1kBvSDIWuDAZ/7sqy7Ka3XmfQ3ZvAtVQiQJB+VCLqRfrcYeENaDjniRRIJj4VW21N2VDC5sR47+q0fvxNINfzHHmu+Vlffyp39SZ+k2d5FaT7M0JEn0GnfelyNyUYPhH5XWTjNfzWJrMLhsRCqoftjf0+3L65SbtyRDVjD+vn3AXnFwsSdLKKR1skttrozsaQgiqH7SZfL5O5iaL5BYLM6thd+sM/V6B2ocuE89t3H2UdH3k9yfouDsJgrnu64quoGgKqqmgzxanNE57TPyqKgtTr0H1vTZmViO3L8GWPyhQOzr7NytfU0mSJGkZBfWIoO5x7C+msXsMVC0+ttvdOvWTHlE7Yss3Oy74ntGfVTByGpqlEnkRnfelACi/c+nJmPVjLvVjLrl9CTrvT56bGnaVRZlrkogLfvO3Jii93cKdPNewKdFv0PuxNH4tovJ+i9qHLo3THu1Jn4FPZxl9ukJr5Opei/Z4QHs8oHhgbSYXpbZb1I+78hzmIjOvNHCnA4ysRuW9FkZGQ09pJLeYFG5PoJpJAIJWhDcT4M4EuFMB9VOenIohSdIVeaWQk39fxOrQ8UrhJRslAGiOGhevni1GnD1GB62InkfSGBmN0sEmYpXWg/SUunabIApojfi0Rnwmn6+jaMx7nUQIfiWcLRK88Fg/8tMKm76cw8yrtCdX95wo0W+Qv9UBIH+bw8lDxbnJr86gGU9aB1RDYcefdS74GCISFN9oUnx9bZ6TrFdmXsPMa2gJ9dyHraInFMy8jpaIq7fDdoRXChl/rkptHRWjtScCjvy3KTrvS5K7NUHl/da8Ka/TLzfwaxHZm+wVLbhN77LofjCNXw0ZfbqyavvBjaJaTZCvtDE8wWhngmo1gabPv0jwtPm3jSmZebeV2/MbK4XR/G4GQijzbtuen5532+7UxAWf//37d85//HD+Y4Xh/HQMVZ1/3B330vNu+6/lh+bdpsx/igX5/vwEwrOv0tgzVXb8WSfp3bYsTpUkSdqA7F49TsI95cn8HOmKNEcl0Wsw9kxVDvxYpLAZxQ2pjrioloKR1nCn12hcQpIkSZIk6SKGG5FshBzdlYoDTYpCecigPGQs6/OotiD3zUm8EzbekQTmqI49LahuBYGKVYnIHgkxmlArqowv67NLN5LkZhMzH8dg/WpIcrNJ7+MZFCUuuQwaIX5NJqNI0kq4puJU1YbNXyugJzVCN2L61QalNdZFK7nNRE9olN5ZW9u1UdWPubT32dg9y3uScr7GCY/GiTgg1vVgiuzNNlu/VeDMD8trNwlllqJDeoe1sSa/XEH9mFzUlKQ1JYIT/7MYnwGct8usvu9SfT/+e9VTKgOfzZLZbZPcYuJXQ0QEmqUgBPjlkIlfV4nkn7d0keS22YlcrXgiaiTXr6676ZcaVD906Xs8Q2anTWqrxfTv6lTelavNNzIRRQhl4wVVhNh4P5MkrSvRhYWi5yeqFN9skrslwdSL9XNTik5B9pYE3Q+kCBohp/6xRHTe1M6+JzI4gyaRLwhbESIUGJnZglY/YvK3NaqHNt4JpzsZMP7M/AYw2Ztt9KSGntRI9Brk9wVM/rbG6M8qbPpSnvRO66qLU9ey3L4ERlqjelieu1xMRPHUvbPCVgATAfVjLhOAnlaxOvS5j+QWi/xtDpEvqJ9wqR5ux8Xgsk5VkqRLEEFc9HUpuX0JMjfZWIV4GenUPxXxZkLqR12Oj87gbIqnhBT2O2R2W4w/W6M9vrLx+US/gdWhz01RXUmqpZC9ycbIaESeoDXm0xrzL1vou9TCNb8SMvqzCh13JamvcpJw4Y64MFVEAkVV2PKNwqK+zy0GjD9TBRE3ku24K0nlvZacoHqtVMjuscnenJibqitCQdiOCFoRYUvg1yKaoy3a4z7tiYBonTevmHm9QeYmm8LtDpMvzO/EX3m3ReXdldkXqKZC10dTZHbbVD5oMfXbOmJtL0+uG31TLRTg8Obsam/KhmRkVTruSZHcHDcUqB2R12HSfBs1trycZJxaWut6HokbHkz8urrKWyKtB4me+HriUk0lpcuLXIHryosBSZIkSZLWD6cRn7to4fWPFysqWNvbWNvbHJrMkD0WUTgUkj0eIVSoD6p4vsCekdfZ0pVpsw05rU6d1qg/1yDG7o6vaYafLKMaCv2fytI44zH+yypRIFA0ReZMXIaMBS5Mxv+uzlUXp9p9OgOfyaFoUHyjwcyra7P4M7c3gRCC6Zcbq70pNwyvFJLoNePx7de5S/DUC3Xqx9oMfDbHpi/mOP39Et7M2mxNnNlt0Xl/ChSYflFOIpQkaZVdJj4e1CNOfadE4W6H7M0JzIKOQpzghKJg5XU0O8vwjyortrnS2qfa0PexDCJAFqauMG864NTfF0ntsOh+KEXXR1NEvlhXUzAkSZKk9W3mdw1mfndh3MXIaXQ/EE9M9WvRXGGqasLgF/NYBR2/FqKoYGQ0FAVCN6L0dpPpl268GE57KiC949znqqUw8Nkcp79bojnskdxqYeZbeKW1GfO4GnavTtdHU7jTwQVTZKXFCWoRQc27oFBcT6qkd1lkdtlkduXw6yG1D12qH7bxyxvnvSNJ0vVnZFS6Ppq64LagGi/C5W5N0PWRFEIIRAiKqmCkdQY+l2P4R+Xruk9XbQU9oWJ16aS2WqS2WrTGfbxiSHKLiZ7ScKf9614ka3ZoDH42h6IreKUALaGSv91BRILq4XZcqLZMu932eMDIT649BmfmNbxKeFWTyo2cNjcZtXrEJbvbnvuaWwzmCpjPak/4NEd8CvsdGqc8RASF/Q7OJpP2lE/YllkA10JzVLb9UQcAtWMuM681aI37FzSC2YhEAH4tXNUcEkWLG/AU7nBQVBh/tnpBMxHp2tle/Dt27Wvqry0toFBqs/n348YCYSti5vXGXMNSSZIkaeNQbTCyGs0zcmqqtDhGNh5IEjZl4q0kSZIkSdKNoJI3cC2VVG2F1+c1hcoujcoOFaMBQQKErpAcjuh7KUBLKMvS1NJsRHSe8UhPB9j1CDUU+JaKm1JpJ1WaCY12UqOW1zHbER1jHpmZgFZKZabPRDUVeh/PELUj2lMB9RMugZy6uSp6pltsGa1Rcwx6fy9/wVpU/aTL2NNxQ6bKoTaZmxIMfDaLoipAnDdxtpmsiDb22okkrSVLX9lRoeMuh/wdDkQw9nSVxqm1W31gdelxAEUeF1bM+Tv2swkr11NrNGD4x2UGP5dj05fznP6nIn557fzC8/sT5G9z0CwVEQqKbzRpnJId5yRJWvuKrzUpvja/+cSOf9GJ1SGTQ6QL9X48CyqMPlWRhamrpH7UpX7CZfufdNLzcBo9qVJ6Y+Wnx0iSJEk3FkWDvk9m466EQmB16ugpDT2lzt0nqIds/cMCqqmg6HHMoHq4zcRzsnHTWeW3WjTPeGz+vThZ+NQ/ltjyzQKZXTYzrzfJ3pyg/9NZTn67uMpbunzcmRB3JsDq1Om4N8nMqw3ZsfIaBY2I0sEWpYMtrG6dzG6b7M3xVMPmsMfkb2r4KxCrkyRp/fPrEc1hD2fQxC0GTP6mNjd1MX9bAoDGKQ8zr6MnVcrvNCnckcTu1K9bcWrmJpueh9Pzbk/0Ggx9NQ/EjdUULS4YHX26il+5PoX5m76QQzVVxp+p0hrzCRoReloltdWi4+4kWkJl7OfVNXNcG/xijkSvgVeOJ7hHwcIbFrUjwrOTX887XKS2WQCM/bJK/ZiLXwnpvCcJgFXQGflJmdaYj6IrdN6bJHtzArvHAKBx0mXTl3JEvqD4eoPye+0187qsR4l+g8HP5+Y+H//ljTUNSwSgzl5PrCRFg/x+h/y+BIqmUHm/TfGNpkzgvw40mSh03ew+Ee8vTv3D2lpHlyRJkpZX/lYHRVEovbk2B0xIa0/YFqimAioyt1KSJEmSJGkDGvjyexd8nrs1gfWRFO3/a4KBsWGO/u0dV3yMM6c6L/t1I3PlBmjJxEUJpbMpjZnQp48qqX/sJMhe/jHaobHwFyJBYkLQ8XKT/JRPqCuUO3VKm00iDQxXYDdD0lMhXU0P9bzz3tCAVpdKx3RA72kP/jT+Wc20R9By6H0kgZV12fTwKOnBuMn6Kffyr8fJVsflfxBgojV/vet84aOjV3yMa3X0b678u9/xhwev+3bs+IP5z2F16PR/JgsKpIMWramA+nEXqyNuXnt+7VpQjzj9TyU67nHI7onXMKdfrl/37ZYkab4lVZZs/kaeRMZGURWCVsSZ75fWfDcARVUQKiQGDVqjvgykXGd6SiW90yJohStSmHpWeyxg5KcVBj6TZeirBU79Y3FFn38h2VtsOu9LoeoKkR+t6QnDkiRJi9X3yQyKplB+R+7PpHM0R8UZMHBnAlojsgHDqgph5Mdl+j+dpfOeFPnbHKZ/V5dd8G80QrAhs33FBvyZJGkDSO+ySQ6ZJIdMwnZEa9yPizTqIa0xn/ZEQO62BOkd8YSt+kmX8ttNWqNyUubFvGJIa9Qj0R+/nooCqqGAAlEoCBqrFOdQ4um2QS1ELOMmCF9w5vslcvsSdNyTxMxrTDx7rvhJujbuZMDUZJ3pF+skt1p03pek9xMZzny3vNqbJknSehART+u8KDlV0WHi+Rqd96XQEiphO0IxoHBHEr8aXtdGpq1RH68UYOZ1vFJAezrAr4T41TD+txIStgWd9yfJ3+aQ3WtTO+KSvzVBot8g8gTNUZ/y261rK1pVAS0ujuv9eAYRCU7+fREzpxG2Iirvtcjf7tD9UIrJ51d/8btwl0Oi10BEAjOnzxXyXkn1cBu/EpLaZhF6EfXjLs0zHmZemytMBWiNxVNSEXFx8ORv6sy81kC1ZrtSizjRuXSwSelN2UDrWuT3O3Tc5QDQnvKZ+PWN1+jFKwWktlqkd1nUj7uIFbikcDaZdD2QwsxqQNxlPbXNJLnFjCckRwIRCqIw/hsQIYhg9jZfIAJBFAiiID7/jfyIyAfhx8Xg0dxHfPuNvo5dSxp0Vlw2j1Q5NZBZ7c3ZUCwvJHKFLEyVrmyjxpaXk4xTS2uY1aUjhJCxV2nRFA0URYlz2zy5f5MkSZIkSdrIVEuh4+4kpbebtMfWRo6nGsbnoNEl6k7n3b8tMCsCoyYwa2DUBNaMQPOgkYZj+5JM95tE2sJNDrucOkYDUmdCgoRCfZOK0JS4EXtJcE91mPRAg+yWGkFb4/SvBih+mKcxmZgrTpWuL2fQoPfjGfxayNjTVVRLoeuBFJndcc5RFAqC2oXrfGEzovhak8gTVA618cvXp3nthiRjgQuT8b+rsqTiVEVTcIsB5Xda1A6vjwT3yqEWuX0JBj+bQwgBEYTtCL8eUTrYpHFSjvZaLmZeZeDzeVBg5Kcr3625NeIz9vMKfU9k2fx7BaZerFH90IVVOL7k9iXo/EiSyBdMvdig/I5MupAkaf3reihFcotJa8Jn+neyOFU6J7nZQFEUim/I98Va0J4IOP6XM+TvdCjc4dDzcIbO+yLcmSBOkDubKBfFSXKV91p4M/KCXJIkSVo81VbI7rHJ3pzAyGj49ZCp39ZpnPYWTKYuv9UitdUk0Wtid+t4K50Mq8Lg57LYvfGKRtgWlN9amwUSQUsQtiMKdzooKpTebuL0G6iawuRvVq4AQU/GzceSmy3MgoZmqTROuYz+bHnjPSKE0pst3JmA3o9n2PTlHBO/qa+ZxbCNQERQP+ai2QrdD6bpeSzNzGuNNd9wUJKktaHzniRWp45qK5hZPW6acB4hBPWjLmPvVHGnguu6dulXQk79Q+mK96sebpO/zSF/a/wRuhGV99qohkJqm0n2ZpvmsE9rxKM54s9Of1/cNigaaLbKyE/KGEkNVOh9LMPWb83vgp29KUHjpHddC3avpOujKXL7ErQnfcZ/VaPrI0mSQ9aivjez2yZ0IzRLBWD4yTKRJ7C3XpghUjnUmvf6hS1B2DoXZ6i816bzvhTpHTZeKaByqE1LHusXTdGh7xNZnE0GxQNNigeaN2yeQPGNJkZWo/exDDwGXiVg4rka7fHlK76wOnWcIZNEj45Z0DHSGs1hj5nX6qS32ZgdOqoRr5mrRtwkGUVBUYCzH7MUZelTXsX5CQ+zOSFxboiI/43imJ6I4vO8uDj2bLxvtkg2ELMFshAFAhHEha/RbHGsmPv/ucLY0IfIjVZlTfWsHX94kECF8I86uOlEhdx/O4Nfj+h5KIVqKrTGfCqH2ohILCqWefzvbp93m6rNPwcOA23ebe9N9s67bbiWu+L3LcSy5+/v2k1z/rbp87dtoXfQtm++uajnPX/qRe9kA8uLqOdMjvzVnXO37/xnBxb1WJIkSdL6oRrqDXuuKF2d7N4E9ROuLEyVJEmSJEm6ATj9BqqhUH2/vdqbMkfMxlALL4DbC60hCDJgzoA5BeZk/K8wwUsG2NMCRYBQwE+Bn1Ko7lRp9iqcMjNwpZisouCnoHSTPu92t6AwuG987ibdDun/yDjFD/OY6YXXNIS48lNKi6eo0P+pLIqmMPHrGoNfyGFkNLxKwOjTFVoj/iWbnQeNiOmXZAGxJK2mJRWnnvzbIrqyyNYEa8T0Sw2qh9s4gyZ2l46R09CTGnaXTt8nM8y80liTyYjrigq9H8uQ2hYvpM283sSbXp0ufI1TPmO/qNL3eIaehzN0PyTwKyHFg825gmrVhp5HMiBg7NkqLPemqtB5f5LIFZz425kV6dwsSZJ0PZ0tcFN1Bb8WMvyj8mpvkrRGqZfoOCWtjtKBJqUDTTo/kiSzyybRa8zLaFIUhexNNqWDTTnhfSOJBCgbcBFZdqSSpFWX2m6R25fA6tJBxAVv489UaU9e+cJ3+IcV8nfG0562fqtA44xHe9y/7jEZ1YTNXy+gOSrtyYCwGeEMGnTelyJ/h8PJfygRNVe/SE9zVLZ+q4Ayez6l2XEhSOd9SdLb4w6QfnVlMsULdznk73AggsZpD3c6ILcvgXsdm1k0z/ic+X6ZnkfTDHw6y/CT5bjISVo2lUNtFFUhd1uCTV/Mcfp7ZcI18N6XJGntcjYZ5G935j6feqlO2Izm8pxFIHCngtWb7L2AzB6bnkfSc5+f/m4JrxIiZheqp38XT31PbbUo3Jmk8z4lnvw+6lN+t0VrdH5ygaLHhabpnRZWpx4Xoi1g+nd1Ku+3UU0FPamiWSrNkdUrTB38Qo5EX7yeZ3cbbPn9whW/p3bMxe7RMVIak7+pUT3cxshoDHwux+DnczTHPZSLAgu9H8tQOzq1YAK8osad2CuHWoStCGfQJL3TJr3TZuwXFerHZfPYKzHzGpu/Hv/uim82Kb5+Y8duglrEyJMVjKyG3a2T25dg0xfzBI0QdzqIP2YCvFKIoinoKTUuhFZAT6hocx/KRZ/HH7qjohoKoRfRHvOpH3NpDns0h+N9Q/3o0t+zqgmqqaJaCqqhoJoKqqHGt+sqiqmgaqAY8bQqVVdQdAVFjwtgFS3+OpqCoiooavy3tfLFscw1gRaRiD+PZotiz/57tkj27KTYUMwWx85OkfVnp8ieLYo9rzg28iD0Igjg9PdKbP56gb5Pxmu5KCACyOzRyN6UAMArB4z8rEJQWTvHoLVq34dFBiabRCoc2N252psjrQcbNba8nGScWlrDIjdauLuBJF2CCONmiZIkSZIkSdLG59fj8z49peGV1sYgi0qHzsldDj3NJsnDkH4vLjxVBEQ6eF1QvxmUANQyzNyu0uxTCZLAxes1teW/GLJzHk5Pk5M/38TM+3k0M6TuJRC+QljRiaoaeqePc1cNRRdELRVjRkOpK4i0IEoLjA81opTAuzeARZRh6TVB+tYEyc0mVkEnaEVUD7fxZs7lT3iVcEM2oxZRnNeQ25eg/4kszVGPqRfrNIc9xNp4y248Mha4MBn/uypLKk5dr7yZEG/mwmTHwt0OHXcmsXsMQBanLpVdChl83UVvC7R/3gkKeKWQ0Z9VVv1g1zjhcfS/T5PZaZHeZZPoM+h9NEP3g4KgEWGkVVDiRdltf9BBe9JHRPFirjsdUHqzSXQNORF2V5ygUn63KQtTJUla1zI3W3Tel0IzVUI3YuLFGtX318fkdGll1U+4dD8o6Lw/Se2IfI+sNdMvNS7ZFUpPqQx+MUf+Dgc9qTHx3MpNZJMkSZLWn55H06j6uYB+os+gdmTxXTVLB5q0x316H0uT3GyS2mKhmsp1aZCQ3GbS83A6nvCmxI20SgfOPU/hbofCfodtf1hg5KcVWsOrO70rd0tirjC1eLCJOx3Q93hmrjC19NbKxBhytybouCvJzIEGpYPxcyYGjLmpa9eTXwkZ+UmZwS/kGPpKnsnf1KgcWjtdW9c9AeV3WtSOthn6ap6ujyQZf0ae+0mSdAkq9Dyamfs0dCMqh1oLHou0hAKqQrgGilTPFmMCjP2iEk9FPY8Iofp+O+4KroLdreMMmCS3mAx+Pkf9pEvx9SZuMUBLqKS2mBT2O2i2Sv2kR+X9Ok6/QXqnTeSLuUmyo09XaJyMFxUiV6z6GsnAZ7Nzr8XkCzU6P5KaaygmhKD4ehOvEqJZCqEr0EyF1A6L9HYrjgH+ukb1g/gY7JVCTvztDDv/ZRd2QUc1VYpvNNESCiKE2ofteYWpiQGDjruSF/w+Ltb3iSz14y5jv1jeqewbSc/H0mR22nOfq4sb0nhD8CshfiWkftwlOWRidelYHTqZPTZ68sovVBQIwlY09+GXQ1pjPmErwp0OaI37sEx/xpEHkRdBfXkeb6lUk3PFsKaKaipxIexFH8psUey5AtnZ4lhdmSuGPf9fVOJrQ0WZLZA9b0LA7L/XUhx79nuFEAw/WaY9FmDkVDK7bKwuneQmi63f6KA14TP8g/K1v1AbVL7SZnCyST2h89Jt3diNiL3Hi7QsjeMD2dXePEmSJOk6aE8HJDdb2L36sk6XlzYurxTiDJqopiKnp0qSJEmSJG1wymyuh55SV3lLzqMojGxPYOabEMZTUvUq+J3g54DzNrUdrk7Z064vHWfyzU4a4w5ezUSoCoousLa00TIBrXeTVJ/umLu/YQuipEA9paD4s83JAW1GpfWEB9ZFTyAEVlHgjAiSIxFmFaJ7kjSHPcrvtDDyGp33JOfySSBubH7y74or8NOD1a1DCO7MylxjTr1Yp37SRTUUGqe8BZujSpK0Nt0QxakXs3t1Ou5MIoRg/Fm58L1kQcS259soEfgJBX/Yp/xOi/rRNVSMEkH1sEv1sAsq5O9wyN5koycU/FrExHNVkkMmuVsdnE3m3LclhyyytyQ4/U+lq04g8SrxwVezZDtCSZLWp+RWk+4HU+iORhQIpl9tUHrjxu7KL11e1I4LJgp3JNn6hwXO/LC86omY0uIE9YiTf1dk6Ct5MrttVFth7Gfy/FiSJEla2NRv63Hid6dOoseIJ2l9Nsfp75bmFX9cSmvE58TfxEHyrX9YIH+HQ2qrhV+PmH6phldannOIvsczKIpC0AiZ+HWN5pkLCyuLrzXxiiG9H0vT+1iaE/9zZQL3l1I80KD8TpOwNZuMbSj49RAjpTH+bHVFGoCYHRqd9yYpvdmk+Nq58//WqI9XDuh/Ikv1gzYTv75+BY0igOEflRn6Sp7UDksWp14HYUtQfrdFx11JVKtO5MrVHEmS5lN1BS2hUD8ZFw/qSZXs3gQiBFUHM6+T2mbNFWdGvuDYX0yv8lZDe9Ins9tm+pX6ladyRtAeD2iPBxQPNEltt+i8N8nQV/NzdxGRoHbMZebVxlyco/p+m/Fn42Phlm8WaE8Fc4Wpq021FDruSeIMxmsekS/ovD9FUA+ZerFBa9S7ZLOLyx5zo3gybOd9KQAK+x2CRsjJ75TiqbQKaInZqe/3J8nstGlP+Ew8XyNsRIRexKYv5uc9bOlNGW+8mNWlM/SVC18rvx4y9UKdxum18T5bS0QI9RMe9RPnXhstoWBk4wLVsC2wOvS5aVBhMyJsxRM7bxRzxbENWLaK26XQQbdUFONccey5CbLnCmPn/tXjabFBI6Rx0qU1em6n5ZejucZGyc0m/Z/KYnfpbP3DAqgK9eMuUy/WV+XHXGu6H0nT9/oY5XR8PHBaAR97ZRRVnBuml/BC5F5FkiRp46l+0Kaw36H3scyKJSpL69vMaw2Gvpqn59F03DzoxjlVliRJkiRJuqE4gwYDn80BYHWs0fIhDbze+GMt0e2Q/vsm5j4/5XZe8HX7lgZRQwWhoFgRp8NC/IUI8AAdlJpC4mcm9s9N/NsDTF2gNwTOuMAZidDbEJrQ7Fco7lOp/8n4Bes5k7+uoac0Ou9PktpiUX53ZQbzdT+UIntzAoAz3y/RnlyZAtXWyOo2l5ck6eqs0aPL9XU2YbJx+txCvP/I2JIe49s/uWfR9w2jxRcpdn3+8JK2o4vrk/BxuTdGaruF+niGqRfrlN9ZB1Nno3g6y/kTUiBOPLl4OkvmJovuh9Js/nqBE39XJGrGK5ihWHyXkPytDgC+LMqRJGmdUW3Y9KUCRkaN953vNJl+ceFpi5J0sZlXmiDihhBbvlGgNe5Tfb8tJ6muBxGc/qcSg1/KkRwySQwaqz49TrpGQrAhM/GEXBGXpJXS/9ksVFVQIdFvEjYjRChQzXi6VqLnwilYQ1/Nc/yvp+cKKxfr1D8WGfhMDrOgY+Q0Bj6f58RfzyzLzyACgWLEic0XF6aeFXkRiqqgOxpWt467QoH08yka6EkVRVOIfIGiC9I7bfK3JlANhVP/WMQrhtd9OxIDBt0PpfFKITOvXnQNIGD82RpDX8njDJkLP8AyEgEEzQg9qaIllHMFuxpkb0nQGvVxpxb3u1JNBRGJFZk6u540Tnp03ptiy7cKHP8fy/M3J0nSxhJ58XTNjruTbPlmAc1W4wRVNT7GataF8fLiGmlqVnmvTeW9q2tsUD/m0jjhYvcZGCmVsC1oT/qXPb9xpwOswuqOs1QtBWfQJLXVJLn5wnbbc5Ndf1bFL1/b+UTpzRaZ3TZmPl490pMaW79ZoHbcJbc3ccF9K++3mHz+wjGRx/5ymt7H0nPb2J70VyyJYS3RkypGVkOzFFRbRbMUtEQ8DfJsge/5zvyoTHtMxmiWImwJwtb5BY3X/1xauowAguBsjGr5YlWNUx7VI23S26y5iQ+5vQmye2waw148/TmKQF1DUyCWWXqnRXKLSXsioHnGBVVBT6p0P5hGT6mIdkiy3cLTFVxDQyhQTlqc6EvzwLvjbJ6oE/xxgRPfLsKNtzuWLmejxpaXk4xTS2tYUIuoHGqT25tg8zcKlN5sUH1frtVKlxbUIiaerdH3RIaeh9PXtTGhJEmSJEmStHrONrX0SgFTv61f4d7SUigKaKnzYilnS2tUwI7/K/KC9hMe1vMG9q9MBmcDcn4K6kMqzQGFdqcCahzrvDi/QYSQvdkmtSVeY6l+cH2bfCebPtuHa3OFqQDtRTasl9YZGQtcmIz/XZUbsjhVmV2HMjMaQ1/NY+Q0/GpI8Y3m2pr+uUYZmfgFbE9tvAXx6vsu+VsdjJyGZix+Vzt5Msfbz+ymWbEp7FcIWtGKdaWQJElaDnpGZfPX8ii6Qv2oy/ivayDzdqQlmnm1Sf2kR+9jaRJ9Bk6/Sc8jgpnXGpTelMfFtW70p2W2/UknnfckOTNcXu3NkSRJklZR2I5wuk0Q4E76qKZCFIAIxQVFD82ReEpR5EVLLkwFiFw48/0yAANfyJLoNS7/DUtw4tszbP9nXWi2Smq7Rf3Y/HhPc9SnNeFjd+v0fzIzN9H1elN06PpICrvHwMxrKOr8pmatMZ/Rn5evezK9s8kkvdMis8umNe4z/mwVEV18H4PO+1P4tZCRH5ev6/acNf1yg/5PZxn6ap7hH5XxqxH52x067k5SOdRicurcgllqu4UIBI1TF8790RIKW/+og/Z4wPCPVma71wuvFM5NwNv6xx20Rn0q77ZoyeIXSZLOUzzQpHnGI7XNImzH8W4RACrs/JddAFQ/bMdFnac2xuw1EcXdmBcbwYj81Z3AmNph0fNoGlVTaE/5FA82qR5qkdxs0vNoZu5+YXt5FpVHf1Zhyzc75j7XEirZm+1599Ps+cVgkSsY/VkVzVZI7bCpH7sxpqOrpkKi38AZNHEGDczcuWVZIQSRG0/0XKgwdfKFGu6EPDZL0qVMPFtj4tlzxROpHfEE7OSQSWqzRd8Lo4TNiMkX6zRmp2kf+7vb5z2Ops+/5urNzC/KaPpXvl4V4fxrO8+d/30L3W/7H715xcc/y+7T6XksjaIopLcDpM49thCU32oy/VqTHX/aiQmEIy2Gf1AGoB84nVIp3OmQvSnBlt8ryMl6kiRJG8zUC3V0R42vCx7O0P2QIGhEFA/IQlVpYY3THhO/qtHzsTRo8Xso8mQiriRJkiRJ0kYy/WqDyBN03JOk/1MZGqc8KodujDj9WhEVBK0veihNKJWSBI5CaBNXty6Cct4yQmG/w/Tvrs/goc5Smzs+mEGPzl0TnPj2jKxflCTpim7I4lRUEJHAzOsIIfBrEWZOo/djaepbTMafkV3ALsfuMhBCbMiu1t0PpzByGo2THn5lcUfR15+8idEPu0GBXE+Noz/WKB1syoOwJEnrSt/HM6iGSvFgI56AKUlXyZ0MOPWdEmiQuzlB4U6HjnuThF5E9ZBc8FzLIm926kuXDhqyQH0dE5FAKBtv0VjIjlSStGImnqmhKwssRCjQ/WCKzB4bRVVwBkwSfQZH/8/pa37O5rCP02ey4192EgUCRBxcDxoRM68vvpmYnlTZ9JXcXIK/EILGqUt8bwjDPyjTeb9D7laHbX/aQeOER6LfwK+FTDxXI6gt/8W9M2iSvTlB9cM25Xdb+JUQEQl0RyWzJ0H9hEv1/eu/EGR36wx8JkvoRkw8X7vkcw58JgfEk2796soEO9zpgNPfLTH4uSyDX8jRGvVJ75wtfjlvbUbRoe/xuPhm9GcVGqc87B6dzvtSJPqMefeXzim92aI17uMMmqR3WAx+IcfIT8uXnDQsSdLapSUUuh9NIzxB8Y3msk7cbk8G89YBMrP749GnKzROboyi1Kuh6KCnVVRr5abyKSqYHTrJLXHhldWpUzvSZvp3DYLGuWN09bBL9cgUVodO0IiI2stzLeVXI478tykgntia6DVwNpnkbknQHPVQdQUUqB259HlM2BZUzjb2PPvSbZC1FC2pYua0+COvY3fpWF06iqrgVQKawz4zrzRwiyFhO4qTvc//1ajEn8tLX0m6KvWjLvWjLqoNmZ0JnKG4eWLf4xlmXm9SOrBx1j26P5oG4NhfTZHoMbB7jLihlC+oH3cJGhGqo6Jo8cWQctGhKqhHTL9SJ3tTgtDbIDthadls1NjycpJxamk9GPt5FYDsLTap7RZ2l0H3Q2lyex1Of7+0Yc7BpeVTO+oigO6HUiQ3F6gfcSm9HceuJUmSJEmSpA0gguIbTYJGSO42h+6H0ii6gtMK0KIILRTUnXh93WkHRIpCpIIWCobOlMm0PPRQcLwnw2QmgWto54oqhUARIBQWXWh5w1JAJMFVl762VD3iktvnABC613BRp3DJdYiOclyYWsxaJFsB6slW3AhchkI2LBkLXJiM/12dG7I4NWrD8f85TWZXguYZF68UgQ5DX8yR3mFjdRmc+V6R6MbNq7isxICBCMSGC1YOfjFHotfAKwWM/bK66O8bO9KN5Xg8+ievYSYCXvtPe6/jVkqSJF0fjdMedrex4GQDSboqIZTfaeFXQ/o/lSU5ZMni1HWgcqhFz8MZMntsqu/J7mjSxvLUU0/x53/+57zxxhu4rsvu3bv5kz/5E/71v/7XqFcR9JOkG5KAyd/UKR5okr/dIWhFeMXlaVx1NlE4tcWMizwEIARGRqPv4xmCj0ac/PZMPLFtluao6CkVdzJAT6v0PJrG6TcB8EoBpXdb1I+0L/iehUy/3CSoCzruccjsthGhQE+pbPlGgTM/KONOLXNzrtkY5vTvGoTNC4Mr9eMrF4zK7Lbx6yGn/q44b1oqQO62BPlbEwBMvVRf1mKnxQibEcM/qdD9YAojq83dfv7vIzlkzv0/ty+BkdHouDcZF8cQB9JHniyv2DavN+3xgPZ4QPH1Jpu/kafrIylKb7doj/t4JZl4JknrheaopIYshBA0h/3rvr9O77LwayGNkx6qoWDkNEQgbpj9htWhk9ljk95loeoKY88sfi1hQWp8PDNzGkJA2IgIXYGeVDHSKnpaw0hrGBkVzVFRLkrsGH/2Es1WI5b/HOb8h3fjqeWNUx7pXdbcORhAa2L+8yo6pLZZdN6fQk+ozLzeIH+7AwLGfl6hObxOmiOoYGTOFqBqmDkdM69h5DQ0c7Y5SijwKiHeTEDl/TbNEW9xDU822JqbJK2WqB3HpcvvtECDrd8s0Hl3ko79Dv5wndODqSs/yCqye/T4mBCBO+3HeQyzVAv6n8hidmg0z3hEbWic8mmcmr8P7bo3CcRJNCM/LZ97DBsSfSZGOr7Gap6WCRGStJJkjFpaaZV321TebYMKW75ZwOzQ0NMqwSKb9Us3lvpRl9aoT/dDKbJ7E5h5jeEnK6u9WZIkSZIkSdIyqh52qR112fz7Bbo+kuLhA+NzXwtbEYquoBoXrkOE7Yj27HrDrW4ch4pCgQgEiqagaKAoCqEXUXqzRemNpTeJW44ZoL3P9V/xPo5++VjYd0bvvuJj+JF22a9P15NX3g7r8tux9cX8vNuMMwr8Gtq7I9Rv2hSrm674PGcpoaD/aJvclI9TCZkZMOmeaVHKmPhG/PMMjdXZe7zMdM7izd0Ftg3X2FrxUBSQdXqStHg3cvzvhixOhdmFqbdb524I4PR3y3Q9mCJ7s83WP+pk5Cdl2uMbbzrotej7ZAbNUpl+pb7am7Ksuh5Kkeg1qJ90GXt6ackkVsrFrVugyOCtJEnr0+AXsyR6TaJAUNxA3cOlNUCFvk9kEKFg6rcb69xho6q+79L9oKD7IylyexO0xnymXpC/u3VHRGzIrNaFKqcW6b/8l//Cv//3/x6Abdu2kUqleOutt/g3/+bf8Mwzz/CDH/xgw1/8S9JyChoRUy8u//GhdGCBaTZqPK01e1OC7X/WSeQJwla8PzBzcVhLiLOTVs8tkow/V8OdXHxM52zystmp4xUDOu9xyN+eJL3Tumxhh6JzxeLXi9ndOqEbzf0cq8Xs0PFmgnm7V6tLp/P+JE6/Sf2ES/FgdUmv5XIKG9FcnGbTl3PY3QaVQ3EDjdRWk96PZ2ic8WiP+xTudHAGTVqjHiM/q9Jxp0P+dofkVov6Mdkk5UrGflGl66Mpuh9MoagKYSuiOepTOtjEnZbxUUlay7yZkJN/XyTyIsLW9V8dLr/dou+JDFu+VUBPqnPH36mX65Tfal3hu9cvzVHpfSyNM2gSNEIqh9pUP2hf0xQZPanQ/5kcVkEnbEegcq7AUQiCRkRQDfGr4VyBY9AM56aaj/58bSQJTzxbo+exNNrsFNn+JzLUjrjY3TpaIm4mYqS0uQl+AB13nUvO6H4kzZnvlVbk/btUqqWQ6DNI9Bsk+gysgj73c4RuhFcO8Uoh9eMuXinEK8e/L9lFXJLWiBBO/F2RznscMnsS3HS8wkzepJE0r/y9K0xPqWz+eh7VuDA+JSJB0IxQlPhYBNAa8Rl96vLr2Y0zHpnd8bTzrX/QSeQLIk9gpM8du0UkqByWDQqli2zU2PJyuso4tYxRS6spudlET6p4pVAWpkqXpKjQ/UCK1BYLiNcBJEmSJEmSpI1HhHDy74tYBR3VVIhmB5Zlb7bxaxHN4bggUdEVUKA94c/lROhpFSuvo6dVFE1BhAIRxXEmq6DTeU8SVYeZ15pYnTrpnRbtMZ/gvKbdVme8dlB8XeYqL4X9gULQIWjeFa8nLYYSCvLjPpsOtzDbEZUug2K/RnbK587hGQBeuL2HQtVl7/EyAK/d3AmKwliXw47hGsktJu2pYHFNOKX1R8YCFybjf1flhi1OvZSpF+o0Rzz6PpZh8As5Zl5rXlUHh41ANSExaJLoNbA64u7PuqPRnvIpHdw4SSZ6ViV7k41fDZdcmApwy6NHef3JW3jnmd3c+dn3r8MWSpIkXV92lwFA8fUGQf0yJ1QacGMMwZCWSW5fAkVTmHiuevn3lrSmTDxfo+fhNFZBxyroRG7EzKs35vmwtDG8/PLL/If/8B9QVZW//du/5Rvf+AYAb731Fp/85Cd58skn+fM//3P+3b/7d6u8pZIkLSiCyefr+JWQ5BYTPamhJ1VQFNpTPmZejztxnleYWnqnedXFlN5sEV72FgeA4huX6NGpw/Y/7kTR421EJS5IKIVUDrVojcyfXKPZCsmtFrl9CaqH26tatNDzaJpEr0HlvRZ6SiWoR9i9OrlbEqS2Wfi1KC4yeru1Zoorzhbz9j6eQU+q2D069WNuPDFOQPFgcy5mrmjQnox/B86gIYtTF8GbCRl5soKiQ3Zvgq77U6S3W6S3Wxz9P6eupUeEJEkr4FoKJJeqccpj4tc18vscpt5q0J7w6X8iQ9f9KYJ6tGH2uYoOHfckZ4sqIdFnEPmC0acrNE55V318VE2F7N4EnfeeK848/d3SXCMAxVDQLCVO1Fho33veemXjxNqYdtc45XH8L2fi16nfoP9T2bl4Y/2ES+OEh18NaZyJC2ytTp38fof0tjjh2UhpbP56geqRNvWjLu3JYNXOP+aKUQcMnD4Ts0NDURT8Wkhr1Kf6fnu2IDVYk8W0kiQtIITpl5uUD7XZ8o0Obj5a4bXbulZ7qy5gtwM2/34BVVeoHWlTO+6iaAp2p0ai38TIaohI0BrzmXm1sajm2vWjLqfKJTr2O/F0Z0tBSygEjWiugXf1cItobRxKJGnDkzFqaTXpKZW+j2cQIQz/qLTamyOtYbnbHZKbTcaeqdIev7CAQJIkSZIkSdpgIuY1KJ78zZUblAe1iKC2cECphkvQiOj6SIrcPufcBNZbF36s9E4LvxIS1CL82dxSLaGg2SqaraI7KkIIRn5cIfJu8Hh8BNqMQlgQly1MzU14dJ3x0HyB6UbYjQhFQKnb4MO7U7TSs1NfhWDHCy06qi4PvjlBBEwUbD7YkgUl/r3VHYPGGY++T2QBOPODEu0J2dRaki5Fxv9kceqCGsc9Tk4W2fz1PB13OpTebK6ZgvD+T2dwBuNurqErCGoh7emA1qhP87R77QtIsxPOkptMUOMx6xB36Y48QeWDNpO/rl3jk6wt/Y9nURQFPaUy+MUcpYMNGqfmJ5EuZOSDTt58+iZAoGpr5E0iSZK0RKe/W2Twi3k67k2ip1Smfhsn4Ce3muT2JbA64g5JEE+Umn7pEgn6knQRu1tHCEH18MZITL1R1A67dN6TRE/GwYjMHpvcrQ7H/sf0mjknlqSl+M//+T8jhOBf/It/MXfRD3Dbbbfx53/+53zrW9/iv/yX/8K//bf/FsMwVnFLJUm6nNKbLUpvXrpRlp5RsTp1GseXIbNWjYsbAVKbLcwOHSOlYXXFHTwjN0IIUA2FKBT4pQA9pWEVdIyUSnq7RdCK0EyFM98v49dCsnsTFPY7KDo0Tnqr2vghvcOam6CT3ZsgvdsmaESYWQ2vHFA80KT4RnPNFKWeNfVSA78a4WwyMHM6zRGP8V/Vzm3n7HmKZisMfDaH1anTnvSZ/p28flmK/K0OhbsdgkZI45RH9YgrC1MlSZqn9qEbTxZX4uYMJ79dZMsfdOAMbIyGAKqt0P/JLFanjl8LCeoRxTdbVA+1CNvXdoDsuCdJ7pbE3OeV91oXJIAIXxD4l3mOCMafrWJ1rr3lPRFC84zP6FMVeh/PEDQiJp6rzUsacacDJp6tktzciaopTDwXd97O73PI74sbhNRPuky/VMevXp+DkGopmDkNM6dh5PS5/5v5+HX1q3ExauntJq0xX3YEl6QNIKhENC2NXNUjCs5lcIlImXdf9WNn5t2WuviGv71j3n0Weqzt33rjituW3GyifiqLVwnj5juz6kcBrv7a0ZsOGPvF0hszS5K0/GSMWlpNm76cAxVGniwTrf/LNek6yeyxKex3KL3don5UvlEkSZIkSZKkq1N+u0Vr3MfpNwgaEa1xH2ZzK84KXYFV0EhuttBTKla3TmqbhgCidkTYigjbgtCLcPpNBj6TpfhGk8ZpD0WN1yJuNGoDVF/BTy68fqSEgsxMwM4DDdyESiOr0UobjG/VqOU1WpmL1pQUhVf3dZFs+hhhRNPW8Qxt3uOWDjbjmiKIG4tKknRJMv4ni1MvKahHTL5Qp/exDN0PpVe9IFO1oP9TORK9RtyR2Y0wMhpWp47dbZC7OYEQ8Vh1rxQy9VKN1ujSDwKbvhQn7/mVkNaYT3vSpzm8sRfei282ye210ZIado9O/6dyRH5E45TH9O8uPUWwMpHkwE/2ggK3ffIDNu+bWOEtlyRJWh5eKeLkt2fY9JUCuVscsjcnQIkbFAghCOoR7lSA1amT25egcdqjNby4In7pxha6Im50oQPy2nRdmXi+RuHOJHa3ju7EgYfOex28Skhqq4VXDJh+uYmZV4kCiLxILmivISISCGWNVRQtAyGW/jNVq1WeeeYZAP7sz/5s3te/9rWv8a/+1b9iZmaG5557jk984hPXvJ2SJK2OoBoRVJdp5Mtsl1C7y6Dn0Qww27TLF4TtKO7QGUHQjJh8oYZXDPErIemdFoU7HQxdQU/Eyc5DX8sTBQIUqB5qUTzQvOailmvl10L8Wkh70qf0ZovkFhMzpxPU40TocI12xPcrIVMv1lF0KOx3qH7ozmucoTkqm38vj6IrjD5dwZ0KiNyNd0y8XuxenY57khQPNJh5fe0VKEuStDZotsKWP+hA1eNEgqAZ0Rrx0B2V5gKTw9ej3M0JEn0GIz8t0zxziZ9JAd2Ju3drCQXVVGiN+gse55ObTZJbTDRbxeo6tyxXfLNJ8fWlN1GoHXGpHVm7F+HNYZ/jfzlzya+rpsL2P+2c+7zn0fS8+6S2WKS2WEy9VKf8zrVPcjc7NJwBE2fAwOo25s7VID438sohzWGP4sEmrVH/kutCkiStb1M5my0TDdJ1j1rKXO3NmdM45RG0QoyMimpD1F7tLZJuZBs1tryclhqnljFqaTUNfjGHllDjydtjcrFWWljnfUnytztU3m9d1TWqJEmSJEmSJJ3PnQxwr1DI2GxGNBeRg5zabpG/NUH/p7KE7QjNVgkaIdXDLqU3mzfMRNUoBX6PQK3Pb46XqIXs+V0N0xXU8hrv35dGaPPvt5CGc/kCucKdcb7omR+UZO7ABiVjgQuT8b+rI4tTL6P2oUvHPSGZndaqFKfm9iXI3GRj5jQUdXZE9kmXsacv7HCqOiqpTQaJfhOrU8fs0Bj4XI76UfeC7qpXomdU7C6DxmmX0adunC6q9aPuXNc3RYeOuxzSu2xS2y1S2y1mXls48GYkfBQFhIBc95VH2UuSJK1lkQen/r5I1wNJrA6dyBe0JgJKbzXnigrzdzp03p1Es9TLP5gkzYracSKf7qgE12nShXR9NE/7NE+X0ZMqiUGD3kcz5G9LAvGFV3KTNff5+eYuygREniBoxsXtpTcbeCX5HpBW3sGDB/E8D9u22b9//7yvG4bB3XffzbPPPssrr7yyYS/8JUlaujPfK5PebWH3GFTeaeLVonnNNnb+L130fzILxIU57Umf2lEXPaGS3Zsg9CMq77QJWxG1o23C1toI6LYnAk5+uzj3uTu1vhLTRMAlJ8+KMC4EVnWF/ieyNIc9Rn5SWeEtXL/OTotrjflycUmSpEuKPIHwBegKoz+v4PSbJPoMyu+1qB9fuwWTS1E90iZ3a4KexzJzE2KLrzfwSiHpXRZ2t0FyKC42PZ9XCph5rUH9hDe3H+37ZIbUVmvec0w8X6P6/o1ZfRT5gsYpl+Rmi8gXF3RMd6cD2lM+2Zvi6bJdH0mR3m4x8esaXmnx7dCNjEpithg1MWCiJ1SiQNAe96m818IrhXjlAL8SItbXqZAkSVfJ7NDYNNlAAJ6xemscVpeO1aWR2mqjGjD8w/h6pXigSfcDaVLbLKqHNsbxVJKkmIxRS6tl01dy2F0G9ZMupYOt1d4caY2yunRytyWY/l2d0pvyfSJJkiRJkiStLfVjLvVjLlanTmq7RVALMfIauX0J0jsshn9UJmjcADmJCniDEckDGtkfaPj9AmMoIjQUtr7dINQV3rszRT2ngbq4wtTFiDyBCAXRKjdgl6S1Tsb/YrI49QrKb7Xo+miK/H6H0hsLJ74tt+wtNh2zxT8iFLgzAe3JgPa4v2A37KgZUT3sUj0cf021YPDzedI7bRRTYeqFOqntFn4tpHF84Skig1/KYXfHb4fKDZoQAXGC4/Tvmkz/Lp4ENvD5HB13J6nNJEh3XBiEczIej/yzV3nuL+/h4NN7eOSPD6zSVkuSJC2fqd9euhNmdo9NFAjqx2RihLQ4ZztTyeLU9StoRNQOuyhUMbIaXimkdsxl+590oOgKlUNtIi9C1RUUQ0XVQdEVNFtFT6kYGQ0zr5HeFSecTv+uLpOrVoKImDdKbiMQS/+Zjhw5AsDQ0BC6vvDl77Zt23j22Wfn7itJknRW7bBL7fDCxy09HScz1462qX7QJtFvYvfo5G93UHUFEQpmfteg8t6NG2NZaaqpYHfpNM94pHfYAJTekglVS1F9v01mt03hziTN4fJqb44kSWuUiOD090ps+nKe/K0OIz8uX82p+poW1CJOf69Ebm8CI6uR6DUY+EyWKADVUvCKAZX3WrTGA8JWFE9WT2v0PZ6h7xNZxp+Nm38m+gySWy6czOfXQ07+bXGhp71xCBj9WZXkFpOOu5JYnTqhG6FZKlanjtV57tpt+pU66Z02Q1/NUzzYpHSwibhEjarmqGT32mR22hgZDREJ2lMB1UMtmiM+7Qn/kt8rSdLGl95uoQqoJXRca5EpEipkdloEzejCSdoabDtTpbvYRgsF0zmLw1sy8Tcs9DAW9DyawRk05yaPCyFQFIXt/zyeJK1o8W3N0xtjCrm0jm3U2PJyWuLJr4xRSytOhS2/X0BPq9SOtJc01EC6sSg6dD+QwpsJZRxVkiRJkiRJWtPc6QB3+lynyfJbLQa/kGPTV/O0Rn3qR9t4TYHQQKiAAkIhDtcpy1esuZq87QLVjVB8ME8q7P8wbnoXKfDBfSnqheUtC1MigdWh05qQ8coNTcYCFybjf1dlSXuhgBuva36zouB5JunbdNyWOpdMHzYXn1QfRrMHtSjCqYYEpoJnq6CeW6BSvYjuEZfBb6bRbBXf95k82KR8Nd3r2nD8HycZ+HwWu89g4PfSc1/qeNgmbEa45TCeaOVHeNMBai6i3XCpHWlTOb4yRbhrXVCEEz+cYujLeX7113v52J++gqJdeB/VrJPtm2DqVIEf/B/3YiVd0ncISm/IoJ0kSRuL2akTmQH1Ux6BkBcb0uIIx8TzPNpVl2CjZareYIofXPh3f+TvJiGMiBZxSqxn1Lhb2TaL3L0W5qDK+M+r12lLN6aApe13N+p129nXoVq98P1jWRaWNX8SEUCpVAIgn89f8nHPfu3sfSVJ2rj7keVkd1l4nsfo8yUiT1A9E8dSVFPB6tLxqyFBTZ7/rITMHovMTQnMvIaiKAgh8DyPyd/UqJ2WTTGWavKNCn0fz6B2Crx1NlVXkqSVE9Tg9FPT9H86S8fHEky9UCNsibiwZoMU/wVVGH85Po5Y3Tq5WxNErYjSm62Fu3DX4Nh3Wmz+/QKFB+25m33fJwriEytVVzj9kxLBRnmRrlHlhE9tpMnA57KYOZ3AjQu1zjdzqMb0m1Vytyco3JEkdUuG+nEXvxISBSKevGoq2D0GyUETEQoqx+o0hn3a4/5c4zRJkqSJ1ysk9hlYnscjvznOTNbi6ECaZsrAcgO6Sm2cdkih4mJ9OYkQYOa0uf2SCAVRKFCUuDmfcmQaQZzkNlhukBuv8uItvRc8pxpEFB6ySG2zQIFWpU39eDtuSj3pk781gbPZRviCoBlSOdSmXZPrL9LykrHl5bfUOLWMUV89+X68Oh13OQg7ZOqNKjOvytwl6dIGPp2FVMTIzysEkYwDSpIkSZIkSetHUIOTP5qi874kelqj49EEfG9+/UuoQ2WPSnWHCir4+uXjJMEiwihBpF3262HzyuVZYbDwsLmzfG3hr3u74n+VHVA8lkGJBLW8jpeIYAm1TQBR8/I/x9BYncgKmDxQketa64iMBS4PGf+7OosqTjVNk97eXn47/tT13p615xTwFwvc/rWV3pCr8OQS7vv2dduK9a0M/I/4v//tv17qTh+uzLZIkiStpmnm9oeStGgvzn5IG89SeplUke+FZdDb24tpmpe9z41w3ZZKpdi0adMFt/3H//gf+U//6T8teP92O55YeLnX7mzAoNWSSRqSdCPsR5bNsdmPi3nAyApvy43ug9kPaXlcKhYqSZJ0sSngry+6baOuTU8Czyzifi7zXxPp8jzge4u43xuzH5fyzvJsjiRJG1gI/PdLf/l69So/DfD8Jb746uyHJF1nMra8/JYSp5Yx6qWT78dr9MrshyRdyY9WewMkSZIkSZIk6RrUgF+u9kZcHwdWewOI45q/Xe2NkK6KjAUuDxn/W7pFFafats2JEyfwvMtX6UuSJEmSJEmSJEnLzzRNbNu+7H1uhOs2IeZP0rnU1FRg7jW73Gvy/2fvz4Pruu/7/v959rtf7CDBnRS175tlS7LlxEtseU3SrPY3abPNNHbaeqb9tb+mbb4zzWSapnUSJ22+vySO/Y1TxUmcON5jy0scW7Js7btEcd9AYr37Pfvvj0MChACCoAgSBPB6zGCAe9bPuaKAc9/n836/fT+rHJfP55dhhCKr23r4PSIiIiIiIiIisp4otrz8zidOrRj1+dO/RxERERERERGR10axwOWh+N/5W1JyKmRv2Ln+kYqIiIiIiMjK0ee2uXp7ewGYmpo66zan153eVmS90+8REREREREREZH1RzGhi0Mx6tdG/x5FRERERERERC4exV6Wj+J/GXOlByAiIiIiIiJyMezevRuAQ4cOEUXRgtvs27dvzrYiIiIiIiIiIiIiIstBMWoREREREREREZG1S/G/jJJTRUREREREZE265ZZbcByHbrfL448/Pm99GIb84Ac/AOB1r3vdpR6eiIiIiIiIiIiIiKxhilGLiIiIiIiIiIisXYr/ZZScKiIiIiIiImtSpVLhLW95CwB/+qd/Om/9X//1X1Ov1+nv7+e+++67xKMTERERERERERERkbVMMWoREREREREREZG1S/G/jJJTRUREREREZM36j//xP2IYBn/yJ3/CAw88MLP8qaee4iMf+QgA/+7f/Ttc112pIYqIiIiIiIiIiIjIGqUYtYiIiIiIiIiIyNql+B8YaZqmKz0IERERERERkYvlN3/zN/n1X/91AHbu3EmpVOLZZ58lSRLuv/9+/v7v/x7LslZ4lCIiIiIiIiIiIiKyFilGLSIiIiIiIiIisnat9/ifklNFRERERERkzfvCF77ARz/6UR577DHCMGT37t3883/+z/nQhz60pj/0i4iIiIiIiIiIiMjKU4xaRERERERERERk7VrP8T8lp4qIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIjIkpkrPQARERERERERERERERERERERERERERERERERERERWT2UnCoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiS6bkVBERERERERERERERERERERERERERERERERERERFZMiWnioiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiMiSKTlVRERERERERERERERERERERERERERERERERERERJZMyakiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIismRKThURERERERERERERERERERERERERERERERERERGRJVNyqoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgsmZJTRURERERERERERERERERERERERERERERERERERGTJlJwqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIkum5FQRERERERERERERERERERERERERERERERERERERWTIlp4qIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIjIkik5VURERERERERERERERERERERERERERERERERERESWTMmpIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIrJkSk4VERERERERERERERERERERERERERERERERERERkSVTcqqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiILJmSU0VERERERERERERERERERERERERERERERERERERkyZScKiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiJLpuRUEREREREREREREREREREREREREREREREREREREVkyJaeKiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIyJIpORW47777MAxjyV89PT3Luv/ZjnE+4xUREREREREREVmtLkZ87nzOJSIiIiIiIiIiIqvLxZrz91u/9VuLnvetb33rgvv9xm/8xrxtF9rOtm3y+TwDAwNceeWVvPWtb+UjH/kIX//618/7PQjDkKGhoXnnyOVyTE5Oztn2wIED5/V+LfT18z//8+c9RhERERERERFZ25ScKiIiIiIiIiIiIiIiIiIiIiIiIiLr3v/+3/+bOI4XXPfCCy/w4IMPXtDx4zim2+0yMTHBnj17ePDBB/noRz/KW97yFq6++mr+4R/+YcnH+sIXvsDY2Ni85b7v88ADD1zQOEVERERERERElkLJqSIiIiIiIiIiIiIiIiIiIiIiIiKy7h0+fJjPfvazC6772Mc+dlHP/dJLL/GOd7yD//pf/+uStv/EJz7xmtaJiIiIiIiIiCwXe6UHcLnav3//WdeZ5rlzei90fxERERERERERkfVM8TURERERERERERE5H8sVU/zYxz7Gj/3Yj81ZVqvV+PM///PXPDaA173udfzlX/4lcRwzOTnJE088wSc/+UkeeuihmW3SNOU//af/xNDQEL/8y7981mONjY3x5S9/+azrH330UZ577jmuu+46ADZv3rzg+3PkyBHuvffeOct+7Md+jN/5nd+Zt22pVDrnNYqIiIiIiIjI+qLk1LPYvn37iu4vIiIiIiIiIiKynim+JiIiIiIiIiIiIufjQmKKhmGQpikA//iP/8gzzzzDDTfcMLP+4x//OM1mc9625yOXy82McdeuXdxxxx388i//Mh/96Ef5yEc+Mmfbj3zkI7zvfe9jaGhowWN96lOfIgzDmdcjIyOMjIzw6KOPziz7xCc+wX//7/8dANu2l/z+lEolxWdFREREREREZEnUYkBERERERERERERERERERERERERE1q3bb7+d3t7emdd/8Ad/MPNzkiT84R/+4czrt7/97ct67n/zb/4Nv/iLvzhnWavV4vd///fPus8nP/nJOa9/5md+hg9+8INzln3qU58ijuPlG6iIiIiIiIiIyKsoOVVERERERERERERERERERERERERE1q1CocAv/MIvzLz+1Kc+xfT0NABf+tKX2Lt378y6D3/4w8t+/n//7//9vGVf/OIXF9z2ySef5Kmnnpqz7IMf/CA/9VM/hW3bM8tGR0f5yle+srwDFRERERERERE5g5JTz8IwjLN+/e7v/u5F319ERERERERERGQ9U3xNREREREREREREzseFxhR/9Vd/FcuyAGi323z84x8HmNPBdPfu3bzjHe9Y9rHv2rWLzZs3z1n29NNPkyTJvG3/7M/+bM7rG2+8kRtvvJGhoSHe+ta3zln3iU98YtnHKiIiIiIiIiJympJTRURERERERERERERERERERERERGRd2759O+9+97tnXv/hH/4hzz//PA8++ODMsg996EMYhnFRzr9p06Y5r5MkYWJiYs6yMAx54IEH5iz74Ac/OPPzBz7wgTnrPv/5zzM5ObnMIxURERERERERySg5VURERERERERERERERERERERERETWvQ9/+MMzP+/bt4+f/MmfJE1TAMrlMj//8z9/0c59+jxnenUi7Be+8AXGxsZmXpumyc/8zM/MvH7f+95HqVSaee37/rxkVhERERERERGR5WKv9AAuV/v37z/rur6+vmXf3zRfe57wxarEJiIiIiIiIiIislLOJ76m2JqIiIiIiIiIiIhc6Jw/gB/6oR/i+uuv59lnnwWY+Q7wcz/3c1QqlQsb5CKOHj0657VpmvPG/YlPfGLO6x/+4R9mZGRk5nWhUOD9738/f/7nfz5nn1/91V9d/gGLiIiIiIiIyLqn5NSz2L59+yXdf6GgVbfbJZfLzVvebrfnvK5Wq+d1LhERERERERERkcvd+cTXFFsTERERERERERGRC53zd9qHP/xhfuVXfmXOMsMw5nRVXW579uyZl5x60003zSnMNzY2xpe//OU523zta187ZwG+Rx99lOeee47rrrtu+QYsIiIiIiIiIgK89pYCsqw2b948b9nevXsX3PbVFd4W2ldERERERERERGS9UGxNRERERERERERElssHPvABent75yx729vexpVXXnnRzvnf/tt/m7fsne9855zXn/rUpwjD8DUd/9UdV0VEREREREREloOSUy8Td99997xln/70p+ct+/rXv874+PicZffcc89FG5eIiIiIiIiIiMjlTrE1ERERERERERERWS6FQoFf+IVfmLPs137t1y7a+T760Y/yp3/6p3OWFYvFeZ1aP/nJT77mc3zqU58ijuPXvL+IiIiIiIiIyELslR7A5erAgQOLrh8ZGcF13WXb/73vfS8DAwNzJsf95m/+Jr7v8973vpdCocDDDz/Mf/gP/2HesX7xF39x0XOJiIiIiIiIiIisNucTX1NsTURERERERERERC50zt+Zfu3Xfo00TQHI5XK84x3vuNDh0e12OXDgAEmSMDk5yeOPP84nPvEJHn744Xnb/o//8T8YHh6eef3kk0/y1FNPzdnm05/+NHfeeeeC5zp48CD33XffzOvR0VG+8pWvcP/991/wdYiIiIiIiIiInKbk1LPYsWPHouufeOIJbr755mXbv1Ao8NGPfpQPfvCDM8uSJOG3f/u3+e3f/u2zHudXfuVXuO222xY9l4iIiIiIiIiIyGpzPvE1xdZERERERERERETkQuf8nWnLli38zu/8zjKMatYjjzxyzjGapsn//X//3/zKr/zKnOV/9md/Nud1pVLh/e9/P47jLHic7du3s2vXLvbu3Tuz7BOf+ISSU0VERERERERkWZkrPQCZ9YEPfIA//uM/Jp/PL2n7D3/4w3zsYx+7yKMSERERERERERG5/Cm2JiIiIiIiIiIiIqvZtddeyz/8wz/w67/+63OWh2HIAw88MGfZ29/+9rMmpp726kTUz3/+80xOTi7PYEVEREREREREUOfUy84v/uIv8p73vIePf/zjfOMb3+C5555jcnKSOI7p6elh165d3H333fyLf/EvuPbaa1d6uCIiIiIiIiIiIpcNxdZERERERERERETkcmYYBo7jUCqV6O/vZ9u2bdxwww285z3v4b777ltwny9+8YuMjY3NWfaud73rnOe6//77+f3f//2Z177v88ADD/Crv/qrF3QNIiIiIiIiIiKnGWmapis9CBERERERERERERERERERERERERERERERERERERFZHcyVHoCIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIrB5KThURERERERERERERERERERERERERERERERERERGRJVNyqoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgsmZJTRURERERERERERERERERERERERERERERERERERGTJlJwqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIkum5FQRERERERERERERERERERERWfP279/PH//xH/NLv/RL3HTTTdi2jWEY/Nf/+l/Pus8TTzzBf/7P/5k3velNDAwM4DgOQ0NDvOMd7+Dv/u7vLuHoRURERERERERE5FJTTFFkcfZKD0BERERERERERERERERERERE5GL7vd/7PX7v935vydvv3buXW2+9deb1jh072L59O/v27eMrX/kKX/nKV/i5n/s5Pv7xj2Oaqg8vIiIiIiIiIiKy1iimKLK4dZ2c2u12CYJgpYchIiIiIiKXiOu65HK5c263Vj4rLPV6RUREVspa+ZsrIiIiIiJyqa23WOfZnG8MdGBggHe9613ceeed3HHHHfzJn/wJn/nMZ866fZqmbNy4kX/9r/81H/zgB9m4cSMASZLwv/7X/+LXfu3X+OQnP8ntt9/Ohz70oQu+HhERObe1/rdNRERERETkYlFMMaOYosjyWrfJqd1ul2q+l4DuSg9FREREREQukQ0bNrB///5FAwvdbpcd20qMnowv4cgujqVcr4iIyEpRfE5EREREROS1W2+xzrM53xjor//6r895/Zd/+ZeLbr9582ZeeeUVCoXCnOWmafKhD32I5557jj/6oz/ij//4jzWRTETkElBMUURERERE5LVTTDGjmKLI8lq3yalBEBDQ5R7eiY2z6Lb5TQ59txXw+m0M05i3/sADk8TtZM4yp9di64/2Mv1sm4lH2ss6dhGRlbD5R3voHgsY/55+p4lcLuyKSf+dRYpbXQDqL3YZf6i1wqNa39r/36u5amwSN0lIgcm8x7MbBvGdU/ebRrro/rv+3aMLrzBhw1srFDa7nL4bDUyTRzaO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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#plot regional exposures\n", + "fig, axs = plt.subplots(figsize=(40,20),nrows=int(len(reg_ctrids_dict.keys())/3),ncols=3,subplot_kw={'projection': ccrs.PlateCarree()})\n", + "iax = 0\n", + "\n", + "for reg,reg_ids in reg_ctrids_dict.items():\n", + " exp_sel = sel_reg_exp(reg_ids,exp)\n", + " ax = axs.flatten()[iax]\n", + " exp_sel.plot_raster(axis=ax)\n", + " ax.set_title(reg,loc='left',fontweight='bold')\n", + " iax+=1" + ] + }, + { + "cell_type": "markdown", + "id": "48a3888c-1ac8-444d-a09e-021e4ea6975d", + "metadata": {}, + "source": [ + "## Load and prepare impact functions" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "54e8f41b-9f95-4161-aba7-6cb6e2266afd", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:25:33.382582Z", + "iopub.status.busy": "2023-01-09T13:25:33.382351Z", + "iopub.status.idle": "2023-01-09T13:25:33.385976Z", + "shell.execute_reply": "2023-01-09T13:25:33.385549Z", + "shell.execute_reply.started": "2023-01-09T13:25:33.382558Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# Get impact function from Schwierz 2010\n", + "from climada.entity.impact_funcs import storm_europe\n", + "\n", + "#Get Schwierz Impf\n", + "impFunc_schw = storm_europe.ImpfStormEurope.from_schwierz()\n", + "\n", + "impFunc_schw.id = 1\n", + "impFunc_schw.haz_type = 'WS'\n", + "impFunc_schw.name = 'Sw2010'\n", + "impFunc_schw.check()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "aaff44fe-adbd-4261-a0c8-ddbe230e0a65", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:25:33.693682Z", + "iopub.status.busy": "2023-01-09T13:25:33.693412Z", + "iopub.status.idle": "2023-01-09T13:25:33.698696Z", + "shell.execute_reply": "2023-01-09T13:25:33.698249Z", + "shell.execute_reply.started": "2023-01-09T13:25:33.693650Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "# Implement impact function cubic excess over threshold from Klawa 2003\n", + "from climada.entity import ImpactFunc\n", + "imp_fun_cub = ImpactFunc()\n", + "imp_fun_cub.haz_type = 'WS'\n", + "imp_fun_cub.name = 'CubEOT'\n", + "# provide unit of the hazard intensity\n", + "imp_fun_cub.intensity_unit = 'm/s'\n", + "imp_fun_cub.intensity = np.linspace(0, 1, num=20)\n", + "imp_fun_cub.mdd = imp_fun_cub.intensity**3\n", + "imp_fun_cub.intensity = np.append(imp_fun_cub.intensity, [100])\n", + "imp_fun_cub.mdd = np.append(imp_fun_cub.mdd, [1])\n", + "imp_fun_cub.paa = np.ones(imp_fun_cub.intensity.shape)\n", + "\n", + "# check if the all the attributes are set correctly\n", + "imp_fun_cub.id = 2\n", + "imp_fun_cub.check()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "2917b622-c086-47bc-a2cc-7e197175149d", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:25:34.074955Z", + "iopub.status.busy": "2023-01-09T13:25:34.074598Z", + "iopub.status.idle": "2023-01-09T13:25:34.319719Z", + "shell.execute_reply": "2023-01-09T13:25:34.319212Z", + "shell.execute_reply.started": "2023-01-09T13:25:34.074922Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABQEAAAHfCAYAAADgAR4gAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAADa3UlEQVR4nOzdd3gUVdvH8e+mkAIk1BBKaNJERZEqHakigogiHQQfewXB+giKyiOIgq8dadIURAREAVEQQqiCFGmhRyAgEBIgpM/7x5qVTTYhZZPZ3fw+17VXZmfOnLkHEG/umXOOxTAMAxEREREREREREfFYXmYHICIiIiIiIiIiIgVLRUAREREREREREREPpyKgiIiIiIiIiIiIh1MRUERERERERERExMOpCCgiIiIiIiIiIuLhVAQUERERERERERHxcCoCioiIiIiIiIiIeDgVAUVERERERERERDycioAiIiIiIiIiIiIeTkVAERERERGRfFq7di0Wi8Xuc+zYMbPDEhERsVERsJAdOXIkU3Lw1VdfOWz7+OOPZ2q7d+9eh22bNGli1+7+++/P1CYlJYV58+bRq1cvatSoQfHixfHz8yM0NJSbbrqJTp06MXLkSGbPns2JEyfyfI8HDx5kxowZPPHEEzRp0gQ/P79M91HYYmJimDRpEh06dCA0NBQ/Pz+KFy9OWFgYt956K/feey9jxoxh8eLFxMbGFmpsaWlp7Ny5k//7v/+jT58+3HzzzZQqVQofHx9KlChBrVq16Nu3L0uWLMEwjOv2l5yczOeff06XLl2oVKkSfn5+lCtXjmbNmvHGG29w7ty5bM//448/+Oyzzxg+fDgNGjTAx8fH7veuevXqOb63c+fO8cYbb9CsWTPKlSuHn58flSpVomvXrnz++eckJyfnuC8RERFX5+l5XkpKCps3b2bixIn07NmTevXqERQUhI+PD0FBQdSvX5+HHnqINWvW5Kn//Lpy5QpffvklAwYMoG7dupQtWxZfX19bbP369WPGjBnExcWZEl9OOSomXu8zefLkbPuMjo5mwoQJdOvWjerVq1OyZEn8/f2pXLkyLVu25KWXXuKPP/5weO6xY8dyHU/Gz9ChQ53+6yQiInlgSKGrUqWKAdg+w4cPd9jupptusmsHGJ999lmmdpcuXTK8vb3t2k2ePNmuzV9//WXcdtttmfrL6jNy5Mg831/btm2v239hWrNmjVG+fPkc3/uyZcsKNb5JkyblOLbWrVsb586dy7KvAwcOGHXq1Mm2j1KlShlLlizJso9q1aple361atVydF/ff/+9UapUqWz7qlu3rnHw4MHc/pKJiIi4LE/O855++ukcX+O+++4z4uPj83Sd3EpLSzMmTpxolC5dOkexlShRwjh9+rTT41izZk2max09etQp/Vzv88EHHzjsKykpyRg1apTh5+eXo37uueceIzo62q6Po0eP5jqejJ8hQ4bk/hdUREScTm8CmqB169Z239etW5epzYULFxw+DV6/fn2mfRs2bCA1NTXLa6SmpnLPPfdk+XTPk0VFRXHPPffw999/mx1KltLS0nLcdv369fTo0cPhG4HR0dG0adOGgwcPZtvHxYsX6d27N6tXr851rDm1evVq7r//fi5evJhtuwMHDtCmTRuio6MLLBYREZHC5Ml5Xm5ylu+++45hw4YVYDRWiYmJ3H333YwaNYqYmJgcnXP58mUSEhIKODLzxcfHc+eddzJx4kQSExNzdM6yZcto2LAhBw4cKODoRETEDCoCmiBjchgZGZmpCBIeHu6w0OMoOcyYXJYsWZJbb73V9v3HH39kx44ddm2GDx/O6tWr2bdvH3/++Se//PIL77//Pt26dcPf3z/X93Qtf39/mjRpwuOPP8706dMZPnx4vvrLj8mTJ3P58mXb94CAAN566y02btzIwYMH2bVrF0uXLmXMmDE0b97clKHK6cqXL8+IESP46aef2LdvH7/99hv/+c9/MsUUERHBihUrMp3/9NNPc+bMGdt3Pz8/Pv74Y/bt28fSpUsJCwuzHUtJSWH48OEOE+ASJUrQsmVLnnvuOebOncvdd9+dq/u4evUqw4cPJyUlxbavatWqLF26lH379vHRRx/h5+dnOxYdHc2zzz6bq2uIiIi4Kk/P88D6//XXXnuNX3/9lX379rF69Wp69eqVqd3XX3+d5RBnZxkyZAg//fST3T4fHx+GDRvG8uXL2bt3L7t372b58uWMHj2aihUrFmg8BeXZZ5/l6NGjWX4cFVwfeughwsPD7faFhoYyZcoUduzYwd69e5k/fz6NGjWya3P69Gnuuece27DpKlWqOLymoz+vvXv3dtj2vffec+KvhoiI5JnJbyIWSXv27Mn0ivyCBQvs2rzwwgu2YxmHlRw/ftyubevW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xo4dS5cuXTINyUwXFRXFl19+mev7ckUBAQGMHz+e6Ohovv/+e55//nnuuOOOLBfiWLZsmcOFPK4tUu3cuZO4uDi7J/StW7e2/fobhsH69evZtm2b3ZuFZcuW5dZbb71uzGPHjmXYsGG24UJgHe6zePFih0M5Mg4DuXr1qsN+He2/djLy/MoYR25icWYcIiIiZioqeV5KSgoPP/ww//3vf+32P/7443z++ef57j87jt5su3ZhNlfhaE5ER/uunW/akWeffZajR486/GScU7B8+fKZzj979ux1Y3X0BmG5cuWue56IiLgPFQFNlPFp7u+//866deuIj48HrHO/XTuU9dr269atyzREJGN7R7y8vGjdujVjxoxhxYoVnD9/nm3btmWaYw4gIiIi1/fkygIDA+nZsyfvv/8+ERERxMbG8tNPP3Hbbbdlapvx3suVK8fNN99s+56WlkZERESmp/kZ5/TJ+HvUrl27bN94S05O5qGHHuKNN96w2//YY4+xaNGiLAuXGZPJmJgYkpOTM7XLOF9faGhopmFF+REQEJBpKImjpDM5Odk2N1K6gpo4XERExAyenuddunSJe+65h2nTptntf+utt/jkk08K/A3/Bg0a2KZhSbd27dpM8wTmlaN+zp8/n+t+HP065GVkRqlSpahevbrDT9WqVe3ahoWFERQUZLdvx44d1/21cfQ24rX5r4iIuD8VAU2U8WluSkoKEyZMsH1v0KCB3dtR1yaHO3bs4Mcff7Q7P2P7nLBYLDRq1Ij58+dTqVIlu2OO5sbzJH5+fnTt2pX58+dnOpaTeQHXrVtnm9+ndOnS3HTTTXa/p44S+OyGAsfFxdGtWze7SbUtFgv/+9//+PTTT7Od6DrjRM5paWns37/fbp9hGPz555/ZnucMGfvcu3dvpmR3z549mfYVRCwiIiJm8eQ879SpU7Rp04YVK1bY9hUrVow5c+bw6quv5rnf3ChTpkymoujJkyeZM2dOrvtyNMoivVib7tSpU5nezMyJI0eOZNrnaPizo/n48srHx4f27dvb7btw4QLLli3L8pxTp06xatUqu31lypShUaNGTotLRETMpyKgiZo1a0axYsXs9l37P9+MyWPz5s1t7VNTU/n111/tjmc1RGTatGmMGzcu24l9U1NTM60S68xkJLfGjh1rt+pZ9erV89TPyJEjmTVrFomJiVm2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hJeXnt+6KuV5IiIikluFneepCFiITp06RVhYmNlhiIiIiBuKioqiSpUqZochWVCeJyIiInlVWHmeioCFqGTJkoD1NzcoKMjkaERERMQdxMXFERYWZssjxDUpzxMREZHcKuw8T0XAQpQ+NCQoKEjJoYiIiOSKhpi6NuV5IiIikleFledpYhkREREREREREREPpyKgiIiIiIiIiIiIh1MRUERERERERERExMOpCCgiIiIiIiIiIuLhVAQUERERERERERHxcCoCioiIiIiIiIiIeDi3KQIePXqUqVOn8p///Idbb70VHx8fLBYLb7311nXP3bhxIz179qR8+fIEBARQv359xo0bR0JCQrbn7du3jwEDBlCxYkX8/f254YYbeOGFF7h48aKT7kpERERElOeJiIiIFDwfswPIqSlTpjBlypRcnzd37lyGDBlCamoqlStXJiwsjD179vD666+zbNky1q5dS2BgYKbz1qxZw913383Vq1cpX748N910E/v372fSpEksXryYiIgIKlSo4Ixby5GUlBRSUlIK7XriOnx8fPDxcZv/VEVERHKtqOd5IiIiIoXBbSoL5cqVo3v37jRt2pQmTZrw5ZdfsmjRomzPOXbsGMOHDyc1NZUJEybwwgsvYLFYOH78OF26dGHr1q2MHj2ajz76yO68S5cu8eCDD3L16lWeeeYZ3nvvPXx9fTl//jw9e/Zkw4YNDB8+nB9++KEgbxmA+Ph4zp07x5UrVwr8WuK6ihcvTrly5Rz+Q0ZERMTdFdU8T0RERKQwuU0R8LXXXrP7/vXXX1/3nIkTJ5KYmEjnzp0ZNWqUbX+1atWYPn06LVu25IsvvuC///2v3dPezz77jL///psbb7yR999/H29vbwDKli3LvHnzuOGGG1i+fDnbt2/n9ttvd9IdZpaUlERUVBS+vr5UrFgRPz8/LBZLgV1PXI9hGCQmJnLhwgWioqKoUaMGxYoVMzssERERpyqKeZ6IiIhIYXObImBuGYbB4sWLARg+fHim4y1atKBevXrs37+fJUuW8Mgjj9iOfffddwAMHTrUlhimq1q1Kh07dmTFihV8++23BZocnj17Fm9vb6pVq5YpDik6AgICKFmyJEePHuXs2bNUqVLF7JBERERM5Ql5noiIiEhhc5uFQXLrxIkTnD59GoCWLVs6bJO+f/PmzbZ9KSkp/P7777k+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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# generate 1 impact function set for all functions, and a dict containing the function name and its id in the set\n", + "from climada.entity import ImpactFuncSet\n", + "impf_list = [impFunc_schw,imp_fun_cub]\n", + "impf_namelist = []\n", + "impf_dict = {}\n", + "impf_set = ImpactFuncSet()\n", + "\n", + "for impf in impf_list:\n", + " impfname = impf.name\n", + " impf_namelist.append(impfname)\n", + " impf_dict[impfname] = impf.id\n", + " impf_set.append(impf)\n", + " impf_set.check()\n", + "\n", + "axs = impf_set.plot()\n", + "fig = axs[0].get_figure()\n", + "fig.set_figwidth(15)\n", + "axs[1].set_xlabel('Normalized intensity (-)')\n", + "axs[1].set_xlim((0,2));" + ] + }, + { + "cell_type": "raw", + "id": "f73637d9-6e98-4bd2-8870-76c952b1bea2", + "metadata": {}, + "source": [ + "#save impf_set\n", + "file_name_impf = \"abs_impfset.csv\"\n", + "impf_set.write_excel(pathcal+file_name_impf)" + ] + }, + { + "cell_type": "raw", + "id": "bb78561b-ec48-4f40-8220-5f5f7c2ded22", + "metadata": {}, + "source": [ + "impf_set_open =ImpactFuncSet()\n", + "impf_set_open.read_excel(pathcal+file_name_impf)\n", + "impf_set_open.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "871094a8-d89b-4c54-a0b5-7cf442c5208b", + "metadata": {}, + "source": [ + "## ERA5 damage calculation" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "b6beb769-3aae-44a2-9598-3a485328aa28", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:25:39.399403Z", + "iopub.status.busy": "2023-01-09T13:25:39.399154Z", + "iopub.status.idle": "2023-01-09T13:25:39.417670Z", + "shell.execute_reply": "2023-01-09T13:25:39.417145Z", + "shell.execute_reply.started": "2023-01-09T13:25:39.399379Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "## subselect exposure according to the countries in EMDAT\n", + "regids_emdat = reg_ctrids_dict['EMDAT']\n", + "exp_emdat = sel_reg_exp(regids_emdat,exp)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "e6546796-5863-4e11-b4b6-1c076435c97e", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:25:39.665127Z", + "iopub.status.busy": "2023-01-09T13:25:39.664901Z", + "iopub.status.idle": "2023-01-09T13:25:39.670260Z", + "shell.execute_reply": "2023-01-09T13:25:39.669773Z", + "shell.execute_reply.started": "2023-01-09T13:25:39.665102Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#select climate models, used scenarios (historical, ssp585,...), impact functions and calibration type\n", + "#constants\n", + "bnera5 = 'era5_WG10_br_day_EU_winE' #filename of ERA5 WG10 data\n", + "pastname = 'historical'\n", + "timeres = 'time' #name of the time dimension of netcdf\n", + "eravar = 'WG10' #name of the variable of netcdf\n", + "\n", + "#impact functions\n", + "impf_dict = impf_dict # dictionary mapping impact functions names to their ids\n", + "impf_set = impf_set # impact function set\n", + "pp_func_dic = pp_func_dic # dict with the preprocessing functions for the impact functions\n", + "\n", + "#preprocessing\n", + "gst_fact = 1 #gust factor\n", + "qt = 0.98 # quantile threshold for event detection\n", + "cut = 1.5E5 # area threshold for event detection\n", + "mask_abs = 15 # absolute threshold for damage calculation\n", + "regrid = True # regrid ERA5 to rg_res\n", + "rg_res = 1 # horizontal regridding in degree\n", + "\n", + "#climada constants\n", + "haz_type = 'WS'\n", + "haz_id = 1\n", + "dist_th_cst = 300 #const treshold in km for assign centroids\n", + "\n", + "#prepare savename\n", + "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cut,'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-')]\n", + "era_bn_proc = make_fn(processings,bnera5)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "2f4be380", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:38.922706Z", + "iopub.status.busy": "2023-01-09T13:27:38.922426Z", + "iopub.status.idle": "2023-01-09T13:27:38.930868Z", + "shell.execute_reply": "2023-01-09T13:27:38.930289Z", + "shell.execute_reply.started": "2023-01-09T13:27:38.922674Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#initiate df to save results\n", + "metrics = ['aai_agg',1,10,15,30] # impact metrics to be computed, select aai_agg for Average Annual Damage, and integers for rps\n", + "\n", + "iterables = [metrics,impf_dict.keys()]\n", + "col_idx1 = pd.MultiIndex.from_product(iterables,names=[\"metric\",\"Impf\"])\n", + "res_df = pd.DataFrame(columns=metrics,index=impf_dict.keys())" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "5eccaf53-bd73-4138-8485-9634e27596c0", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:39.332240Z", + "iopub.status.busy": "2023-01-09T13:27:39.331950Z", + "iopub.status.idle": "2023-01-09T13:27:45.121165Z", + "shell.execute_reply": "2023-01-09T13:27:45.120481Z", + "shell.execute_reply.started": "2023-01-09T13:27:39.332201Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.14598533299999872\n", + "0.16866670800004613\n" + ] + } + ], + "source": [ + "##main calculation cell.\n", + "from climada.engine import Impact, ImpactCalc\n", + "\n", + "#Use savehaz, saveimpcsv, saveimpmat to save hazards or/and imapcts.\n", + "savehaz = False\n", + "saveimpmat = True\n", + "saveimpcsv = True\n", + "savestats = True\n", + "\n", + "#get era5\n", + "era_ds = xr.open_dataset(data_folder+bnera5+'.nc')\n", + "era_ds = era_ds.rename_vars({eravar:pastname})\n", + "\n", + "#get horizontal resolutions from era5\n", + "latres, lonres = get_lat_lon_res(era_ds)\n", + "latin = era_ds.lat\n", + "lonin = era_ds.lon\n", + "\n", + "#gust factor\n", + "gust_era = gst_fact*era_ds\n", + "\n", + "if regrid: #regrid era5\n", + " latout = np.arange(min_lat,max_lat+rg_res,rg_res)\n", + " lonout = np.arange(min_lon,max_lon+rg_res,rg_res)\n", + " gust_era = gust_era.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": 'extrapolate'})\n", + "\n", + "for impfname,if_id in impf_dict.items():\n", + "\n", + " # get processing func\n", + " preprocess_func = pp_func_dic[impfname]\n", + " pp_funcname = str(preprocess_func).split(\" \")[1]\n", + "\n", + " # preprocess + detect storm days\n", + " gust_pp = preprocess_func(gust_era,qt,mask_abs=mask_abs,cutarea=cut,timeres=timeres,pastname=pastname,futname=pastname,stack=False)\n", + "\n", + " #prepare hazards centroids\n", + " haz = set_centroids(gust_pp,stack=False,timeres=\"time\",plot=False)\n", + "\n", + " # deepcopy exposure before assigning centroids\n", + " exp_sel = cp.deepcopy(exp_emdat)\n", + "\n", + " # Exposures: rename column and assign id\n", + " exp_sel.gdf.rename(columns={\"impf_\": \"impf_\" + haz_type}, inplace=True)\n", + " exp_sel.gdf['impf_' + haz_type] = if_id\n", + "\n", + " #assign centroids\n", + " exp_sel.assign_centroids(haz,distance='euclidean',threshold=300)\n", + " exp_sel.check()\n", + "\n", + " #compute impacts\n", + " #past\n", + " start_time = timer()\n", + " impcalc = ImpactCalc(exp_sel, impf_set, haz)\n", + " imp = impcalc.impact(save_mat=saveimpmat, assign_centroids=False)\n", + " time_delta_past = timer() - start_time\n", + " print(time_delta_past)\n", + "\n", + " #save results\n", + " if savestats:\n", + " for imet,met in enumerate(metrics):\n", + " if met=='aai_agg':\n", + " impmet = imp.aai_agg\n", + " else:\n", + " impmet = imp.calc_freq_curve(return_per=met).impact\n", + " res_df.loc[impfname,met] = impmet\n", + "\n", + "\n", + " ##save files\n", + " # saving names\n", + "\n", + " savenamehaz = make_fn(['haz',pp_funcname],bnera5)\n", + " savenameimp = make_fn(['imp',impfname,pp_funcname],era_bn_proc)\n", + "\n", + " #save hazards\n", + " if savehaz:\n", + " try:\n", + " haz.write_hdf5(results_folder+'hazard/'+savenamehaz+'.h5')\n", + " except OSError:\n", + " mkdir(data_folder+'hazard/')\n", + " haz.write_hdf5(results_folder+'hazard/'+savenamehaz+'.h5')\n", + " #save impacts\n", + " if saveimpcsv:\n", + " try:\n", + " imp.write_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + " except OSError:\n", + " mkdir(results_folder+'impact/')\n", + " imp.write_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + " if saveimpmat:\n", + " try:\n", + " imp.write_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + " except OSError:\n", + " mkdir(data_folder+'impact/')\n", + " imp.write_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + "\n", + "res_df = res_df.astype(np.float64)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "c9ba6d3c-5fb9-4567-a4c5-883efc83fe28", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:46.767952Z", + "iopub.status.busy": "2023-01-09T13:27:46.767586Z", + "iopub.status.idle": "2023-01-09T13:27:46.783272Z", + "shell.execute_reply": "2023-01-09T13:27:46.782707Z", + "shell.execute_reply.started": "2023-01-09T13:27:46.767898Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
aai_agg1101530
Sw20101.929322e+093.210859e+082.606342e+093.339136e+093.600549e+09
CubEOT1.845924e+123.234635e+111.873108e+122.081061e+122.765842e+12
\n", + "
" + ], + "text/plain": [ + " aai_agg 1 10 15 30\n", + "Sw2010 1.929322e+09 3.210859e+08 2.606342e+09 3.339136e+09 3.600549e+09\n", + "CubEOT 1.845924e+12 3.234635e+11 1.873108e+12 2.081061e+12 2.765842e+12" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "res_df" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "2a6d27bf-2829-45b7-80d7-8507fc7e74fb", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:52.043455Z", + "iopub.status.busy": "2023-01-09T13:27:52.043027Z", + "iopub.status.idle": "2023-01-09T13:27:52.049016Z", + "shell.execute_reply": "2023-01-09T13:27:52.048227Z", + "shell.execute_reply.started": "2023-01-09T13:27:52.043403Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.001665064740389263\n" + ] + } + ], + "source": [ + "## Compute correction factor for CubEOT\n", + "CubEOT_corr_fact = aai_agg_emdat/res_df.loc[\"CubEOT\",\"aai_agg\"]\n", + "print(CubEOT_corr_fact)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "a17292bb-05cd-401b-b6f3-9ad9a134ba5e", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:53.503543Z", + "iopub.status.busy": "2023-01-09T13:27:53.503256Z", + "iopub.status.idle": "2023-01-09T13:27:53.508294Z", + "shell.execute_reply": "2023-01-09T13:27:53.507586Z", + "shell.execute_reply.started": "2023-01-09T13:27:53.503503Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#rescale CubEOT impact function\n", + "[impf] = impf_set.get_func(fun_id=2) #get CubEOT\n", + "impf_set.remove_func(fun_id=2) #remove CubEOT\n", + "impf.mdd *= CubEOT_corr_fact\n", + "impf_set.append(impf)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "eab122fa-3cc3-449c-8e6b-d43e759c8c50", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:54.571756Z", + "iopub.status.busy": "2023-01-09T13:27:54.571472Z", + "iopub.status.idle": "2023-01-09T13:27:54.816232Z", + "shell.execute_reply": "2023-01-09T13:27:54.815803Z", + "shell.execute_reply.started": "2023-01-09T13:27:54.571717Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABQEAAAHfCAYAAADgAR4gAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAADUsUlEQVR4nOzdd3hUVf7H8c+kTRJCQqihhN5EBQEBJdIEEQFBxEJRqquu61poirCA4go/EAXdtdFEBRFEBBQRQVFDqAZBhECQFoFQkpBQ0nN/f8zOyCSTkD6Zyfv1PPPklnPP/d5MxHO/95xzTYZhGAIAAAAAAADgtjycHQAAAAAAAACAkkUSEAAAAAAAAHBzJAEBAAAAAAAAN0cSEAAAAAAAAHBzJAEBAAAAAAAAN0cSEAAAAAAAAHBzJAEBAAAAAAAAN0cSEAAAAAAAAHBzJAEBAAAAAAAAN0cSEAAAAACKaMuWLTKZTHaf48ePOzssAABsSAKWsqNHj+ZoHHz00UcOy/7973/PUfbAgQMOy7Zr186u3AMPPJCjTEZGhpYtW6YBAwaoQYMGqlChgsxms0JCQnTjjTfqrrvu0tixY/Xxxx/r5MmThb7Gw4cPa/HixXrqqafUrl07mc3mHNdR2hISEjRnzhx1795dISEhMpvNqlChgkJDQ9WqVSvdd999mjp1qlavXq3ExMRSjS0rK0t79+7V22+/rYceekg33XSTKlWqJC8vLwUEBKhx48YaNGiQ1qxZI8Mwrltfenq63n//fd19992qVauWzGazqlatqg4dOujll1/WhQsX8jz+119/1XvvvafRo0erZcuW8vLysvvu6tevn+9ru3Dhgl5++WV16NBBVatWldlsVq1atdSrVy+9//77Sk9Pz3ddAACUde7ezsvIyNCOHTs0e/Zs9e/fX82bN1dgYKC8vLwUGBioFi1aaOTIkfrhhx8KVX9RXblyRQsWLNDQoUPVrFkzValSRd7e3rbYBg8erMWLFyspKckp8eWXo2Ti9T5z587Ns87Y2FjNmjVLvXv3Vv369VWxYkX5+vqqdu3aCgsL04svvqhff/3V4bHHjx8vcDzZPyNGjCj23xMAoBAMlLo6deoYkmyf0aNHOyx344032pWTZLz33ns5yl26dMnw9PS0Kzd37ly7Mn/++adxyy235Kgvt8/YsWMLfX1dunS5bv2l6YcffjCqVauW72tft25dqcY3Z86cfMfWqVMn48KFC7nWdejQIaNp06Z51lGpUiVjzZo1udZRr169PI+vV69evq7ryy+/NCpVqpRnXc2aNTMOHz5c0F8ZAABllju38/75z3/m+xz333+/cfXq1UKdp6CysrKM2bNnG8HBwfmKLSAgwDhz5kyxx/HDDz/kONexY8eKpZ7rfd58802HdaWlpRnjx483zGZzvuq59957jdjYWLs6jh07VuB4sn+GDx9e8F8oAKDY0RPQCTp16mS3/tNPP+UoEx8f7/Bp8M8//5xj29atW5WZmZnrOTIzM3Xvvffm+nTPncXExOjee+/V+fPnnR1KrrKysvJd9ueff1a/fv0c9giMjY1V586ddfjw4TzruHjxogYOHKhNmzYVONb82rRpkx544AFdvHgxz3KHDh1S586dFRsbW2KxAABQmty5nVeQNssXX3yhUaNGlWA0FqmpqerTp4/Gjx+vhISEfB1z+fJlpaSklHBkznf16lXdeeedmj17tlJTU/N1zLp169S6dWsdOnSohKMDADgDSUAnyN44jI6OzpEECQ8Pd5jocdQ4zN64rFixolq1amVbX79+vfbs2WNXZvTo0dq0aZMOHjyo33//XZs3b9Ybb7yh3r17y9fXt8DXdC1fX1+1a9dOf//737Vo0SKNHj26SPUVxdy5c3X58mXbup+fn1599VVt27ZNhw8f1r59+7R27VpNnTpVt912m1OGKltVq1ZNY8aM0TfffKODBw/qxx9/1N/+9rccMUVERGjDhg05jv/nP/+ps2fP2tbNZrP++9//6uDBg1q7dq1CQ0Nt+zIyMjR69GiHDeCAgACFhYXpueee09KlS9WnT58CXUdycrJGjx6tjIwM27a6detq7dq1OnjwoP7zn//IbDbb9sXGxurZZ58t0DkAACir3L2dJ1n+vz558mR9//33OnjwoDZt2qQBAwbkKLd8+fJchzgXl+HDh+ubb76x2+bl5aVRo0bp66+/1oEDB/Tbb7/p66+/1oQJE1SzZs0SjaekPPvsszp27FiuH0cJ15EjRyo8PNxuW0hIiObNm6c9e/bowIED+vTTT9W2bVu7MmfOnNG9995rGzZdp04dh+d09Pc6cOBAh2Vff/31YvxtAAAKzck9Ecul/fv35+giv2LFCrsy48aNs+3LPqzkxIkTdmU7depkt//uu++22z9+/Hi7/V27ds0zvoSEBGPv3r2Fvr6srCy79alTp+a43uvJfkx+h6Bm165dO7t6pk2blmf5P/74w4iJibHbNnz4cLs6Ro0aZbf/6tWrho+Pj21/gwYNctQbFhZmV8e///1v275FixYZc+fONVJSUhzG9Mwzz+T4/U2YMMGuzLFjxwwPDw+7MlOmTLErs3Hjxhz1fPTRRznOl/37y3791/sulixZkuM833//vV2Zl156yW6/h4eHcfz48TzrBQDAFbhzO2/mzJnGkiVLjIyMDIf7+/fvn+Pa33nnnRzliqud99VXX+U4X8WKFY2ffvop12PS0tKMN9980244cH6H8WafMmXq1Kl2+3OrJzY21njmmWeMhg0bGmaz2ahRo4bx0EMP5fo9OKon+7muZ8uWLTnqqFu3rnHq1CmHv5OePXvmKH+9drOjYcIM+wWAso2egE7QokULValSxW5b9qe8164//vjjCgoKcrgvNTVVO3futDs2+xPo7EMyr1y5kudwjkqVKqlly5Z5X0QenNmbLrvs137p0qU8yzds2FB16tSx23bnnXfarWd/6rljxw6lpaXZ1o8dO6Y///zTtp6SkqLdu3fnWufIkSP17LPP2vWOu9YjjzySY1v2Ca1XrVqV4zt98MEH7dZ79OihypUr221buXJljrqL+v1lr7Nq1arq1q2b3baHHnrIbj0rK0urVq0q0nkBACgL3Lmd98ILL2jYsGHy9PR0uH/o0KE5tpXkSzhmzpyZY9u8efNy/I6u5e3treeee04hISElFte1fv31V91000166623dPToUaWmpurs2bNasWKF2rZtq88++6xEzvvmm2863FarVq0c2729vbVo0SL5+PjYbX/rrbcKNAQcAFD2kQR0ApPJpDvuuMNu27UNvqtXryoyMtK23rVrV4WFhdnWr01C7dixI8ccH9kbPtkbObt27dLtt9+uuXPnaufOnW49J0r2a3/zzTc1cOBAffjhhzp48GC+Gjbdu3e3W88+rMfRUIhrt23fvt3uO6pYsaJuvfXWfF+D4WC4UIMGDezWd+3aZbfu4eGh5s2b220zmUxq0aJFnscVh+x1Zj+ndVv2ZGNJxAIAQGkrz+28/LRZikt8fLy2bdtmt6127doaNmxYiZyvsIYOHaoLFy443JeRkaFhw4Zp3759xXrOjIyMHG9oDg4OVr9+/XI9pnbt2urZs6fdtvj4eP3yyy/FGhsAwLlIAjpJ9gbc/v37bZMZb9u2zTafmtlsVrt27dS5c2db2Wsbh9mfLPv4+Kh9+/Z22/r375/j/Dt37tTzzz+vDh06qGLFimrTpo2ef/55bd26tWgXVsbcd999dutZWVn64osvNHLkSLVo0UKBgYHq1q2bpk+friNHjjiso3bt2mrSpIndtmvnV3E04fe127Lv79y5s7y8vPJ9DR9++KHduoeHR45efseOHbNbr1y5ssNzVK9e3W49Nja2WG8OkpOT7eYldHROyfLEOTg42G5b9msAAMBVldd2XvY2S2BgoO65554SOde+fftyvDCla9euufZSdJarV69q1KhRCg8PV0RERI65stPS0vTiiy9et56XX35ZJpPJ4adSpUp2ZWNiYnL0wGzTps1125/t2rXLsW3//v3XjQ0A4DpIAjrJtY09yZKcsiaWrm38tWvXTr6+vnblDx48aHuimL1xaC1/rbZt22rMmDG5xpKRkaE9e/Zo7ty5uuOOO3THHXfojz/+KNyFlTH/+Mc/1LFjx1z3X7lyRVu2bNGUKVPUrFkzjRo1SleuXMlRLrchwRkZGdq+fbsky4s9PDw87PZLOb+j7HXlZdWqVXrvvffstj399NM5nqonJibarfv5+Tmsz9/fP8e2673BtyCyx1GQWIozDgAAnKk8tvPeeOONHC/omDZtmipWrFjs55Kk8+fP59iWfUqXsqBfv35auHChwsLCdPvtt2vBggW699577cps2LDB4fUUlqO6HD2Uza5GjRo5tuXWixEA4JpIAjpJ69atFRAQYLfN2ii8tnFofZJ866232iVNwsPDlZmZmWMYRPZGp9WcOXO0aNEi1atX77qxbd26Vd26dXNqUmbatGkyDMP2OX78eKHqMZvN2rRpk1588cXrNkKzsrK0ePFiDR48OMe+3JKAe/bssb19uEePHrY5dg4cOKC4uDi7JGFudeVm8eLFGjRokN3QmnvuuUdz5szJUTb78BtHw3Fy216cczg6qj+/sZSluSQBACiK8tbOe/XVVzV27Fi7bX/729/0/PPPOyxfHO283NoXZY2jt/Zm7w1oGEaOuR+dwVV+pwCAwiMJ6CReXl66/fbb7bb99NNPSk9Pt0saWRuH3t7euu2222zbf/75Z0VGRtoSUNnLOzJy5EgdPXpUP/30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Uc+ZM2eMGjVq5Ot4Ly8v47vvvnMYT5cuXQocT3YbN240vLy88nVsSEhIrn+7AAC4Mndr5xWmjTd8+PAc9RRXO88wDCMlJcXo1atXkdueQ4cOve4xJpPJbn3q1Kl2dfzwww8O21x51ent7W3s2bPnuvVc79O/f/8cv5srV64YYWFhBa6rZs2aRlRU1HV/98eOHcvX9w0AKDvo3+1kuT3Vbdy4sV1PL6vsk0xfr7xkGeJQkMmZmzVrpg0bNhTrCyOcpXLlygUqf++992r+/Pm57nc0nNfPz89uvpTcvtO85gMsDiEhIfrpp59sw5FzExQUpM8//1w9evQosVjuuusuff7559edu6hp06b68ccfc/3bBQDAldHOK3lms1nr16/XrFmzHA7rdSQgICDH9c+cOTPHvIlWJpNJr776ao4XcOTHggULVLFiRYf7vLy89OGHHzp8SV1x8Pf31w8//KBx48bl+nK57Pr27as9e/aoWbNmJRITAMC5SAI6WVhYmMMXPuTWaCxoecnyZtnTp0/ro48+0pNPPqmwsDDVrl1b/v7+8vDwUEBAgBo1aqT7779fH330kfbt26cmTZoU/qLKkGXLlun333/X22+/raFDh6pt27aqVq2azGazPD09FRQUpJtvvlmjRo3Sd999p7Vr18rf3z/X+rp3755j22233SZvb2/beoMGDRQaGpqjXEknASVLUu23337Te++9p7vuuks1atSQt7e3KleurHbt2mnq1Kk6cuSI3RCYktK/f39FR0dr6tSpateunSpXrixvb2/VqFFDd911l9577z3t37//uklLAABcFe280mEymTR+/HjFxMTogw8+0KBBg9SkSRNVqlRJnp6eqlixopo3b65BgwZp0aJFOnXqVI6kap06dbRz5049/vjjqlOnjq3NMnDgQEVERBT6hSddunTR77//rieeeEL16tWTj4+PqlWrpgcffFC7du3SkCFDiuNXkCtvb2/Nnj1bx48f18yZM9WrVy+FhobK399fZrNZISEhuv322zVhwgTt2bNH69atc+q84ACAkmUyDAfvqAcAAADKgGPHjmnTpk3auXOndu7cqd9//12ZmZmaPn26Jk+eXOh6t23bppkzZyoiIkKXL19WgwYNNHjwYI0fP95teskBAABcixeDAAAAoMyaN2+e5s2bV6x1Ll26VMOHD1dmZqZq166t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esrsnICvv/66tm/fLsMwcny2b9+uOXPm2MrWrVtX69ev17Jly1S9enWlpKRoypQpat26dYlcBACUK9ZegO3akQAEUOJoAwIAALiHfCcBV6xYIZPJpFtuuUXr169XVFSUvv32W7Vv316GYWj58uU5jhk0aJAOHjyoUaNGSZIOHDhQfJEDQHnFUGAApYg2IAAAgHvI93DgChUqKCUlRfv27dONN95o237o0CHdcMMN8vPz05UrV3I9/qefftITTzyhgwcPFj1qF8UwEQDFonlzy5Dgdeukvn2dHQ2AEubs9gNtwPxx9vcEAABcT5kdDmxlMpnyXM9N586dtXfv3oKeDgBwrQsXLAlASerY0bmxAChXnN0GXL9+vXr06KHKlSurQoUKatOmjd5++21lZWUVus4VK1aoV69eqlGjhsxms2rXrq1evXpp0aJFRY4XAACgrMl3ErBx48aSpOHDh+u7775TdHS0Nm3apOHDh9vtz4t10mgAQCFFRFh+3nCDVLmyc2MBUC6UhTbgzJkz1adPH23evFnBwcFq3Lix9u7dq2eeeUYDBgwocCIwNTVV/fv318MPP6xvv/1WAQEBatWqlTw9PfXdd9/pnXfeKVK8AAAAZVG+X9P20EMP6bffflNkZKR69eplt89kMunhhx8u9uAAANkwHyCAUubsNuC2bdv00ksvycPDQ5988okGDx4sSdq7d6/uvvturV27Vm+88YbGjRuX7zpHjhyptWvXqnPnzvrggw/UrFkz277z589rz549xX4dAAAAzpbvOQFTU1PVpUsX7dy5M8e+2267TVu2bKGn33UwVwyAIgsLs/QG/PBD6X+9cAC4N2e3H5zdBuzTp4/Wr1+vxx9/XO+//77dvmXLlmno0KGqUqWKzpw5I29v7+vWt2HDBt1zzz1q3ry5IiMj5efnVyxxOvt7AgAArqfMzgloNpu1ZcsWzZgxQx07dlTjxo3VsWNHzZw5U99//32ZTwBmZmZq/vz56tKli6pWrSpfX1/Vq1dP9913n9asWePwmG3btql///6qVq2a/Pz81KJFC02fPl0pKSmlHD0ASEpJkXbvtizTExBAKXFmGzApKUmbNm2SJI0ePTrH/gcffFCBgYGKi4vTDz/8kK86586dK0maPHlysSUAAQAAXEG+ewK6soSEBPXu3Vvbt2+XyWRS06ZNFRAQoNOnT+vM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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "axs = impf_set.plot()\n", + "fig = axs[0].get_figure()\n", + "fig.set_figwidth(15)\n", + "axs[1].set_xlabel('Normalized intensity (-)')\n", + "axs[1].set_xlim((0,2));\n", + "axs[1].set_ylim((0,1));" + ] + }, + { + "cell_type": "markdown", + "id": "af71639d-c8a5-4bf2-b7f0-b0a6aae43740", + "metadata": {}, + "source": [ + "## Comparison with EM-DAT damages\n", + "First, damages need to be calcutated, using the rescaled CubEOT impact function and saved by enabling saveimp=True.\n", + "Secondly, extratropical storm damage needs to be downloaded from the EM-Dat database" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "5ec861d6-a7ed-4d61-92d8-1cd022f8e9cc", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:57.259636Z", + "iopub.status.busy": "2023-01-09T13:27:57.259315Z", + "iopub.status.idle": "2023-01-09T13:27:57.707947Z", + "shell.execute_reply": "2023-01-09T13:27:57.707205Z", + "shell.execute_reply.started": "2023-01-09T13:27:57.259596Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/openpyxl/styles/stylesheet.py:226: UserWarning: Workbook contains no default style, apply openpyxl's default\n", + " warn(\"Workbook contains no default style, apply openpyxl's default\")\n" + ] + } + ], + "source": [ + "#read EMDAT data\n", + "fnemdat = 'emdat_EU_1960_2022_ETC.xlsx'\n", + "ETC_data = pd.read_excel(data_folder+fnemdat,header=6)\n", + "\n", + "# keep only damage data\n", + "keep = ['Dis No','Event Name','Seq', 'Year','Country','Region','Dis Mag Value','Start Year', 'Start Month', 'Start Day', 'End Year', 'End Month',\n", + " 'End Day', 'Reconstruction Costs (\\'000 US$)',\n", + " 'Insured Damages (\\'000 US$)', 'Total Damages (\\'000 US$)','Total Damages, Adjusted (\\'000 US$)']\n", + "ETC_small = ETC_data[keep]\n", + "\n", + "#only keep data before 2010\n", + "ETC_small = ETC_small.where(ETC_small['Start Year']<=2010).dropna(how='all',axis=0)\n", + "\n", + "#correct for divergeing storm names\n", + "ETC_small['Event Name'][(ETC_small['Event Name'] == 'Cilly, Désirée et Fanny')] = 'Cilly, Desiree, Fanny'\n", + "ETC_small['Event Name'][(ETC_small['Event Name'] == 'Jeannet')] = 'Jeanett'\n" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "c85125a4-fd2c-4a7f-b06a-4de1ee471f08", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:27:59.443427Z", + "iopub.status.busy": "2023-01-09T13:27:59.443030Z", + "iopub.status.idle": "2023-01-09T13:27:59.547581Z", + "shell.execute_reply": "2023-01-09T13:27:59.547139Z", + "shell.execute_reply.started": "2023-01-09T13:27:59.443373Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n" + ] + } + ], + "source": [ + "#get days of actual storms\n", + "strm_idx = ETC_small['Event Name'].unique() #storm event names\n", + "storm_days_dict = dict() #store storm days\n", + "storm_damage_dict = dict() #store total damage over the domain per storm event\n", + "storm_days_list = []\n", + "\n", + "for stormname, group in ETC_small.groupby('Event Name'):\n", + "\n", + " if len(group['Start Month'].unique()) > 1: #if the storm spans over two separate months, take the biggest day to start the time index\n", + " dft_start = pd.DataFrame({\"year\": group['Start Year'].min(), \"month\": group['Start Month'].min(), \"day\": group['Start Day'].max()},index=['start'])\n", + " else: #else take the smallest day to start the time index\n", + " dft_start = pd.DataFrame({\"year\": group['Start Year'].min(), \"month\": group['Start Month'].min(), \"day\": group['Start Day'].min()},index=['start'])\n", + " if len(group['End Month'].unique()) > 1: #if the storm spans over two separate months, take the smallest day to end the time index\n", + " dft_end = pd.DataFrame({\"year\": group['End Year'].max(), \"month\": group['End Month'].max(), \"day\": group['End Day'].min()},index=['end'])\n", + " else: #else take the biggest day to end the time index\n", + " dft_end = pd.DataFrame({\"year\": group['End Year'].max(), \"month\": group['End Month'].max(), \"day\": group['End Day'].max()},index=['end'])\n", + "\n", + " #create date range index\n", + " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", + " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", + " storm_time_idx = pd.date_range(start=dti_start,end=dti_end)\n", + "\n", + " #write to dict\n", + " storm_days_dict[stormname] = storm_time_idx\n", + " storm_damage_dict[stormname] = 1000*group[\"Total Damages, Adjusted ('000 US$)\"].sum()\n", + " storm_days_list.append(storm_time_idx)\n", + "\n", + "#create long date range index including all storm days\n", + "#storm_days_idx_long = storm_days_list[0].union_many(storm_days_list[1:]) union_many is deprecated\n", + "storm_days_idx_long = storm_days_list[0]\n", + "for dti in storm_days_list[1:]:\n", + " storm_days_idx_long = storm_days_idx_long.union(dti)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "ad2b7c79-aef9-44d2-a418-632f159a3ca8", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:28:01.393756Z", + "iopub.status.busy": "2023-01-09T13:28:01.393330Z", + "iopub.status.idle": "2023-01-09T13:28:10.622022Z", + "shell.execute_reply": "2023-01-09T13:28:10.621175Z", + "shell.execute_reply.started": "2023-01-09T13:28:01.393705Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-28 11:47:53,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-28 11:47:57,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + } + ], + "source": [ + "#Compute statistics with respect to EM-DAT events\n", + "impflist = ['CubEOT','Sw2010']\n", + "\n", + "#preprocessing\n", + "gst_fact = 1\n", + "qt = 0.98\n", + "cuts=[1.5E5]\n", + "mask_abs = 15\n", + "\n", + "#preproc field\n", + "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cuts[0],'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-')]\n", + "era_bn_proc = make_fn(processings,bnera5)\n", + "\n", + "df_dict = {}\n", + "for impfname in impflist:\n", + "\n", + " ##filenames\n", + " pp_funcname = str(pp_func_dic[impfname]).split(\" \")[1]\n", + " savenameimp = make_fn(['imp',impfname,pp_funcname],era_bn_proc)\n", + " impcsvfn = results_folder+'impact/'+savenameimp+'.csv'\n", + " impmatfn = results_folder+'impact/'+savenameimp+'.npz'\n", + "\n", + " ## open impacts\n", + " #past\n", + " imp = Impact()\n", + " imp = imp.from_csv(impcsvfn)\n", + " imp.imp_mat = imp.read_sparse_csr(impmatfn)\n", + " imp_mat = imp.local_exceedance_imp(return_periods=[met])\n", + " imp_mat = imp_mat.reshape((imp_mat.shape[1],))\n", + "\n", + " #select emdat days\n", + " # convert to same time format, find storm days that were missed and drop them\n", + " imp.event_name = pd.to_datetime(imp.event_name).strftime('%Y-%m-%d %H:%M')\n", + " imp_emdat = imp.select(event_names=storm_days_idx_long.strftime('%Y-%m-%d %H:%M'))\n", + " missed = storm_days_idx_long.strftime('%Y-%m-%d %H:%M').difference(imp.event_name) #difference between model storm days and actual storm days\n", + " new_id = storm_days_idx_long.drop(missed)\n", + "\n", + " #initiate df\n", + " modelled_day_impacts = pd.DataFrame({\"impacts\":imp_emdat.at_event.copy()},index=new_id) #storm damage modelled\n", + " observed_vs_modelled_df = pd.DataFrame(columns=['modelled','observed'],index=storm_days_dict.keys())\n", + "\n", + " #resample to have one day by event\n", + " for stormname, storm_days in storm_days_dict.items():\n", + " storm_days = storm_days.strftime('%Y-%m-%d %H:%M')\n", + " #if a storm day is missed\n", + " for miss_day in missed.tolist():\n", + " if miss_day in storm_days.tolist():\n", + " miss = True\n", + " else:\n", + " miss = False\n", + " if miss:\n", + " storm_days = storm_days.drop(missed)\n", + " #modelled_imp_dict[stormname] = modelled_day_impacts.loc[storm_days].sum()\n", + " observed_vs_modelled_df.loc[stormname,'modelled'] = format(modelled_day_impacts.loc[storm_days].sum().values[0],'.2E')\n", + " observed_vs_modelled_df.loc[stormname,'observed'] = format(storm_damage_dict[stormname],'.2E')\n", + " df_dict[impfname] = observed_vs_modelled_df\n", + "\n", + "obs_vs_mod_df = pd.concat(df_dict,axis=1)\n", + "obs_vs_mod_df = obs_vs_mod_df.astype(np.float64)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "6d945e8e-4633-43cf-98e6-523b1659b96d", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:30:09.443190Z", + "iopub.status.busy": "2023-01-09T13:30:09.442963Z", + "iopub.status.idle": "2023-01-09T13:30:09.455886Z", + "shell.execute_reply": "2023-01-09T13:30:09.455482Z", + "shell.execute_reply.started": "2023-01-09T13:30:09.443166Z" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CubEOTSw2010
modelledobservedmodelledobserved
Anatol6.560000e+084.760000e+095.960000e+084.760000e+09
Calvann2.820000e+084.490000e+081.340000e+084.490000e+08
Cilly, Desiree, Fanny3.610000e+081.080000e+094.030000e+081.080000e+09
Emma1.600000e+092.270000e+095.840000e+082.270000e+09
Erwin1.090000e+097.820000e+092.070000e+097.820000e+09
Jeanett1.660000e+093.810000e+091.020000e+093.810000e+09
Klaus1.000000e+096.440000e+096.550000e+086.440000e+09
Kyrill5.590000e+091.180000e+103.630000e+091.180000e+10
Lothar6.260000e+091.850000e+104.240000e+091.850000e+10
Martin1.760000e+096.670000e+098.410000e+086.670000e+09
Xynthia6.940000e+087.550000e+094.170000e+087.550000e+09
\n", + "
" + ], + "text/plain": [ + " CubEOT Sw2010 \n", + " modelled observed modelled observed\n", + "Anatol 6.560000e+08 4.760000e+09 5.960000e+08 4.760000e+09\n", + "Calvann 2.820000e+08 4.490000e+08 1.340000e+08 4.490000e+08\n", + "Cilly, Desiree, Fanny 3.610000e+08 1.080000e+09 4.030000e+08 1.080000e+09\n", + "Emma 1.600000e+09 2.270000e+09 5.840000e+08 2.270000e+09\n", + "Erwin 1.090000e+09 7.820000e+09 2.070000e+09 7.820000e+09\n", + "Jeanett 1.660000e+09 3.810000e+09 1.020000e+09 3.810000e+09\n", + "Klaus 1.000000e+09 6.440000e+09 6.550000e+08 6.440000e+09\n", + "Kyrill 5.590000e+09 1.180000e+10 3.630000e+09 1.180000e+10\n", + "Lothar 6.260000e+09 1.850000e+10 4.240000e+09 1.850000e+10\n", + "Martin 1.760000e+09 6.670000e+09 8.410000e+08 6.670000e+09\n", + "Xynthia 6.940000e+08 7.550000e+09 4.170000e+08 7.550000e+09" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "obs_vs_mod_df" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "90afa4a6-f805-4478-bdb3-47d20995d871", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:28:12.020019Z", + "iopub.status.busy": "2023-01-09T13:28:12.019623Z", + "iopub.status.idle": "2023-01-09T13:28:12.793876Z", + "shell.execute_reply": "2023-01-09T13:28:12.793407Z", + "shell.execute_reply.started": "2023-01-09T13:28:12.019959Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "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y8/PD9HR0drt5eXl+PHHH02avyWKIhITE7Fz50507NgRCoUCnTp10lvX3d0d3bp1A3B3WYv6NOXBwcFwc3Mz+fMaEhERYbS9goIC7eiXpq69MHAREZFTCwsIM7o9PCDcRj2xLM2deXUvp3Xu3BmhoaG4cuUKTp48iZ9++gn333+/duRJE64OHz5s0vyt5557Dp9//jkCAwPxzTffICzM+O9y0KBBAIBjx47p3a4p19Qzl6ntderUCV27drVIm03FwEVERE4tMjAScWFxkAkySblMkCEuLA4RgfYd+dDnxo0bEEXRaJ3U1FQAuiM3mgC1YsUK1NbWSkawhg4dCldXV6SkpOD777+HTCbD8OHD9R5/0aJFeO+99+Dj44MDBw6gV69eDfZ78uTJANRLR9y6dUuy7datW9oFT6dOndrgsUzx0EMPwdXVFefPn0daWprO9g0bNgAApkyZYpH2zMHARURETk8+RY7Y0FhJWWxoLORT5HbqkXGff/457r33Xqxbtw5FRUWSbTdv3sSSJUu0E9cTExMl2zUBa9euXZL3AODt7Y3+/fvj8OHDUCqVuPfee/XOpXrjjTfw73//G15eXtizZw8GDBhgUr+nTJmCe+65B0VFRUhMTMSdO3cAALdv30ZiYiKKiorQu3dv/PnPfzbtF9GATp06aT//E088gd9++w2A+lLomjVr8M0338DT0xMvvPCCRdozh6u9O0BERGRt/l7+ODDzALKKspBdnI3wgPBmObKloXlEz7x58zBv3jyEhISgbdu2KCkpwW+//aa9jPjCCy/gkUcekeyrGeESRRE+Pj7o37+/ZPvIkSO18770zd8qLCzUBhQfHx+88sorBvu5bds2dOjQQfteJpNh69atGDFiBLZv3w6FQoHw8HBkZ2ejtLQUAQEB2Lx5s/YSZ10PP/yw9hKgZj0vlUqFoKAgbZ3p06fj3Xfflez33//+FydPnsSZM2cQGRmJXr164fr16ygoKIBMJsP69eu1c8vsiYGLiIhajIjAiGYdtDSeeeYZ9O3bF/v378exY8dw+fJlnD17Fq6urujevTuGDBmCuXPn6r0cGBoaii5duuDy5csYNmwYZDLppdSRI0dizZo1APTP36qqqtJezrx+/TquX79usJ91197S6N27N9LT07Fs2TLs378fP//8M9q2bYtHH30US5YsQZcuXfQeq7S0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yAoYuIioRQkzvgwXwrkMFxFZAQMXEbUokZHqCfIy6YLckMnU5RG8WZGIrICBi4haHLkciJUuw4XYWHU5EZE1cFkIImpx/P2BAwfUE+Szs9WXETmyRUTWxMBFRC1WRASDFhHZBi8pEhEREVkZAxcRERGRlTFwEREREVkZAxcRERGRlTFwEREREVkZAxcRERGRlTFwEREREVkZA5edJSUlISoqCjExMfbuCjmQzExg/371wp1ERNT8CaIoivbuBAFKpRJ+fn4oLS2Fr6+vvbtDzVRxMZCQACQn3y2Li1M/ksbf3379IiJqqUz9/uYIF5EDSUgAFAppmUIBTJ9un/4QEZFpGLiIHERmpnpkS6WSlqtU6nJeXiQiar4YuIgcRE6O8e3Z2bbpBxERNR4DF5GDCAszvj083Db9ICKixmPgInIQkZHqCfIymbRcJlOXR0TYp19ERNQwBi4iByKXA7Gx0rLYWHU5ERE1X6727gARmc7fHzhwQD1BPjtbfRmRI1tERM0fAxeRA4qIYNAiInIkvKRIREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBFREREZGUMXERERERWxsBlZ0lJSYiKikJMTIy9u0JERERWIoiiKNq7EwQolUr4+fmhtLQUvr6+9u4OERERmcDU72+OcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZUxcBERERFZGQMXERERkZW52rsDRNR4mUWZyCnOQXhAOCICI+zdHSIiagADF5EDKS4vRsL2BCTnJGvL4sLiIJ8ih7+Xvx17RkRExvCSIpEDSdieAEWuQlKmyFVg+vbpduoRERGZgoGLyEFkFmUiOScZKlElKVeJKiTnJCOrKMtOPSMiooYwcBE5iJziHKPbs4uzbdQTIiJqLAYuIgcRFhBmdHt4QLiNekJERI3FwEXkICIDIxEXFgeZIJOUywQZ4sLieLciEVEzxsBF5EDkU+SIDY2VlMWGxkI+RW6nHhERkSm4LASRA/H38seBmQeQVZSF7OJsrsNFROQgGLiIHFBEYASDFhGRA+ElRSIiIiIrY+AiIiIisjIGLiIiIiIrY+CygK+//hqDBw+Gr68v2rVrhwkTJuDs2bP27hYRERE1EwxcZjp48CAmT56MiIgIbNu2DR988AGuX7+OBx98EIWFhfbuHhERETUDvEvRTHK5HN27d8enn34KQRAAANHR0QgLC0NycjISExPt3EMiIiKyN45wmamqqgo+Pj7asAUAbdq0AQCIominXhEREVFz4pSBKy8vD+vWrcPcuXMRHR0NV1dXCIKAFStWmLT/vn37EBsbi4CAALRu3Rr9+/fHu+++i9raWp26c+bMwfnz5/HOO++gpKQEly9fxvz589G1a1dMnjzZ0h+NiIiIHJBTXlJ8++238fbbbzdp39WrV2PhwoUAgNDQUHh7eyM9PR3z58+HQqHAjh074OJyN6c+8MAD2L59O2bOnIkFCxYAAEJCQqBQKLQjXURERNSyOeUIV1BQECZOnIhly5Zh//79mDJlikn7paWl4ZVXXoGLiws2bdqEnJwcpKen4/Tp02jfvj127dqFN954Q7LPsWPHMGvWLMycORMKhQK7du1CcHAwxowZg8uXL1vj4xEREZGDEcQWMNHo8ccfxyeffILly5dj8eLFButNmDAB+/btw7x58/DBBx9Itm3atAkzZsxAYGAgrly5Ajc3NwDAgAED0KFDB+zZs0db986dOwgODkZCQgLeeustk/qoVCrh5+eH0tJS+Pr6Nv5DEhERkc2Z+v3tlCNcTaFUKqFQKACo52XVFx8fD19fXxQVFeHQoUPa8oyMDPTv319St1WrVujRoweysrKs22kiIiJyCAxcfzhz5gyqqqrg6empE6AAwM3NDTExMQCA48ePa8uDg4Nx8uRJSd2ysjKcP38eISEh1u00EREROQQGrj9oRqO6desGV1f99xKEhoZK6gLAc889h/3792PevHk4ePAgduzYgXHjxuHWrVt46qmnrN9xIiIiavac8i7FpigpKQEA+Pv7G6yj2aapCwBPP/00PD09sXbtWnz55Zfw9PREdHQ0UlJS0KdPH4PHqqysRGVlpfZ9aWkpAPWlTSIi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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ax = obs_vs_mod_df['CubEOT'].plot.scatter(x='observed', y='modelled',label='CubEOT',color='blue')\n", + "obs_vs_mod_df['Sw2010'].plot.scatter(ax=ax,x='observed', y='modelled',label='Sw2010',color='green')\n", + "ax.set_xscale('log')\n", + "ax.set_yscale('log')\n", + "ax.set_xlim([1E8,2E10]);\n", + "ax.set_ylim([1E8,2E10]);" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "f8201619-4277-49a5-b0bf-fd7d1b1d256c", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T13:32:43.848562Z", + "iopub.status.busy": "2023-01-09T13:32:43.848260Z", + "iopub.status.idle": "2023-01-09T13:32:43.856142Z", + "shell.execute_reply": "2023-01-09T13:32:43.855454Z", + "shell.execute_reply.started": "2023-01-09T13:32:43.848528Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "78.12424109673802\n" + ] + } + ], + "source": [ + "from sklearn.metrics import mean_absolute_percentage_error,mean_absolute_percentage_error\n", + "impf = 'Sw2010'\n", + "y_true = obs_vs_mod_df[impf]['observed']\n", + "y_pred = obs_vs_mod_df[impf]['modelled']\n", + "met = mean_absolute_percentage_error(y_true,y_pred)\n", + "print(100*met)" + ] + }, + { + "cell_type": "markdown", + "id": "8a284956-c71b-4f6a-b23b-01c5e15ea92f", + "metadata": {}, + "source": [ + "## Damage calculation\n", + "Use stack=True to stack model members on top of each other, set stack=False to consider each member separately.\n", + "Use savehaz, saveimpcsv, saveimpmat to save hazards or/and imapcts.\n", + "1) Loop over impact functions\n", + "2) Loop over scenarios\n", + "3) Loop over climate models\n", + "4) Loop over model members\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "c384ad5e-2d3c-4644-8bc4-04293257edc3", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:26:18.485567Z", + "iopub.status.busy": "2023-01-09T08:26:18.485122Z", + "iopub.status.idle": "2023-01-09T08:26:18.495874Z", + "shell.execute_reply": "2023-01-09T08:26:18.494919Z", + "shell.execute_reply.started": "2023-01-09T08:26:18.485510Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#select climate models, used scenarios (historical, ssp585,...), impact functions and calibration type\n", + "#climate models\n", + "#modlist_allscen represents GCMs for which at least 3 members for scenarios ssp126, ssp245, ssp357, and ssp585 are available\n", + "#modlist_ssp585 contains the GCM names for which only at least one member of the ssp585 is available\n", + "modlist = modlist_allscen[:4]#+modlist_ssp585\n", + "\n", + "#scenarios\n", + "scen_used= ['historical','ssp126','ssp245','ssp370','ssp585']\n", + "#scen_used= ['historical','ssp585']\n", + "pastname = 'historical'\n", + "\n", + "timeres = 'day' #time dimension of the netcdf\n", + "\n", + "#members\n", + "nmems = 3\n", + "stack = False #stack members or consider them separately\n", + "\n", + "#impact functions\n", + "impf_dict = impf_dict # dictionary mapping impact functions names to their ids\n", + "impf_set = impf_set # impact function set\n", + "pp_func_dic = pp_func_dic # dict with the preprocessing functions for the impact functions\n", + "\n", + "#regions\n", + "#reglist = ['EU', 'BI', 'IP', 'WEU', 'CEU', 'MED', 'SC', 'EEU']\n", + "reglist = ['EU']\n", + "#preprocessing\n", + "gst_fact = 1.00\n", + "qt = 0.98\n", + "cut=1.5E5\n", + "mask_abs = 15 #mask everything below 15 m/s\n", + "\n", + "#naming\n", + "bnSWM = 'bias_corrWG10_SWM_br_day_EU_winE' #base name of sfcWindmax files\n", + "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cut,'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-')]\n", + "bnSWM_proc = make_fn(processings,bnSWM) #basename including preprocessing to save data\n", + "\n", + "#climada constants\n", + "haz_type = 'WS'\n", + "haz_id = 1\n", + "dist_th = 300 #const treshold in km for assign centroids\n", + "\n", + "#saving\n", + "savehaz = True #save hazard file, needed for later uncertainty and sensitivity quantification\n", + "saveimpcsv = False #save impact csv, needed to compute boxplots, impact maps and EFCs\n", + "saveimpmat = False #save impact matrix, needed to compute impact maps\n", + "savestats = False #save write stats in a pandas dataframe\n", + "metrics = ['aai_agg',1,10,15,30] # impact metrics to be computed, select aai_agg for Average Annual Damage, and integers for rps" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "40fb7c32-b4d1-43ed-ac31-9514c8fec44a", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:26:19.956814Z", + "iopub.status.busy": "2023-01-09T08:26:19.956612Z", + "iopub.status.idle": "2023-01-09T08:26:19.972281Z", + "shell.execute_reply": "2023-01-09T08:26:19.971537Z", + "shell.execute_reply.started": "2023-01-09T08:26:19.956787Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#initiate df to save results\n", + "if stack:\n", + " iterrows = [reglist,impf_dict.keys(),scen_used,modlist]\n", + " row_idx= pd.MultiIndex.from_product(iterrows,names=[\"reg\",\"impf\",\"scen_used\",\"model\"])\n", + " res_df = pd.DataFrame(columns=metrics,index=row_idx)\n", + " iterrowst = [reglist,impf_dict.keys(),scen_used,modlist]\n", + " row_idxt= pd.MultiIndex.from_product(iterrowst,names=[\"reg\",\"impf\",\"scenario\",\"model\"])\n", + "else:\n", + " iterrows = [reglist,impf_dict.keys(),scen_used,modlist,range(nmems)]\n", + " row_idx= pd.MultiIndex.from_product(iterrows,names=[\"reg\",\"impf\",\"scen_used\",\"model\",\"member\"])\n", + " res_df = pd.DataFrame(columns=metrics,index=row_idx)\n", + " iterrowst = [reglist,impf_dict.keys(),scen_used,modlist,range(nmems)]\n", + " row_idxt= pd.MultiIndex.from_product(iterrowst,names=[\"reg\",\"impf\",\"scenario\",\"model\",\"member\"])\n", + "\n", + "res_df = res_df.sort_index()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "bec09316-3d9f-4c91-b131-9a641a5822a5", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:26:32.669862Z", + "iopub.status.busy": "2023-01-09T08:26:32.669567Z", + "iopub.status.idle": "2023-01-09T08:26:54.768449Z", + "shell.execute_reply": "2023-01-09T08:26:54.767734Z", + "shell.execute_reply.started": "2023-01-09T08:26:32.669831Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08311566699995865\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0817263339999954\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08336274999999205\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0656817500000102\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06836987500003033\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06312700000000859\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06253812500000322\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06816337499998326\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06373341599999094\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06081966699997565\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06609133299997438\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06236216700000341\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06606841699999677\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0719252499999925\n", + "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0630985829999986\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08434541600001921\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08331304199998613\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08273641599998882\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09069308300001921\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08079683300002216\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08295166599998538\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08663074999998344\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08053350000000137\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08191041700001733\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0920070829999986\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0871764160000339\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08163983399998642\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.1154730000000086\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08384462499998335\n", + "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08078991700000415\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08385591699999395\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08475795900000094\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08456891600002336\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07501262499999939\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07138620899996795\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06866237499997396\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08145633399999497\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07523149999997258\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07576358299996855\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07395116700001836\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06779779100003225\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06956945799998948\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08138087500003621\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0714784170000371\n", + "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07554870799998525\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09719433399999389\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09335504199998468\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09688354099995422\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.10981912500000135\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08605412499997556\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07447049999996125\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08977704099999073\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08861058299999058\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07707679100002451\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08917566600001692\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08554370799998878\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07315995799996244\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09316820800000869\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0956266670000332\n", + "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0772387500000491\n" + ] + } + ], + "source": [ + "##main calculation cell.\n", + "\n", + "for modid, modname in enumerate(modlist):\n", + " start_time = timer()\n", + "\n", + " #filename of particular model\n", + " fnSWM = bnSWM[:14]+modname+bnSWM[13:]+\".nc\"\n", + "\n", + "#make_fn([modname],bnSWM,filetype=\".nc\")\n", + "\n", + " #open netcdf\n", + " ncdf = xr.open_dataset(data_folder+fnSWM)\n", + " latres, lonres = get_lat_lon_res(ncdf)\n", + " latout = ncdf.lat\n", + " lonout = ncdf.lon\n", + "\n", + "\n", + " #select number of members to be considered\n", + " if stack:\n", + " nmems=1\n", + " else:\n", + " nmems = len(ncdf.member)\n", + "\n", + " for scen in scen_used:\n", + " ncdfw = ncdf[[pastname,scen]]\n", + "\n", + " #apply gust factor\n", + " gust_ds = gst_fact*ncdfw\n", + " #iterate over the members\n", + " for imem in range(nmems):\n", + "\n", + " #combine members or take them separately\n", + " if stack:\n", + " mem_da = gust_ds\n", + " else:\n", + " mem_da = gust_ds.sel(member=imem)\n", + "\n", + " for impfname,if_id in impf_dict.items():\n", + "\n", + " #get processing func\n", + " preprocess_func = pp_func_dic[impfname]\n", + " pp_funcname = str(preprocess_func).split(\" \")[1]\n", + "\n", + " #preprocess fields\n", + " gust_pp = preprocess_func(mem_da,qt,mask_abs=mask_abs,cutarea=cut,timeres=timeres,pastname=pastname,futname=scen,stack=stack)\n", + "\n", + " if scen != 'historical':\n", + " gust_pp_sel = gust_pp[scen]\n", + " else:\n", + " gust_pp_sel = gust_pp\n", + "\n", + " #prepare hazards centroids\n", + " haz = set_centroids(gust_pp_sel,stack=stack,timeres=timeres,plot=False)\n", + "\n", + " #write haz tag\n", + " #haz.tag.description = \"Latres: \"+format(latres,'.2f')+\"\\nLonres: \"+format(latres,'.2f')\n", + "\n", + " #base names to save files\n", + " if stack:\n", + " savenamehaz = make_fn(['haz','stacked',pp_funcname,scen,modname],bnSWM_proc,filetype='.h5')\n", + " else:\n", + " savenamehaz = make_fn(['haz','nmem'+str(imem),pp_funcname,scen,modname],bnSWM_proc,filetype='.h5')\n", + "\n", + " #save hazards\n", + " if savehaz:\n", + " try:\n", + " haz.write_hdf5(results_folder+'hazard/'+savenamehaz)\n", + " except OSError:\n", + " mkdir(results_folder+'hazard/')\n", + " haz.write_hdf5(results_folder+'hazard/'+savenamehaz)\n", + "\n", + " #loop of regions considered\n", + " for reg in reglist:\n", + " start_time = timer()\n", + " #sel exposure according to region\n", + " reg_ids = reg_ctrids_dict[reg]\n", + " exp_sel = sel_reg_exp(reg_ids,exp)\n", + "\n", + " # Exposures: rename column and assign id\n", + " exp_sel.gdf.rename(columns={\"impf_\": \"impf_\" + haz_type}, inplace=True)\n", + " exp_sel.gdf['impf_' + haz_type] = if_id\n", + "\n", + " #assign centroids\n", + " exp_sel.assign_centroids(haz,distance='euclidean',threshold=dist_th)\n", + " exp_sel.check()\n", + "\n", + " #compute impacts\n", + " impcalc = ImpactCalc(exp_sel, impf_set, haz)\n", + " imp = impcalc.impact(save_mat=saveimpmat, assign_centroids=False)\n", + "\n", + " #save results\n", + " if savestats:\n", + " for met in metrics:\n", + " if met == 'aai_agg':\n", + " impmet = imp.aai_agg\n", + " else:\n", + " imp.calc_freq_curve(return_per=met).impact\n", + " if stack:\n", + " res_df.loc[(reg,impfname,scen,modname),met] = imp.aai_agg\n", + " else:\n", + " res_df.loc[(reg,impfname,scen,modname,imem),met] = imp.aai_agg\n", + "\n", + " #save impacts\n", + " #base names to save files\n", + " if stack:\n", + " savenameimp = make_fn(['imp',reg,'stacked',impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + " else:\n", + " savenameimp = make_fn(['imp',reg,'nmem'+str(imem),impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + "\n", + " if saveimpcsv:\n", + " try:\n", + " imp.write_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + " except OSError:\n", + " mkdir(results_folder+'impact/')\n", + " imp.write_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + " if saveimpmat:\n", + " try:\n", + " imp.write_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + " except OSError:\n", + " mkdir(results_folder+'impact/')\n", + " imp.write_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + " time_delta_past = timer() - start_time\n", + " print(\"Computed impacts for \"+modname+\", \"+\", \".join(scen_used)+\", \"+\", \".join(reglist)+\", \"+\", \".join(impf_dict.keys())+\": \"+str(time_delta_past))\n", + " ncdf.close()\n", + "\n", + "res_df = res_df.astype(np.float64)" + ] + }, + { + "cell_type": "markdown", + "id": "3edf5576-f025-4424-b838-f964e20dd16b", + "metadata": {}, + "source": [ + "## Boxplots of regional damages" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "69daa08b-181c-4db3-9a74-98aab83b9f40", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:26:54.770290Z", + "iopub.status.busy": "2023-01-09T08:26:54.770093Z", + "iopub.status.idle": "2023-01-09T08:26:56.448123Z", + "shell.execute_reply": "2023-01-09T08:26:56.447569Z", + "shell.execute_reply.started": "2023-01-09T08:26:54.770264Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-13 11:08:32,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-13 11:08:32,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:34,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:37,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:38,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:41,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:42,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:08:45,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + } + ], + "source": [ + "## First, import impact data\n", + "#select simulation\n", + "modlist = modlist_allscen+modlist_ssp585\n", + "modset = 'ssp585'\n", + "regions4 = ['BI','IP','WEU','CEU','MED','SC','EEU']\n", + "\n", + "reglist = ['EU']+regions4\n", + "periods = ['historical','ssp585']\n", + "impf_namelist = ['CubEOT','Sw2010']\n", + "\n", + "bnSWM_proc = 'qt98pst_mask_abs15_cutarea1-5E5_gst1-00_bias_corrWG10_SWM_br_day_EU_winE'\n", + "\n", + "#initiate df to save results\n", + "metrics = ['aai_agg',1,10,15,30] # impact metrics to be computed, select aai_agg for Average Annual Damage, and integers for rps\n", + "#metnames = ['rp'+str(rp) for rp in metrics if rp != 'aai_agg']\n", + "#if 'aai_agg' in metrics:\n", + "# metnames.append('aai_agg')\n", + "#iterables = [metnames,periods,impf_namelist]\n", + "metddict = {}\n", + "for metric in metrics:\n", + " if metric!= 'aai_agg':\n", + " metddict[metric] = 'rp'+str(metric)\n", + " elif metric == 'aai_agg':\n", + " metddict[metric] = 'AAD'\n", + "iterables = [metddict.values(),periods,impf_namelist]\n", + "col_idx1 = pd.MultiIndex.from_product(iterables,names=[\"metric\",\"period\",\"Impf\"])\n", + "res_df = pd.DataFrame(columns=col_idx1,index=modlist)\n", + "\n", + "# import impact data\n", + "dict_res = {}\n", + "res_list = []\n", + "for reg in reglist:\n", + " #initiate dfs\n", + " res_df = pd.DataFrame(columns=col_idx1,index=modlist)\n", + "\n", + " for modid, modname in enumerate(modlist):\n", + " for period in periods:\n", + " for impfname in impf_namelist:\n", + " # get processing func\n", + " preprocess_func = pp_func_dic[impfname]\n", + " pp_funcname = str(preprocess_func).split(\" \")[1]\n", + "\n", + " if stack:\n", + " savenameimp = make_fn(['imp',reg,'stacked',impfname , pp_funcname,period,modname],bnSWM_proc)\n", + " else:\n", + " savenameimp = make_fn(['imp',reg,'nmem'+str(imem),impfname , pp_funcname,period,modname],bnSWM_proc)\n", + "\n", + " #import impacts\n", + " imp = Impact()\n", + " imp = imp.from_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + "\n", + " #for idm, metric in enumerate(metrics):\n", + " # if metric == 'aai_agg':\n", + " # stat = imp.aai_agg\n", + " # else:\n", + " # stat = imp.calc_freq_curve(return_per=metric).impact\n", + " # res_df.loc[modname,(metnames[idm],period,impfname)] = stat\n", + " # #reg_df.loc[modname,(reg,metnames[idm],period,impf)] = stat\n", + "\n", + " for metric, metname in metddict.items():\n", + " if metric == 'aai_agg':\n", + " stat = imp.aai_agg\n", + " else:\n", + " stat = imp.calc_freq_curve(return_per=metric).impact\n", + " res_df.loc[modname,(metname,period,impfname)] = stat\n", + "\n", + " res_df = res_df.astype(np.float64)\n", + " #reg_df = reg_df.astype(np.float64)\n", + "\n", + " dict_res[reg] = [res_df]\n", + " res_list.append(res_df)\n", + "reg_df = pd.concat(res_list,keys=reglist,names=['region'],axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "a5f8c30b-a2d5-43e1-a6dd-215a4c1f6489", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-08T15:44:20.537131Z", + "iopub.status.busy": "2023-01-08T15:44:20.536749Z", + "iopub.status.idle": "2023-01-08T15:44:21.151914Z", + "shell.execute_reply": "2023-01-08T15:44:21.151496Z", + "shell.execute_reply.started": "2023-01-08T15:44:20.537079Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_88025/63872412.py:51: UserWarning: The palette list has more values (10) than needed (3), which may not be intended.\n", + " sns.boxplot(ax=ax1,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n", + "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_88025/63872412.py:52: UserWarning: The palette list has more values (10) than needed (3), which may not be intended.\n", + " sns.boxplot(ax=ax2,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n" + ] + }, + { + "data": { + "text/plain": [ + "[]" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA4wAAAKICAYAAAA7LHQAAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAACypElEQVR4nOzde1yUZeL//9cNclATUDyAqAiaWhSlpuYp3Gort7ZSKzWtTLNt8be2Wx6KCA1Ztay+a7tqq1mW2tG082k9gCWkphZi2qYgHiFDDirnYX5/8JlZJwYFhoEZeD8fj3nE3Pd13dc106i857ru6zLMZrMZERERERERkd/waOwOiIiIiIiIiGtSYBQRERERERG7FBhFRERERETELgVGERERERERsUuBUUREREREROxSYBQRERERERG7FBhFRERERETELgVGERERERERsUuBUUREREREROyq18D45JNPYhgGhmHQokULDh48aD03d+5c6znDMOjevXud2nj66adt2vjxxx/rqfciIiIiIiJyvnoLjEePHuUf//iH9fk999xDz5496+vyVn/961+55JJLADCZTMyaNave2xAREREREZF6DIxPPfUUxcXFABiGwVNPPVVfl7YRGBjII488Yn3+6aefsnnzZqe0JSIiIiIi0pzVS2A8evQob775pvX54MGDiYiIqI9L2/Xwww/bPH/22Wed1paIiIiIiEhzVS+Bcfny5ZhMJuvzCRMm1Mdlq3XppZdyzTXXWJ//5z//4dChQ05tU0REREREpLlxODBWVFSwcuVK63PDMLj77rtrXH/37t2MGzeO4OBgfHx8CA8P569//Su//vrrBeuNGzfO+rPZbOaVV16pfedFRERERESkWg4Hxh9++IGTJ09an1922WV06NChRnVXrVrFoEGDeOedd8jKyqK0tJSMjAwWL17MlVdeecEVUIcPH27z/PPPP6/bCxARERERERG7HA6MiYmJNs8HDRpUo3pZWVk89NBDlJeXV3v+9ttv59y5c3bPX3311fj4+Fifp6amcvr06Zp1WkRERERERC7K4cC4Y8cOm+eRkZE1qldSUoKnpycLFy5kz549fPnllwwZMsSmzKFDh1iyZInd+t7e3vTp08f63Gw2s3Pnzlr2XkRERERERKrjcGA8fzoqUOPpqAALFy5k9uzZXH311dx0001s3LiRTp062ZRZvXp1tfXbt29v8zwrK6vGbYuIiIiIiMiFORwYT506ZfO8Xbt2Na47efJkm+ctW7Zk/PjxNsf27dvHmTNn7NYPDAy0ef7LL7/UuG0RERERERG5MIcDo9lstnluGEaN6rVt2xZ/f/8qx8PCwqpcv7ogWNe2RURERERE5OIcDowdO3a0eZ6Tk1OjetWFu9+GwAuV/e0iN7WZDisiIiIiIiIX5nBgDAoKsnl+sf0TLU6fPk1eXl6V44cPH7Z5bhhGtUHwt9Nhf9sXERERERERqTuHA+OAAQNsnqempta47quvvmrzvKioiLfeesvm2OWXX06bNm2q1C0tLeXAgQPW54ZhVOmLiIiIiIiI1F0LRy8QFRVl8/y322xcyJNPPkl5eTk33XQTv/zyC8888wzZ2dk2Ze677z67dffs2UNpaan1eWRkZK0W3BEREREREZELczgw9u3bl06dOlmD3o8//khOTk6VFUx/y9PTk9LSUmbPns3s2bPtlgkLC2PatGl2z3399dc2z0eOHFmH3ouIiIiIiEh1HJ6S6unpyZQpU6zPKyoqeO+99y5ar0uXLjz//PPVLmjTsWNHPvroIy655BK758+fumoYBg899FAtey4iIiIiIiIX4nBgBHj44Yfx8Pjfpd58880a1Xv88cf5+uuvGTVqFB07dsTb25vu3bszffp09u7dyxVXXGG33n//+192795tfX7jjTfSo0cPx16EiIiIiIiI2KiXwBgaGsq9995rff7NN9/w448/2pSZO3cuZrPZ+rCshjp06FDWr19PdnY2JSUlZGRksHjx4irbdZxv+fLlNs+feOKJ+ngZIiIiIiLSADIyMlixYgVTp07lqquuokWLFhiGQUJCQrV15s6di2EYF3ycvyjmb+3fv58JEyYQHByMr68vPXr0YMaMGXZ3bjjf8ePHefjhh+natSs+Pj5069aNP/3pTxw/fryuL9+tOHwPo8Xf//531q1bR3FxMWazmb///e+sXbu2vi5vlZOTw7///W/r81tvvZXrr7++3tsRERERERHnWLx4MYsXL65T3a5du9KtWze751q1amX3+JYtW7j11lspKiqiQ4cOREREcODAAV544QU2bNhAcnIynTp1qlLvxx9/ZPjw4Zw+fRp/f3+uuOIKDh06xPLly3n//ff55ptv6NOnT51eh7uolxFGgG7duvHXv/7V+vydd97h4MGD9XV5q8WLF3P27Fmg8v7J5557rt7bEBERERER52nfvj233XYb8fHxfP7554wZM6bGdSdPnsw333xj92EvSJ45c4axY8dSVFTE9OnTOX78OLt27eLIkSMMHTqU9PR0mzVZLEwmE3fffTenT59mzJgxnDhxgl27dnH8+HFGjx5NTk4OY8eOpaKiwqH3wtXVW2AEWLBggXXKaXl5OT179qzPywMQHx9v08bll19e7204qqSkhLlz51JSUtLYXWnS9D43DL3PDUfvdcPQ+9ww9D43DL3PDUfvdf2KjY3l448/5umnn+aWW26pdqHL+vDyyy9z6tQpLrvsMl588UW8vLwACAwM5M0336RFixZ8+umnNmukAKxfv54ff/yRwMBAXnvtNevoZevWrVm1ahWBgYGkpqby4YcfOq3vrqBeA6NUKikp4ZlnntFfKE6m97lh6H1uOHqvG4be54ah97lh6H1uOHqv3df69esBmDRpEp6enjbnunXrxo033gjAunXr7Na75557aNOmjc25Nm3acPfddwPUaIcId6bAKCIiIiIibmPLli3cfffdXH/99dx1110899xzZGVl2S1bXl7Orl27gMrFNu2xHN++fbvN8W+//bZO9Zqaelv0RkRERERExNm2bt1q8/z9999n7ty5LF26lEmTJtmcO3z4MGVlZQCEh4fbvZ7l+M8//2w9VlpaypEjR2pUz9KGZaprU1OnwFhRUcGJEydo06YNhmHUd5/cXkFBgc1/xTn0PjcMvc8NR+91w9D73DD0PjcMvc8NR+919cxmMzk5ObRr185mb3YfHx98fHzqrZ3g4GBiYmIYNWoU4eHhtGzZkj179pCQkMDnn3/O5MmTCQwM5I9//KO1Tm5urvXntm3b2r2u5fj5ZfPz862L2VysXkVFBQUFBQQGBjr2Al2VuQ6OHj1qBvTQQw899NBDDz300EMPPew+5syZU+N88cADD5gB87x582qdTSoqKsyjRo0yA+YePXqYKyoqrOe2bt1q7Y/JZLJbf9OmTWbA7OnpaT125MgRa71Dhw7ZrXfo0CFrmaNHj9a63+6iTiOMlps+jx49ip+fX10uISIiIiIiTUBBQQFdu3blyJEj+Pv7W4/X5+jihRiGwcKFC9mwYQOHDh0iNTWVq666CgBfX19rudLSUpvnFpaFjFq2bGk99tt69py/ANL5dZuaOgVGyzRUPz8/BUYREREREcHf37/RskGvXr1o164dp0+f5uDBg9bAeP500tzcXIKDg6vUtUxFPb+sv78/Hh4eVFRU2ExVtVfPw8OjSWcirZIqIiIiIiJuz7LoTHl5ufVY9+7drcfT09Pt1rMcv/TSS63HvL296datW43qnd9GU6TAKCIiIiIibu3XX3/ll19+AaBLly7W4y1atKBfv34AbNu2zW5dy/FBgwbZHLc8r229pkaBUURERERE3NqLL76I2WzG39+fAQMG2JwbPXo0AKtWrcJkMtmcO3LkCBs3bgRgzJgxduu9++67nDlzxubcmTNneO+99wC466676u+FuCAFRhERERERcWn79u0jOjqaffv22RwvLi5m/vz5PPvsswDMnj0bb29vmzKPPPII7du3Z//+/Tz22GPWfRlzcnK49957KS8vZ+TIkfTv39+m3pgxY+jTpw85OTk8+OCDFBYWAnDu3DkefPBBcnJyuOKKK7jzzjud9Kpdg2E2m821rVRQUIC/vz/5+flN+gZPERERERG5sLpkg23btnHHHXdYn589e5aSkhJatWpls+Lonj176Nq1K99//z19+/YFoEOHDtb7C/fv328NclOmTGHFihV294nftGkTt912G8XFxdb6lrrdu3cnJSWFoKCgKvXS0tK47rrryM3Nxd/fn549e3Lw4EHy8/Np164dX3/9NZdffnnN3yw3pBFGERERERFpUGVlZeTk5Fgfli0qCgsLbY5bppB2796defPmMXLkSC655BJ++ukn9u7dS7t27bjrrrv44osveOWVV+yGRYAbbriB7777jnHjxmEYBnv37qVTp0489thj7N69225YBLjiiiv44YcfeOihh7jkkkvYu3cvl1xyCVOnTuWHH35o8mERNMIoIiIiIiIOUDZo2uq0D6MjzGYzZWVlVFRUNHTT0kg8PDzw8vKq9hsfERERERFxTQ0WGEtLS/nll18oLCyssjqRNH2enp60atWKjh07VrkRWUREREREXFODBMbCwkKOHj2Kp6cnbdu2pWXLlnh6emrEqRkwm82YTCaKiorIz8/n8OHDdOnShVatWjV210RERERE5CIaJDD++uuveHl5ERoaiqenZ0M0KS7mkksuoV27dmRmZvLrr79aV7YSERERERHX5fRVUsvLyzl37hzt2rVTWGzmPD09adeuHefOnaO8vLyxuyMiIiIiIhfRIIERwMfHx9lNiRuwfA4UGEVEREREXF+D7cOo+xUF9DkQEREREXEnDRYYRURERERExL0oMIqIiIiIiIhdCowiIiIiIiJilwKjiIiIiIiI2NUg+zDWRHZ2Nnl5eY3djVoJCAigU6dOTrv+lVdeSVpaGr6+vmRnZ+Pn51ejeqWlpXTu3JmcnBy6dOlCZmYmHh7VfzcwYsQIkpKSbI61bt0af39/evbsyYABA7jnnnsYOHCgQ69HRERERETci0sExuzsbCZMmEhpaUljd6VWvL19WLt2jVNC4/fff09aWhoAxcXFrFu3jsmTJ9eo7meffUZOTg4Ax44dIzExkeuvv/6i9bp27Uq3bt2AytB5+vRpvvnmG7Zu3coLL7zAiBEjWLVqFaGhoXV8VSIiIiIi4k5cIjDm5eVRWlpCcY8RmFsGNHZ3asQoyoNDieTl5TklMK5evRqoHMXMy8tj9erVNQ6M9urWJDBOnjyZuXPn2hwrKChg/fr1zJ07l8TERAYOHMh3331H165da/eCRERERETE7bhEYLQwtwygonX7xu5GjTjz5k+TycRbb70FwL/+9S8eeOABkpKSOHLkiHUEsDq5ubl8+umnACxdupR7772X999/nyVLltCqVata98XPz49JkyZx++23M2LECPbu3cv999/Pli1bav/CRERERETErWjRGxe0ceNGTp48SVBQEOPGjeP666/HbDazdu3ai9Z99913KSkpYcCAAYwfP55evXpx5swZPvzwQ4f61K5dO15//XUAEhMT+fbbbx26noiIiIiIuD4FRhf0xhtvADB27Fg8PT2ZMGEC8L+ppjWpe++999r8tyZ1L6Zv374MGjQIwDqKKSIiIiIiTZcCo4s5e/YsH3zwAYA1KI4ePZqWLVuyf/9+du3aVW3d9PR0kpOT8fT0ZNy4cTbX+Oqrr8jOzna4f8OGDQNg586dDl9LRERERERcmwKji3n//fcpLCy0bmcB0KZNG2677TbgwiOFlnO/+93vCAoKArBe5/z7Ih1hWezml19+cfhaIiIiIiLi2hQYXYwl9FmmklpYRgrfeustysvL7dZds2bNBevWx7TU1q1bA3DmzBmHryUiIiIiIq5NgdGFHD9+3Lr66G9D38iRI2nbti2//PILX331VZW6KSkpHDx4EB8fH0aPHm1zbty4cXh6erJ7925+/PFHh/p49uxZoHL1VBERERERadoUGF3I2rVrqaiooF+/fvTu3dvmnLe3N3fffTdgf6TQcuzWW2/F39/f5lynTp244YYbqq1bG0eOHAGgY8eODl1HRERERERcn0vtw9jcWcLc7t27MQyj2nIffvghBQUF1lG+0tJS3nnnHQDWr19/wbpr165l/vz5FyxzId988w0AAwcOrFN9ERERERFxHwqMLmLPnj2kpaVhGMYFR+9yc3MpKiri/fff58EHHwQqt7g4ffo0LVq0IDAwsNq6v/76K0ePHiUxMZHf/e53te7j7t27rauj3nrrrbWuLyIiIiIi7kVTUl2EZXTxuuuuIysrq9rH448/blP+/J8nTJhwwbr33HNPlbo1dfr0aR544AEAbrjhBo0wioiIiIg0AwqMLuD8LS/uu+++C5adOHEiAImJiRw9epTc3Fw+/fTTWtVdt24dRUVFNepbQUEBr7/+Ov369SMtLY2goCBWrVpVo7oiIiIiIuLeNCXVBfznP/8hKysLX19f7rrrrguWvfzyy+nbty979uxh7dq1BAQEUFpaSkhIyEWnmd5000107NiRX375hQ8//JBx48bZnH/11VfZuHEjAGVlZZw+fZr09HQqKiqAyv0dX3/9dbp06eLAqxUREREREXfhUoHRKMpzmyFPoyiv3q5lmSL6xz/+scoKp/ZMnDiRPXv2sHr1agICAoDKbTg8PC787rVo0YKxY8fyz3/+k9WrV1cJjEePHuXo0aMAtGrVCn9/f4YOHcrAgQMZO3YsAwYMqMOrExERERERd2WYzWZzbSsVFBTg7+9Pfn7+RffjKy4uJiMjg7CwMHx9fe2Wyc7OZsKEiZSWltS2K43K29uHtWvX0KlTp8buituoyedBRERERNxHbbKBuB+XGGHs1KkTa9euIS8vr7G7UisBAQEKiyIiIiIi0mS5RGCEytCo8CUiIiIiIuI63OWWQREREREREWlgCowiIiIiIiJilwKjiIiIiIiI2KXAKCIiIiIiInYpMIqIiIiIiIhdCowiIiIiIiJilwKjiIiIiIiI2KXAKCIiIiIiInYpMIqIiIiIiIhdCowiIiIiIiJilwKjiIiIiIiI2KXAKCIiIiIiInYpMIqIiIiIiIhdCowiIiIiIiJiV4vG7oBFdnY2eXl5jd2NWgkICKBTp06N3Y2LKioq4osvvmDHjh3s2LGD7777joKCAnr06MHBgwcbu3siIiIiIuKiXCIwZmdnM3HCBEpKSxu7K7Xi4+3NmrVrXT40/vTTT4wePbqxuyEiIiIiIm7GJQJjXl4eJaWl/DniHJ1bmxq7OzVy4pwny/ZV9t3VA6OXlxfXXnstAwYMYODAgZSVlTF58uTG7paIiIiIiLg4lwiMFp1bmwjzc4/A6E4iIiJISUmxPk9MTGy8zoiIiIhIs5eRkcHGjRutt0zt27cPk8nEvHnziI2NvWDdlJQUFi5cSHJyMmfPniUsLIzx48czc+ZMfH19q623f/9+EhIS2Lx5M7m5uYSEhDBq1ChiY2MJCAiott7x48d55pln+Pzzz/nll1/o1KkTI0eOJC4ujpCQkLq+BW5Di964CMMwMAwDgPfff5/rrruOgIAADMPg8OHDAIwYMQLDMEhMTGTHjh3ceuuttGvXjtatWzNkyBA++OCDxnsBIiIiIiI1tHjxYh5++GFeeeUVUlNTMZlqNmi0du1ahg8fzkcffYSPjw+XXXYZBw8eJC4ujuuuu47CwkK79bZs2UL//v158803MZlMREREkJWVxQsvvED//v3Jzs62W+/HH38kMjKSFStWcObMGa644goKCgpYvnw5V111FQcOHKjze+AuFBhdzLPPPstdd93Ff//7X3r16kWHDh2qlPn6668ZPnw4W7dupUePHvj7+5OSksKoUaN48cUXG6HXIiIiIiI11759e2677Tbi4+P5/PPPGTNmzEXrHD58mClTpmAymXjuuec4evQou3fv5ueff6Z3797s3LmTWbNmVal35swZxo4dS1FREdOnT+f48ePs2rWLI0eOMHToUNLT05kyZUqVeiaTibvvvpvTp08zZswYTpw4wa5duzh+/DijR48mJyeHsWPHUlFRUS/viatSYHQxcXFxLF++nJMnT7Jjxw5OnDhBly5dbMrEx8czevRosrKy2LlzJ8ePH+ell14CYPbs2fzwww+N0XURERERkRqJjY3l448/5umnn+aWW27hkksuuWidRYsWUVJSwk033cTMmTOts/NCQ0N59dVXAVi+fHmV0cKXX36ZU6dOcdlll/Hiiy/i5eUFQGBgIG+++SYtWrTg008/Zffu3Tb11q9fz48//khgYCCvvfYarVq1AqB169asWrWKwMBAUlNT+fDDDx1+P1yZAqOL+dOf/sTUqVOtfwBatGhBixa2t5q2a9eO1157jdatWwOV01n/8pe/MHr0aMrLyzXKKCIiIiJNitlsZsOGDQB2RwOHDBlCnz59KCsrqxLg1q9fD8CkSZPw9PS0OdetWzduvPFGANatW2e33j333EObNm1szrVp04a7774bgPfee6+uL8stKDC6mPvvv/+iZaZMmWL3ht7o6GgAvvzyy3rvl4iIiIhIYzly5AgnT54EYOjQoXbLWI5v377deqy8vJxdu3bVuh7At99+W6d6TY0Co4u57LLL6lzGcjw7O5uCgoJ67ZeIiIiISGP5+eefAfDx8aFz5852y4SHh9uUhcr7HsvKymzO16ReaWkpR44cqVG989toilxqWw3BOs30Qjp27HjR42fOnMHPz6/e+iUiIiIiciG/HbDw8fHBx8enXq6dm5sLYN1FwJ62bdvalP3tz5bzNamXn59vXczmYvUqKiooKCggMDCwRq/F3WiE0Q2dOnXqosd/O89aRERERMSZunbtir+/v/WxYMGCert2cXExAN7e3tWWsYTToqKiKvUuVNfRer+t29RohNEN7d+//4LHO3XqpNFFEREREWlQR48etfkdtL5GFwHr+h2lpaXVlikpKQGgZcuWVepZ6tpbB6Qm9S7U3m/rNjUKjG5o5cqVxMXFVflDuHTpUgBuuummxuiWiIiIiDRjfn5+Thu0sEz/zMvLw2w2252WaplSev4U0vN/zs3NJTg4uEb1/P398fDwoKKiwmaqqr16Hh4eDTJYM3nyZIevYRgGK1eurFUdBUY3lJOTw5QpU/j3v/9N69atMZvNLFu2jPXr1+Pp6cljjz3W2F0UEREREak3l156KVA5qnfixAlCQkKqlElPT7cpC9C9e3e8vLwoKysjPT3dbmC0V8/b25tu3bpx+PBh0tPTGTx4cLX1LG0426pVq6q9f7MmLEG7toFR9zC6obi4ON577z2Cg4MZMGAAXbp0Ydq0aZjNZhYsWMDVV19dpU6/fv1o37497du354477gAgIyPDeqx9+/Y899xzDfxKREREREQurlu3bgQFBQGwbds2u2UsxwcNGmQ91qJFC/r161freuc/r209ZzObzXV61JVLjTCeOOd58UIuojH7Onz4cL7++mvmzp1LSkoKJSUlXHvttcyaNYtRo0bZrXP69GlycnJsjlVUVNgcKywsdGq/RURERETqwjAMRo0axbJly1i5ciX33HOPzfnk5GQOHDiAl5cXt99+u8250aNHs337dlatWsXjjz+Op+f/fo8/cuQIGzduBGDMmDFV6r3zzju8++67PPvsszaLSp45c4b33nsPgLvuuqteX+vFXHPNNURERNSqzr59+/juu+/q1J5LBMaAgAB8vL1Ztq+xe1I7Pt7eBAQE1Mu1apv6Bw4cyGeffVbj8ocPH65lj0REREREXMfMmTNZuXIlX331FYsWLWLGjBkYhkFmZqb1/r6HHnrIOhJp8cgjj7Bo0SL279/PY489xvPPP4+Xlxc5OTnce++9lJeXM3LkSPr3729Tb8yYMfTp04cDBw7w4IMP8sYbb9CqVSvOnTvHgw8+SE5ODldccQV33nlnQ70FAIwbN67Wt6C98MIL7h0YO3XqxJq1a8nLy2vsrtRKQEAAnTp1auxuiIiIiIi4lW3btllvkwI4e/YsAAsWLOAf//iH9fiePXvo2rUrAGFhYaxYsYIHH3yQWbNmsXjxYjp27EhaWhplZWX079+fRYsWVWnLz8+Pt99+m9tuu42XXnqJt956i27durF//34KCwvp3r07r776apV6np6evPfee1x33XW8//77bNy4kZ49e3Lw4EHy8/Np164d77zzDh4eTfsuP5cIjFAZGhW+RERERESavrKysiq3S0HlLVLn3yZlMplszt9///307NmTBQsWkJyczI8//kh4eDjjx49n9uzZdrfNALjhhhv47rvvSEhIYPPmzezdu5eQkBBGjRpFbGyszQqp57viiiv44YcfiI+P5/PPP2fv3r106NCBe+65h7i4OLp06eLAu1A7GzZssPaptu6880569uxZp3YNcx3ugCwoKMDf35/8/PyLLiFbXFxMRkYGYWFh1f4PlJoZMWIESUlJbNmyhREjRjR2d+pEnwcRERGRpqU22UDcj8uMMIqIiIiIiEjdlJeXs3z5cjZt2kRRURERERH8f//f/0doaKhD11VgdCOJiYmN3QUREREREXExFRUV3HLLLWzZsgWoXFDzyy+/5JVXXiExMZGrrrqqztdu2ndoioiIiIiINHHr169n8+bNtGrVij/+8Y/cddddtG/fnvz8fJ588kmHrq0RRhERERERETeWnJyMYRh8/fXXXH311QD8+uuvhIWF8c033zh0bY0wioiIiIiIuIEhQ4awb1/Vzestq8mev9rrJZdcgpeXV5WVZmtLgVFERERERMQNfPvtt/Tr14+nnnqKkpIS6/F+/fphNpsZPnw4f/vb35g9ezYDBw4kPz+f/v37O9SmAqOIiIiIiIgbWLt2LW3btmXhwoVceeWVbNq0CYBx48YRERHBsWPHeOmll3j++edJS0vD09OT+Ph4h9pUYBQREREREXED48eP56effmLKlCkcOnSIm266iUmTJnH27Fm+/vpr/va3vxEZGcmll17KqFGj2Lp1q8P7t2vRGxERERERETfh7+/P8uXLuf/++/nTn/7EG2+8wWeffcYLL7zACy+8UO/taYRRRERERETEzQwbNozvv/+eZ555hjNnzjBp0iRuvPFGDh06VK/tKDCKiIiIiIi4kfLycrKysjAMg6effprU1FSioqLYvHkzV155JQsWLKC8vLxe2lJgFBERERERcQMVFRXMnj2bgIAAQkJCCAgI4IknnqBnz55s3ryZ1157jVatWhEbG0u/fv349ttvHW5TgVFERERERMQN/Pvf/2bRokUUFhZiNpspLCxk0aJF/Pvf/wbggQce4KeffmLixImkpaUxbNgwpk2b5lCbhtlsNte2UkFBAf7+/uTn5+Pn53fBssXFxWRkZBAWFoavr2+15bKzs8nLy6ttVxpVQEAAnTp1auxuuJWafh5ERERExD3UJhuIY6666irS0tJ47LHHuOGGG9i4cSMvvvgiV155JT/88INN2c2bN/PII49w6NAhTCZTndt0iVVSs7OzmTBxAqUlpY3dlVrx9vFm7Zq1Lh8ai4qK+OKLL9ixYwc7duzgu+++o6CggB49enDw4MFq6x0+fJiwsLALXnv27NksXLiwvrsszYTJZCI1NZWcnBwCAwOJjIzE09OzsbslIiIi4pIOHTpE586dWbRoEQC33HILb7/9Nunp6VXKXn/99ezdu5eEhASH2nSJwJiXl0dpSSkVAysw+9V6wLNRGAUGpTtKycvLc/nA+NNPPzF69Og61/fx8eGaa66xe6579+51vq40b0lJSSxZsoSsrCzrsaCgIKZNm0ZUVFQj9kxERETENbVv356srCz27dtHREQEaWlp/PrrrwQFBdkt7+Pjw7x58xxq0yUCo4XZzwxtG7sXNWPGPYItgJeXF9deey0DBgxg4MCBlJWVMXny5BrXDwoK4ptvvnFiD6W5SUpKIi4ujsGDBzNnzhzCwsLIyMhg9erVxMXFER8fr9AoIiIi8hvXX389q1at4uqrr6ZDhw6cOnWKiooKbrzxRqe16VKBUZwjIiKClJQU6/PExMTG64w0eyaTiSVLljB48GDmz5+Ph0fl2lsRERHMnz+fmJgYli5dyrBhwzQ9VUREROQ88+fPZ/PmzRw5csQ6Sys0NJS///3vTmtTq6S6CMMwMAwDgPfff5/rrruOgIAADMPg8OHDAIwYMQLDMEhMTGTHjh3ceuuttGvXjtatWzNkyBA++OCDxnsBIjWUmppKVlYW9913nzUsWnh4eDBx4kROnjxJampqI/VQRERExDUFBQXx448/8sYbb5CQkMAbb7xBWlqaU2+R0wiji3n22Wd54okn6NSpE7169bKGxfN9/fXXJCQk4O3tTZ8+fTh+/DgpKSmMGjWKF154gccee6xe+1RQUMCf/vQnDh06hLe3N71792b06NEMHz68XtuR5iEnJweg2gWVwsPDbcqJiIiIyP+0atWKiRMnNlh7GmF0MXFxcSxfvpyTJ0+yY8cOTpw4QZcuXWzKxMfHM3r0aLKysti5cyfHjx/npZdeAipXLf3tkrqOys3NZfny5WzatInPP/+cf/zjH1x33XXcfffdnDt3rl7bkqYvMDAQgIyMDLvnLat8WcqJiIiISGUGiI+P59tvv6113ZSUFGv92lJgdDF/+tOfmDp1qnV6aosWLWjRwnYguF27drz22mu0bt0aqJzO+pe//IXRo0dTXl7Oiy++WC99adGiBXfffTeffPIJmZmZlJSUkJ6ezrx58/D29mbdunU88MAD9dKWNB+RkZEEBQWxevVqKioqbM5VVFSwZs0agoODiYyMbKQeioiIiLieuXPn8swzz5CcnFzrusnJydb6taXA6GLuv//+i5aZMmWK3U3vo6OjAfjyyy/rpS9dunTh3Xff5dZbb6Vbt254e3sTFhZGbGws7777LlB5v+XXX39dL+1J8+Dp6cm0adNISUkhJiaGtLQ0CgsLSUtLIyYmhpSUFKKjo7XgjYiIiIgL0D2MLuayyy6rcxnL8ezsbAoKCvDz86vXvp3vjjvuYPDgwaSkpLB+/Xrdzyi1EhUVRXx8PEuWLLF+0QEQHBysLTVERERELmD+/Pn861//qlWdgoKCOrenwOhiLNNML6Rjx44XPX7mzBmnBkbAGhgPHjzo1HakaYqKimLYsGGkpqaSk5NDYGAgkZGRGlkUERERuYDc3Fxyc3MbrD0FRjd06tSpix5v06aN0/vh5eUFQHl5udPbkqbJ09OTvn37NnY3RERERNyC2Wxu8DYVGN3Q/v37L3i8U6dOTh9dBNi3bx9AlVVcRURERESkfr322muN0q4CoxtauXIlcXFx+Pj42BxfunQpADfddJPT+/Djjz/yxRdfAHDjjTc6vT0RERERkeassXYn0CqpbignJ4cpU6ZY90A0m80sXbqU9evX4+npyWOPPVYv7fzpT3/io48+oqyszOZ4UlISI0eOpLy8nMsvv5wxY8bUS3siIiIiIuJaXGqE0SgwMNPw83LrwigwGq3tuLg4EhIS+Oijj+jduzcnTpzgxIkTACxYsICrr766Sp1+/fpx5MgRAGsAzMjIoH379tYys2bNYtasWdbn27dvZ/ny5fj4+HDppZfSunVrjh07xvHjxwHo2bMnH330UZV9IkVEREREpGlwid/0AwIC8PbxpnRHaWN3pVa8fbwJCAho8HaHDx/O119/zdy5c0lJSaGkpIRrr72WWbNmMWrUKLt1Tp8+TU5Ojs2xiooKm2OFhYU255988kk+++wzdu/eTVZWFnl5ebRp04ahQ4cyevRoHn74YS655JL6f4EiIiIiIuISXCIwdurUibVr1pKXl9fYXamVgIAAOnXqVC/Xqu2KRwMHDuSzzz6rcfnDhw/XskcwduxYxo4dW+t6IiIiIiLSNLhEYITK0Fhf4UtEREREREQcp0VvRERERERExC4FRhEREREREbHLZaakioiIiIiISO2Vl5eTmprKqVOn6N27N927d6+3ayswupHExMTG7oKIiIiIiLgIk8nEnDlz+Oc//8nZs2cBWLRoET169GDx4sUYhsE777xjs5VebWlKqoiIiIiIiJsxm82MGjWKBQsWcObMGZtdF4YOHcrXX39NYmIiH330kUPtKDCKiIiIiIi4mddee41PPvnE7rn27dszePBggGrL1FSDBcba7jMoTZM+ByIiIiIijlu1ahUALVu25OWXX65y/pprrsFsNvPTTz851I7TA6OHR2UTJpPJ2U2JG7B8DiyfCxERERERqb3U1FQMw+CBBx7g4YcfrnK+Y8eOAJw4ccKhdpz+W7uXlxdeXl7WmzCleTtz5oz1MyEiIiIiInVTXFwMQEhIiN3z+fn5AJSUlDjUjtMDo2EYtGnThvz8fIqKipzdnLiwoqIiCgoKaNOmDYZhNHZ3RERERETclmUEcfv27VXOmc1m672LnTp1cqidBtlWo3379hQVFXHkyBH8/Pxo06YNnp6eCg3NgNlsxmQycebMGQoKCvDx8XFoWV8REREREYHBgwfz3nvv8cknn/DnP//ZejwlJYXPPvuMffv2YRgGQ4YMcagdw1yHVUgKCgrw9/cnPz8fPz+/GtUxmUz8+uuvnDlzhrKyslp3VNybl5cXbdq0oX379nh6ejZ2d0RERESkntQlG4jjEhMTuf76620G4cxms/W55eekpCSGDRtW53YaZIQRwNPTk06dOtGxY0fKysqoqKhoqKalkXl4eODl5aURZRERERGRejJixAhmzZrFc889B1TeCnh+WASYOXOmQ2ERGjAwWhiGgbe3d0M3KyIiIiIi0qQsXLiQyMhIXnjhBb7//ntrULzqqquYMWMGEyZMcLiNBpuSKiIiIiIiTY+ygWsoKioiNzeXgIAAWrVqVW/X1WZ4IiIiIiLS4CZNmmSdRlndw7J1xG+lpKRwxx130KFDB1q2bMnll1/OvHnzqi1vsX//fiZMmEBwcDC+vr706NGDGTNmkJeX54RX2LBatmxJ586d6zUsQiNMSRUREREREbG49NJLrVtE/JaHR9XxrbVr1/LAAw9gMpkICQmha9eupKWlERcXx8cff0xiYqLd0LRlyxZuvfVWioqK6NChAxERERw4cIAXXniBDRs2kJyc7PAWFA3pjTfeuGgZDw8PAgICuOaaawgKCqpTOwqMIiIiIiLSaGJiYpg0aVKNyh4+fJgpU6ZgMpl47rnnmDFjBoZhkJmZyc0338zOnTuZNWsW//rXv2zqnTlzhrFjx1JUVMT06dN5/vnn8fLyIicnhzvuuINt27YxZcoU696F7sAyQltTd911F8uXL8ff379W7WhKqoiIiIiIuIVFixZRUlLCTTfdxMyZM62BKTQ0lFdffRWA5cuXk52dbVPv5Zdf5tSpU1x22WW8+OKLeHl5ARAYGMibb75JixYt+PTTT9m9e3fDvqB6YDab+e2yNJZjluNms5l169YxcuTIWu9WocAoIiIiIiIuz2w2s2HDBgCmTJlS5fyQIUPo06cPZWVlfPjhhzbn1q9fD1SOyv12T/Bu3bpx4403ArBu3TpndN1pfrvv4vkh8bdbbJjNZrZv386aNWtq1YYCo4iIiIiINJp169Zx5513cv311zNu3Dj++c9/kp+fX6XckSNHOHnyJABDhw61ey3L8e3bt1uPlZeXs2vXrlrXc3UlJSX88Y9/BGDOnDkcPnyY4uJiDh8+TFxcHAB/+MMfOHz4MC+99JJ1VPWdd96pVTu6h1FERERERBxWUFBg89zHxwcfH5+L1vv0009tnr/zzjvMmTOHN998k1tuucV6/Oeff7Zet3PnznavFR4eblMWKu97LCsrszlfk3qu7tlnn+WTTz5h4sSJzJkzx3q8W7duzJ07l/T0dNauXctrr73GnDlz2LdvH//+97/5/vvva9WORhhFRERERMRhXbt2xd/f3/pYsGDBBcv36NGD+fPn88MPP1BQUMCZM2f46quvGDRoELm5udx5551899131vK5ubkABAQEVLvYS9u2bW3K/vZny/ma1HN1q1atAioDoj2hoaGYzWbraqpRUVEA5OTk1KodjTCKiIiIiIjDjh49ip+fn/X5xUYXn3766SrHfv/73xMVFcXw4cPZsWMHs2fPZtOmTQDWPRa9vb2rvaalzaKiIuux8/dmrK6uvXqu7tixYwC8/fbb/O1vf6Ndu3bWcwUFBbz33nsAHD9+HIDWrVsDWKem1pQCo4iIiIiIOMzPz88mMNaVt7c38+bN4+abbyYxMZHc3Fzatm2Lr68vAKWlpdXWLSkpASo3sbew1LPUPf/5heq5um7dunHo0CHS09MJCwtj5MiRBAUF8csvv/Dll1+Sl5dnLQeQmZkJQPv27WvVjgKjiIiIiIi4lMGDBwNQUVFBeno6/fv3t04bzcvLs1kd9HyWKaXnTz09/+fc3FyCg4NrVM/VPfTQQzzxxBMYhsGZM2esI4qAzUqpU6dOBeCrr74CoF+/frVqR/cwioiIiIiISzl/2mR5eTkAl156KVA5GnjixAm79dLT023KAnTv3t16Pcv5mtRzdY8//jhjx46tsgfj+caOHcvjjz9OcXExPj4+3HHHHdx///21akeBUUREREREXMq+ffusP3fp0gWonFoZFBQEwLZt2+zWsxwfNGiQ9ViLFi2so2q1qefqPD09eeutt3j33Xe56aabaNeuHR4eHrRr145bbrmF999/nzfffBMPDw98fX1577332LBhA3fccUet2lFgFBERERER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GzJkCJ9++iljxoxhw4YN/O1vf+O2227DMAygcr9tC29vb7vX9fHxAaCoqKje+uos77zzDmVlZWzatIkNGzbwySefkJmZyeLFi3nppZdo164df/zjH7njjju4+eab62XPcI0wikgVWoBEGtL5S8v/9pvR5rC0vIhIU3H06FHy8/OtjyeffLJB2jUMg4ULFwJw6NAhm1sYzg9MpaWldutbRkJbtmzpxF7WHy8vL2655Rb+/e9/c/z4cZKTk5k5cya9evUiJyeHVatWMXr0aNq3b8+YMWN44403HBo91QijiNho7guQFBcXk5mZWet6oaGh9fItXnPU3JeWFxFpKvz8/PDz82uUtnv16kW7du04ffo0Bw8e5KqrrgJsp6Hm5uYSHBxcpa4lTFU3ZdXVXXvttVx77bU8++yz/PTTT6xfv54PPviA7777jg0bNvDBBx/g6enJ8OHD2bRpU62vr8AoIjYsC5DMmTOn2gVIoqOjSU1NpW/fvo3US+fJzMxk6tSpta63YsUK7dfpAMvS8kuWLCE6Otp6PDg4WEvLi4hIjXh5eQGVK6NadO/eHS8vL8rKykhPT7cbGC23Plx66aUN01En6t27N08++SRPPvkkWVlZfPDBB3zwwQds2bKFxMTEOl1TgVFEbDT3BUhCQ0NZsWJFleOZmZkkJCQQGxtLaGio3XriGC0tLyIidfXrr7/yyy+/ANClSxfr8RYtWtCvXz+2b9/Otm3b7G6tsW3bNgAGDRrUMJ1tIEFBQTzyyCM88sgjnDlzhs8++6xO11FgFBEbzX0BEl9f3wuOFIaGhmok0YksS8uLiIjUxosvvojZbMbf358BAwbYnBs9ejTbt29n1apVPP744zZfRB45coSNGzcCMGbMmAbtc0Nq06YNY8eOrVNdLXojIja0AImIiIi4mn379hEdHc2+fftsjhcXFzN//nyeffZZAGbPnl1lNdRHHnmE9u3bs3//fh577DHrvow5OTnce++9lJeXM3LkSPr3798wL8bNKDCKiA3LAiQpKSnExMSQlpZGYWEhaWlpxMTEkJKSQnR0tKYJioiISJ1t27aN9u3bWx9vv/02AAsWLLA5fvToUQDKyspYtmwZV1xxBR07duSaa67hmmuuITAwkKeeeoqKigqmTJnCE088UaUtPz8/3n77bXx9fXnppZcICQnhmmuuoVu3bmzbto3u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YbruuuvUqVMnvfDCC1q9enWZ++7du1ejRo3SzTffrDp16shsNismJkZ33XWX3n///TLvYb6oKvdX7smALZ5hrIQWLVqoXr16Za6PiYlxYW38R+nrXlxcrF9//VV79+7V3r17NW/ePKWkpNh94EPNCQkJ0W233SZJKioq0uHDh5WSkqKUlBQtXbpU3377rV8MMd6yZUvFxMTo5MmT2rx5s+677z67bVJSUqz/3rRpkx5++GG7bTZt2iRJatSokd37lntM2S5cuKAhQ4boiy++kCSFhoaqWbNmCgsL0y+//KKVK1dq5cqVeuWVV7R69Wq1bt3aum/p97Aj1157rdPr7y0WLlyod955R4GBgQ7Xz58//4plNG7cWNddd12Z68taV3q/wsJCnTlzRikpKdq4caPee+89de/eXbNnz1ZsbGwFzsS7rVu3Tg888IByc3MVGBioxo0bq169ejpz5oy2bt2qLVu2aNasWTp16pTNfkVFRXr++ef18ccfq7i4WEFBQWrevLlq166tkydPas2aNVqzZo1ee+01LV26tEYmQPcWVbm/ck8GShAYK+Hvf/87rVZu4Oi679y5U3369NEvv/yicePGWT9EoubVr1/fJghJ0pIlS5SUlKT169fr/fffL3MUMV/TpUsXLV26VJs2bSozMEZHR0v6Ixg62sZS1uW4xzh28eJF3X333dq8ebPq16+vt99+Ww8//LDCwsKs2/zwww/68MMPNXPmTP388882gdHRexj2brjhBh08eFBr1qxRr1697NYfPHhQ27Zts25XlqFDh9q1IlaEo/1ycnL0r3/9SxMnTtSGDRvUoUMHbdu2TY0bN650+d4iJydH/fv3V25urnr37q2PP/7YJiRnZ2dr2bJlDv/fe/TRR/XFF1+odu3amjRpkgYPHqzIyEjr+oyMDE2fPl0ffvih9u3b51eBsSr3V+7JQAm6pMIr3XrrrZowYYIkac2aNW6ujf/p37+/RowYIUk2Q1n7OkvIcxQ+Tp06pR9//FGdOnVSQkKC9uzZo5ycHLvtLEGya9euzq2sD3nttde0efNmxcTEaMuWLRo4cKBNWJSkVq1a6dNPP9X69evLbRFA2f76179KKrsVcd68eZLk0hEAIyMjNXjwYO3YsUOtW7fWb7/9poEDB7rs+O7w73//W6dOnVJkZKS++OILuxbV6OhoDRo0SCtX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e1apqalq0qRJmT8nTpxQVlaWtRWxY8eOdse+vCXz/PnzWrRoUbXOJzAwUJ07d7ZZ9uWXX9o9W7h161a7AWq6du1arWMDAICKIzACgJd49tlnFRkZabPsvffes06jkZiYqDZt2tisHzp0qMaOHav//ve/Sk9P1549e/TNN99o/Pjxuummm5SQkKDdu3dbt7/jjjvsWipfeeUVvf3229q9e7c2bdqkPn36VHuEVEkaMWKEzevc3Fx16dJFy5Yt0759+zR37lzdd999NtsEBQXZDcIDAACchy6pAOAloqKiNGLECJspJU6dOqVp06Zp7NixMplMmjlzprp162YNkfn5+Xrvvff03nvvVegYwcHBevvtt5WUlGRdZpmbsfT8jGFhYcrLy6vW+fTt21d9+/bVV199ZV22f/9+PfDAA2XuM3HiRLVo0aJaxwUAABVHCyMAeJHnn39eoaGhNsumTJliDW/t2rXTmjVrypzD8XIhISG65pprbJb99a9/1fjx48vc55ZbbtFrr71ms+zyKT4qwjLFx9/+9rcrbhsUFKS33npLEyZMqPRxAABA1REYAcCLxMTEaOjQoTbLTp48qenTp1tf33777Tpw4IDmzJmjhx56SLGxsapVq5aCgoJUt25dtWvXTsOGDdOCBQt08uRJ9e7d2+44kydP1rfffqu77rpLUVFRCgsLU3x8vCZNmqStW7faPWtYr169Kp1PaGiokpOTtX37dj311FNq3bq1oqKirHVt3769XnzxRaWnp+vFF1+s0jEAAEDVmYzLx1AHAKAcBQUFatu2rX744QfrsocfflhffPGFG2sFAACcgRZGAICdu+66S59++qmOHj1qs3z//v0aMGCATViUZNfqCQAAfAMtjAAAO9HR0Tp79qwkqVatWoqMjFRubq51MJ3SkpKSNHfuXFdXEQAAuACjpAIAynXhwgVduHDBbnlAQIBGjRqld955xw21AgAArkALIwDAzooVK7RmzRpt3bpVmZmZ+v3332UYhqKjoxUXF6cuXbpo0KBBat68uburCgAAnIjACAAAAABwiEFvAAAAAAAOERgBAAAAAA4RGAEAAAAADhEYAQAAAAAOERgBAAAAAA4RGAEAAAAADhEYAQAAAAAOERgBAAAAAA79f2epNC9KOjobAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "##Compute future-minus-historical / historical changes\n", + "idx = pd.IndexSlice\n", + "met_set = ['AAD','rp1', 'rp15'] # select metrics to plots\n", + "nmets = len(met_set)\n", + "impf_namelist = impf_namelist\n", + "sel_reg = reglist\n", + "modlist = modlist_allscen+modlist_ssp585\n", + "subset_df = reg_df.loc[modlist,idx[sel_reg,met_set,:,impf_namelist]]\n", + "diff_df = subset_df.loc[:,idx[:,:,\"ssp585\"]]-subset_df.loc[:,idx[:,:,\"historical\"]].values\n", + "diff_rel_df = 100*diff_df.div(subset_df.loc[:,idx[:,:,\"historical\"]].values)\n", + "\n", + "#subset impf\n", + "impfi = \"Sw2010\"\n", + "diff_df_ss = diff_rel_df.loc[:,idx[:,:,:,impfi]].copy()\n", + "diff_df_ss.columns = diff_df_ss.columns.droplevel((2,3))\n", + "diff_df_ss.index.name = \"model\"\n", + "diff_df_ss.columns.name = \"reg\"\n", + "stacked_all = pd.DataFrame(diff_df_ss.stack(level=[\"region\"])).reset_index()\n", + "stacked_all_met = pd.DataFrame(diff_df_ss.stack(level=[\"region\",\"metric\"]),columns=['value']).reset_index()\n", + "stacked_all_met.sort_values(by='value');\n", + "\n", + "## Plot\n", + "import seaborn as sns\n", + "#plotting params\n", + "saving = False\n", + "break_ax = True #separate y-axis in two to deal with outliers\n", + "savenameimp = make_fn(['imp','stacked',impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + "#title =' a) Multi-model distributions of changes in '+ \", \".join(met_set)+ ', aggregated by regions '\n", + "title = '(b)'\n", + "\n", + "#labels option\n", + "ttsize = 16\n", + "sublabsize = 16\n", + "gllabsize = 8\n", + "cbarlabsize = 14\n", + "cbarticksize = 14\n", + "\n", + "#colors\n", + "cpal = sns.color_palette(\"tab10\")\n", + "#initiate fig\n", + "fig = plt.figure(figsize=(10,1*7))\n", + "\n", + "nrows = 2\n", + "\n", + "gridspec={'height_ratios':np.repeat([1/3,2/3],nrows/2)}\n", + "axs = fig.subplots(nrows=nrows,ncols=1,sharey=False,sharex=True,gridspec_kw=gridspec)\n", + "fig.subplots_adjust(hspace=0.1) # adjust space between axes\n", + "\n", + "ax1 = axs[0]\n", + "ax2 = axs[1]\n", + "sns.boxplot(ax=ax1,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n", + "sns.boxplot(ax=ax2,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n", + "\n", + "#bottom axis\n", + "ax2.axhline(0,linewidth=2,color=\"r\")\n", + "ax2.set_ylabel('')#,fontweight='bold'\n", + "ax2.set_xlabel('Region')#fontsize = cbarticksize,fontweight='bold'\n", + "ax2.yaxis.set_label_position(\"right\")\n", + "ax2.get_legend().remove()\n", + "ax2.yaxis.tick_right()\n", + "ax2.tick_params(axis='y')# labelsize=cbarticksize\n", + "ax2.tick_params(axis='x')#labelsize=cbarticksize\n", + "\n", + "#top axis\n", + "ax1.yaxis.set_label_position(\"right\")\n", + "ax1.yaxis.tick_right()\n", + "ax1.set_title(title,loc='left')#fontsize = cbarticksize,fontweight='bold'\n", + "ax1.tick_params(axis='y')#labelsize=cbarticksize\n", + "ax1.tick_params(axis='x')#labelsize=cbarticksize\n", + "ax1.set_ylabel('')\n", + "ax1.set_xlabel('')\n", + "ax1.legend(loc=\"upper left\")\n", + "\n", + "# zoom-in / limit the view to different portions of the data\n", + "ax1.set_ylim(200, 1500) # outliers only\n", + "#ax1.set_yscale('log')\n", + "ax2.set_ylim(-100, 200) # most of the data\n", + "\n", + "#common y label\n", + "fig.supylabel('Future-minus-past / past change [%]',x=0.99,fontsize = cbarticksize,fontweight='bold')\n", + "fig.supylabel\n", + "\n", + "# hide the spines between ax and ax2\n", + "ax1.spines.bottom.set_visible(False)\n", + "ax2.spines.top.set_visible(False)\n", + "ax1.xaxis.tick_top()\n", + "ax1.tick_params(labeltop=False) # don't put tick labels at the top\n", + "ax2.xaxis.tick_bottom()\n", + "\n", + "#add breaks\n", + "d = .5 # proportion of vertical to horizontal extent of the slanted line\n", + "kwargs = dict(marker=[(-1, -d), (1, d)],\n", + " linestyle=\"none\", color='k', mec='k', mew=1, clip_on=False)#markersize=12\n", + "ax1.plot([0, 1], [0, 0], transform=ax1.transAxes, **kwargs)\n", + "ax2.plot([0, 1], [1, 1], transform=ax2.transAxes, **kwargs)\n" + ] + }, + { + "cell_type": "markdown", + "id": "b2bb3f57-4ea3-4cd9-8767-3be283f4e2a2", + "metadata": {}, + "source": [ + "## Damage maps" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "e67e5c70-5f37-4de7-a8ab-e4089457482d", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:30:19.452164Z", + "iopub.status.busy": "2023-01-09T08:30:19.451757Z", + "iopub.status.idle": "2023-01-09T08:30:19.464147Z", + "shell.execute_reply": "2023-01-09T08:30:19.463434Z", + "shell.execute_reply.started": "2023-01-09T08:30:19.452111Z" + }, + "tags": [] + }, + "outputs": [], + "source": [ + "#select simulation\n", + "modlist = modlist_allscen+modlist_ssp585\n", + "\n", + "modset = 'allmods'\n", + "pastname = 'historical'\n", + "futname = 'ssp585'\n", + "scenlist = [pastname,futname]\n", + "impfname = 'Sw2010'\n", + "pp_funcname = str(pp_func_dic[impfname]).split(\" \")[1]\n", + "bnSWM_proc = 'qt98pst_mask_abs15_cutarea1-5E5_gst1-00_bias_corrWG10_SWM_br_day_EU_winE'\n", + "met_list = ['aai'] #metrics to select\n", + "met_dict = dict()\n", + "data_dict = dict()\n", + "\n", + "for met in met_list:\n", + " met_dict[met] = dict()\n", + "\n", + "for scen in scenlist:\n", + " data_dict[scen] = cp.deepcopy(met_dict)\n", + "\n", + "savenameimp = make_fn(['imp','stacked',impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + "colnames1 = ['AAI past','AAI future', 'AAI future-past']\n", + "aai_df = pd.DataFrame(columns=colnames1,index=modlist)\n", + "colnames2 = ['15yr impact past','15yr impact future', '15yr impact future-past']\n", + "rp_df = pd.DataFrame(columns=colnames2,index=modlist)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "f7d48f37-9df9-4ac2-bb4f-7428ba88f297", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:30:33.706211Z", + "iopub.status.busy": "2023-01-09T08:30:33.705775Z", + "iopub.status.idle": "2023-01-09T08:32:37.761158Z", + "shell.execute_reply": "2023-01-09T08:32:37.760133Z", + "shell.execute_reply.started": "2023-01-09T08:30:33.706161Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-13 12:57:22,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1.4999986888142303e-06\n", + "2024-03-13 12:57:22,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2919990695081651e-06\n", + "2024-03-13 12:57:22,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "8.329989213962108e-07\n", + "2024-03-13 12:57:22,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.333999534836039e-06\n", + "2024-03-13 12:57:22,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.375001374981366e-06\n", + "2024-03-13 12:57:22,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.45800004247576e-06\n", + "2024-03-13 12:57:22,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.207999957841821e-06\n", + "2024-03-13 12:57:22,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0839994502021e-06\n", + "2024-03-13 12:57:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.375001374981366e-06\n", + "2024-03-13 12:57:22,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "8.750012057134882e-07\n", + "2024-03-13 12:57:22,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4170000213198364e-06\n", + "2024-03-13 12:57:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:22,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:22,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.8330010789213702e-06\n", + "2024-03-13 12:57:22,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:22,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0419989848742262e-06\n", + "2024-03-13 12:57:22,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "9.57999873207882e-07\n", + "2024-03-13 12:57:22,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1249994713580236e-06\n", + "2024-03-13 12:57:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4170000213198364e-06\n", + "2024-03-13 12:57:22,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.541999154142104e-06\n", + "2024-03-13 12:57:22,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:23,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1669999366858974e-06\n", + "2024-03-13 12:57:23,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3330009096534923e-06\n", + "2024-03-13 12:57:23,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2920008884975687e-06\n", + "2024-03-13 12:57:23,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1669999366858974e-06\n", + "2024-03-13 12:57:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.5420009731315076e-06\n", + "2024-03-13 12:57:23,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0419989848742262e-06\n", + "2024-03-13 12:57:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "9.57999873207882e-07\n", + "2024-03-13 12:57:23,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2919990695081651e-06\n", + "2024-03-13 12:57:23,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0000003385357559e-06\n", + "2024-03-13 12:57:23,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2910004443256184e-06\n", + "2024-03-13 12:57:23,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1249994713580236e-06\n", + "2024-03-13 12:57:23,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "8.329989213962108e-07\n", + "2024-03-13 12:57:23,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2090004020137712e-06\n", + "2024-03-13 12:57:23,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.5420009731315076e-06\n", + "2024-03-13 12:57:23,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.583999619469978e-06\n", + "2024-03-13 12:57:23,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.333999534836039e-06\n", + "2024-03-13 12:57:23,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.5410005289595574e-06\n", + "2024-03-13 12:57:23,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1669999366858974e-06\n", + "2024-03-13 12:57:23,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.45800004247576e-06\n", + "2024-03-13 12:57:23,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2919990695081651e-06\n", + "2024-03-13 12:57:23,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0410003596916795e-06\n", + "2024-03-13 12:57:23,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1249994713580236e-06\n", + "2024-03-13 12:57:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2089985830243677e-06\n", + "2024-03-13 12:57:23,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2499986041802913e-06\n", + "2024-03-13 12:57:23,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4999986888142303e-06\n", + "2024-03-13 12:57:23,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "7.920007192296907e-07\n", + "2024-03-13 12:57:23,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1249994713580236e-06\n", + "2024-03-13 12:57:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.2500004231696948e-06\n", + "2024-03-13 12:57:24,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4590004866477102e-06\n", + "2024-03-13 12:57:24,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4589986676583067e-06\n", + "2024-03-13 12:57:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.333999534836039e-06\n", + "2024-03-13 12:57:24,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.4170000213198364e-06\n", + "2024-03-13 12:57:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.3749995559919626e-06\n", + "2024-03-13 12:57:24,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "5.04200033901725e-06\n", + "2024-03-13 12:57:24,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0839994502021e-06\n", + "2024-03-13 12:57:24,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.0830008250195533e-06\n", + "2024-03-13 12:57:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "1.1669999366858974e-06\n", + "2024-03-13 12:57:24,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "9.590003173798323e-07\n" + ] + } + ], + "source": [ + "## Load damage data and compute spatial distribution of the damage metrics for each GCM\n", + "## Spatial maps are stored in a dict structure\n", + "for modname in modlist:\n", + " for scen in scenlist:\n", + "\n", + " # get processing func\n", + " pp_funcname = str(pp_func_dic[impfname]).split(\" \")[1]\n", + "\n", + " if stack:\n", + " savenameimp = make_fn(['imp','EU','stacked',impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + " else:\n", + " savenameimp = make_fn(['imp','EU','nmem'+str(imem),impfname , pp_funcname,scen,modname],bnSWM_proc)\n", + "\n", + " ## open impacts\n", + " #past\n", + " imp = Impact()\n", + " imp = imp.from_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + " imp.imp_mat = imp.read_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + "\n", + " for met in met_list:\n", + " start_time = timer()\n", + " if met == 'aai':\n", + " imp_met = imp.eai_exp\n", + " else:\n", + " imp_met = imp.local_exceedance_imp(return_periods=[met])\n", + " imp_met = imp_met.reshape((imp_met.shape[1],))\n", + "\n", + " time_delta_past = timer() - start_time\n", + " print(time_delta_past)\n", + " data_dict[scen][met][modname] = imp_met\n", + "\n", + " del imp_met\n", + " del imp" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "b9e9036a-870a-4174-8e89-507529e648ea", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:35:28.769276Z", + "iopub.status.busy": "2023-01-09T08:35:28.768979Z", + "iopub.status.idle": "2023-01-09T08:35:37.677583Z", + "shell.execute_reply": "2023-01-09T08:35:37.677026Z", + "shell.execute_reply.started": "2023-01-09T08:35:28.769244Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-13 12:57:25,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2754: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_val['geometry'] = gpd.GeoSeries(\n", + "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2497: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", + " df_poly['geometry'] = apply_box(points_df)\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "##Plot multimodel mean (or median) change in AAI and rp event\n", + "import matplotlib as mpl\n", + "\n", + "#select data\n", + "modlist = modlist_allscen+modlist_ssp585\n", + "modset = 'allmods'\n", + "nmods = len(modlist)\n", + "pastname = 'historical'\n", + "futname = 'ssp585'\n", + "\n", + "#select metrics\n", + "sel_mets = ['aai']\n", + "nmets = len(sel_mets)\n", + "const = 1 #add a constant value to historical damages to avoid dividing by 0\n", + "\n", + "#function to compute fut-hist / hist changes\n", + "def calc_rel_diff(metp, metf, const=0):\n", + " metd = 100*((metf-metp)/(metp+const)) #version 1: add a constant\n", + " metd[np.isinf(metd)] = np.nan #change inf to 0s\n", + " return metd\n", + "\n", + "#plotting param\n", + "saving = False\n", + "stat = 0.5\n", + "nrows = nmets\n", + "ncols = 1\n", + "colorLabel = 'Future-minus-past / past change [%]'\n", + "maintitle = \"(a)\"\n", + "plot_agr = True #plot model agreement\n", + "agr_lvl = 0.75\n", + "\n", + "#colormap\n", + "cmap = mpl.colormaps['coolwarm']\n", + "cmap.set_bad('None')\n", + "\n", + "#hatching\n", + "hatchsign = ['//']\n", + "sign_lvls = [agr_lvl,1]\n", + "\n", + "\n", + "#initiate plot\n", + "fig = plt.figure(figsize=(10*ncols,7*nrows))\n", + "axs = fig.subplots(nrows=nmets, ncols=1,subplot_kw={'projection': ccrs.PlateCarree()},sharey=True)\n", + "\n", + "#preload any impact object\n", + "savenameimp = make_fn(['imp', 'EU','stacked',impfname , pp_funcname,scenlist[0],modlist[0]],bnSWM_proc)\n", + "imp = Impact()\n", + "imp= imp.from_csv(results_folder+'impact/'+savenameimp+'.csv')\n", + "imp.imp_mat = imp.read_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", + "\n", + "#load exposure file and create dataarray from exp to plot model agreement\n", + "exp_plot = Exposures.from_hdf5(results_folder+'exposure/exp_m1_n1_cropped1_res600.h5')\n", + "agr_df = cp.deepcopy(exp_plot.gdf[['value','latitude','longitude']])\n", + "\n", + "for i,met in enumerate(sel_mets):\n", + "\n", + " met_list_ss = []\n", + " pos_agr_list = []\n", + " neg_agr_list = []\n", + " for modname in modlist:\n", + "\n", + " #get damage metric map from dictionarry\n", + " metp = data_dict[pastname][met][modname].copy()\n", + " metf = data_dict[futname][met][modname].copy()\n", + "\n", + " #compute fut-minus-historical / historical change\n", + " metd = calc_rel_diff(metp, metf, const=const)\n", + " met_list_ss.append(metd)\n", + " if plot_agr:\n", + " pos_mod_agr = cp.deepcopy(metd)\n", + " neg_mod_agr = cp.deepcopy(metd)\n", + "\n", + " pos_mod_agr[np.where(metd>0)] = 1\n", + " neg_mod_agr[np.where(metd<=0)] = 1\n", + " pos_mod_agr[np.where(metd<=0)] = 0\n", + " neg_mod_agr[np.where(metd>0)] = 0\n", + "\n", + " neg_agr_list.append(neg_mod_agr)\n", + " pos_agr_list.append(pos_mod_agr)\n", + "\n", + " #stack the impact maps\n", + " met_ar_ss = np.vstack(met_list_ss)\n", + " if plot_agr:\n", + " pos_agr_ar = np.vstack(pos_agr_list)\n", + " neg_agr_ar = np.vstack(neg_agr_list)\n", + "\n", + " #compute either mean or median or other statisitc\n", + " if stat == 'mean':\n", + " met_stat = met_ar_ss.mean(axis=0)\n", + " else:\n", + " met_stat = np.quantile(met_ar_ss,stat,axis=0) #use nanmean or nanquantile instead?\n", + " if stat==0.5:\n", + " statname = 'median'\n", + " else:\n", + " statname = format(100*stat,'3.1f')\n", + " #stt = 'Multimodel '+statname+' change in '+str(met)+'yr return event\\n'+impf_name\n", + "\n", + " #write impact map into impact object\n", + " imp.eai_exp = met_stat\n", + "\n", + " #plot\n", + " if nmets != 1:\n", + " axi = axs[i]\n", + " else:\n", + " axi = axs\n", + " imp.plot_raster_eai_exposure(axis=axi,raster_f=lambda x:x,cmap=cmap,vmin=-60,vmax=60,label=colorLabel)\n", + " if plot_agr:\n", + " #agr_stat = np.abs(pos_agr_ar.mean(axis=0)) #take mean and absolute value to get agreement\n", + " pos_agr_prop = pos_agr_ar.sum(axis=0)/nmods\n", + " neg_agr_prop = neg_agr_ar.sum(axis=0)/nmods\n", + " agr_stat = np.vstack([pos_agr_prop,neg_agr_prop]).max(axis=0)\n", + " agr_df['value'] = agr_stat\n", + " agr_df = agr_df.pivot(index='latitude',columns='longitude',values='value')\n", + " lat = agr_df.index\n", + " lon = agr_df.columns\n", + " agr_da = xr.DataArray(agr_df)\n", + " agr_da.plot.contourf(ax=axi,colors='none',levels=sign_lvls,hatches=hatchsign,extend='neither',add_colorbar=False)\n", + " axi.set_title('')\n", + " axi.set_title(maintitle,loc=\"left\") #fontsize=axttsize,fontweight='bold'\n", + "\n", + "\n", + " #update cbar\n", + " im = axi.images\n", + " cb = im[-1].colorbar\n", + " #cb.remove()\n", + " #cb.ax.tick_params(labelsize=cbticksize)\n", + " cb.set_label(label=colorLabel)#fontsize=cblabsize,fontweight='bold'\n" + ] + }, + { + "cell_type": "markdown", + "id": "2eaae707-d3ca-4b82-a44b-e8aa34333522", + "metadata": {}, + "source": [ + "## Exceedance frequency curves" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "36d0cacc-327a-4a2d-9f7c-011856d4498e", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:44:10.084523Z", + "iopub.status.busy": "2023-01-09T08:44:10.084218Z", + "iopub.status.idle": "2023-01-09T08:44:11.395704Z", + "shell.execute_reply": "2023-01-09T08:44:11.394989Z", + "shell.execute_reply.started": "2023-01-09T08:44:10.084490Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2024-03-13 11:39:30,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:30,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:31,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:34,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:35,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:37,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:38,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:41,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:42,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:45,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:47,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:48,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:49,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:50,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:51,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:52,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:53,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:54,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:55,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:56,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:57,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:58,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:39:59,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:00,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:01,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:03,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:04,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:05,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:06,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:07,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:08,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:09,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:10,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:11,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:12,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:15,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:16,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:17,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:18,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:19,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:20,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:22,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:23,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:24,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:26,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:27,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:29,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:30,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:31,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:33,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:34,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:35,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:36,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:37,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:38,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:40,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:41,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:42,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:43,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:45,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:47,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:48,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:49,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:50,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:51,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:53,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:54,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:55,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:57,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:40:59,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:00,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:03,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:04,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:05,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:06,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:07,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:08,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:09,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:10,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:12,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:13,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:14,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:15,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:17,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:18,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:19,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:20,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:22,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:23,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:25,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:26,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:27,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:30,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:32,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:33,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:34,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:35,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:36,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:37,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:39,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:40,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:41,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:42,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:45,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:46,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:47,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:48,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:50,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:52,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:53,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:54,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:55,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:56,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:58,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:41:59,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:00,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:01,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:02,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:03,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:04,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:05,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:06,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:07,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:08,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:09,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:10,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:12,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:14,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:15,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:16,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:17,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:19,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:20,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:22,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:23,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:24,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:26,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:27,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:28,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:29,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:30,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:33,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:34,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:35,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:38,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:39,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:40,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:41,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:42,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:45,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:46,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:47,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:48,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:49,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:51,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:52,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:54,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:55,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:56,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:57,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:42:59,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:00,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:01,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:02,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:03,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:04,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:06,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:07,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:08,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:09,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:12,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:14,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:15,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:16,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:17,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:18,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:19,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:20,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:21,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:23,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:24,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:25,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:26,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:27,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:29,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:32,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:33,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:35,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:36,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:37,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:38,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:39,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:40,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:41,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:42,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:43,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:45,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:46,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:47,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:48,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:50,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:52,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:53,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:54,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:55,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:56,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:57,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:43:59,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:00,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:01,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:02,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:03,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:04,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:05,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:06,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:07,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:08,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:09,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:10,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:11,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:12,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:13,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:14,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:15,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:16,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:17,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:18,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:19,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:20,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:21,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:22,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:23,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:24,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:25,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:26,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:27,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:28,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:29,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:30,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:31,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:32,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:33,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:34,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:36,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:37,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:38,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:41,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:44,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:45,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:46,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:47,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:48,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:49,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:50,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:51,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:52,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:55,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:56,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:57,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:58,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:44:59,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:00,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:01,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:02,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:04,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:05,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:06,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:07,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:08,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:09,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:10,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:12,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:14,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:15,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:16,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:17,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:18,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:19,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:20,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:22,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:24,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:25,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:26,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:27,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:28,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:30,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:32,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:33,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:34,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:37,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:38,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:39,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:40,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:41,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:42,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:43,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:45,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:47,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:48,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:49,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:50,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:51,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:52,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:53,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:54,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:55,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:56,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:57,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:45:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:00,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:01,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:02,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:04,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:05,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:06,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:07,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:08,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:09,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:11,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:13,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:15,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:16,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:17,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:18,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:19,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:21,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:22,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:24,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:25,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:26,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:27,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:28,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:29,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:30,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:31,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:34,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:35,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:36,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:37,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:38,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:40,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:42,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:43,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:45,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:46,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:47,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:48,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:49,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:50,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:51,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:53,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:54,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:55,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:57,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:46:59,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:00,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:01,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:02,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:03,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:04,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:05,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:06,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:07,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:08,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:09,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:10,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:11,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:12,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:13,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:14,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:16,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:17,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:18,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:20,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:21,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:22,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:23,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:24,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:26,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:27,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:31,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:32,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:33,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:36,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:37,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:38,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:39,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:40,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:41,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:42,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:43,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:44,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:47,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:48,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:49,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:51,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:52,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:53,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:55,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:57,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:58,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:47:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:00,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:02,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:04,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:05,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:06,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:07,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:08,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:09,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:10,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:11,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:12,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:13,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:14,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:15,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:16,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:17,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:19,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:20,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:21,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:22,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:23,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:24,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:25,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:26,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:28,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:31,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:33,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:34,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:35,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:37,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:39,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:40,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:41,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:42,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:43,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:44,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:45,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:47,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:48,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:51,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:54,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:55,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:56,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:57,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:58,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:48:59,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:00,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:01,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:04,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:05,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:06,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:07,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:08,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:09,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:10,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:11,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:12,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:13,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:14,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:15,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:16,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:17,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:19,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:20,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:21,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:22,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:23,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:24,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:25,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:26,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:28,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:37,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:38,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:39,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:40,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:41,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:42,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:45,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:46,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:47,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:48,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:54,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:55,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:56,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:57,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:49:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:02,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:04,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:05,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:06,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:07,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:08,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:09,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:10,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:12,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:13,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:14,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:15,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:16,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:17,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:18,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:19,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:20,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:22,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:23,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:24,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:26,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:27,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:28,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:29,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:30,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:31,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:32,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:34,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:35,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:37,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:38,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:40,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:41,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:42,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:43,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:44,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:45,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:47,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:48,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:49,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:51,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:52,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:53,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:54,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:55,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:56,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:58,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:50:59,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:00,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:01,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:03,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:04,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:05,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:06,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:07,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:08,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:09,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:10,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:11,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:12,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:14,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:16,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:17,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:18,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:20,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:22,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:23,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:24,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:25,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:26,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:27,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:28,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:29,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:32,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:33,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:34,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:36,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:37,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:38,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:40,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:43,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:44,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:45,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:46,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:47,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:48,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:49,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:50,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:52,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:58,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:51:59,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:00,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:01,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:02,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:04,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:05,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:06,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:07,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:09,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:11,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:13,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:14,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:15,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:16,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:17,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:19,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:20,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:21,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:22,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:23,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:24,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:25,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:27,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:28,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:30,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:32,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:34,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:36,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:37,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:42,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:43,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:46,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:47,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:48,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:50,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:51,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:52,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:54,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:55,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:56,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:57,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:58,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:52:59,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:00,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:01,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:03,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:04,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:06,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:08,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:09,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:10,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:11,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:12,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:13,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:14,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:15,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:16,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:17,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:18,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:19,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:20,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:21,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:22,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:23,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:26,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:27,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:30,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:31,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:32,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:34,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:36,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:41,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:42,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:44,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:47,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:48,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:50,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:51,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:52,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:53,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:54,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:55,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:56,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:57,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:53:59,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:01,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:03,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:04,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:05,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:06,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:09,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:10,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:12,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:14,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:15,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:17,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:18,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:19,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:20,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:21,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:22,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:24,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:25,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:26,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:27,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:28,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:29,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:31,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:32,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:33,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:34,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:37,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:38,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:39,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:40,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:41,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:43,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:44,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:45,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:47,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:48,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:49,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:50,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:52,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:53,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:54,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:56,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:57,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:54:59,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:01,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:02,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:04,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:05,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:06,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:07,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:08,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:09,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:12,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:13,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:14,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:15,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:17,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:19,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:20,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:22,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:25,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:27,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:29,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:31,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:33,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:34,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:36,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:39,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:40,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:42,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:44,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:46,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:47,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:48,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:49,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:50,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:51,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:52,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:53,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:54,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:55,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:56,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:57,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:58,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:55:59,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:00,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:01,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:02,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:04,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:05,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:06,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:07,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:09,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:11,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:12,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:13,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:14,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:16,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:17,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:18,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:20,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:21,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:22,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:25,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:27,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:29,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:30,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:31,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:32,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:33,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:35,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:37,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:38,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:39,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:40,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:41,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:43,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 11:56:44,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:54,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:55,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:56,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:12:59,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:24,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:25,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:26,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:27,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:28,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:29,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:31,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:32,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:33,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:34,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:36,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:37,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:38,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:39,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:40,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:41,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:43,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:44,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:45,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:46,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:48,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:50,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:51,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:53,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:54,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:55,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:56,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:57,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:18:59,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:00,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:01,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:02,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:03,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:04,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:05,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:06,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:07,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:08,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:09,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:10,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:13,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:15,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:16,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:17,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:18,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:19,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:26,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:28,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:29,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:31,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:34,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:35,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:37,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:40,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:41,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:43,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:45,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:46,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:47,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:49,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:50,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:51,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:52,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:53,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:54,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:55,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:56,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:57,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:58,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:19:59,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:00,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:01,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:02,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:03,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:04,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:05,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:06,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:07,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:08,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:09,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:12,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:13,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:14,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:15,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:16,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:17,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:18,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:19,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:20,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:22,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:23,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:24,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:25,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:26,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:27,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:29,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:30,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:32,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:34,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:35,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:36,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:37,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:39,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:40,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:41,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:42,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:43,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:44,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:45,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:46,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:47,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:49,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:50,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:52,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:53,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:54,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:55,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:56,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:57,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:58,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:20:59,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:00,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:01,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:02,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:03,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:04,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:05,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:06,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:07,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:08,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:10,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:12,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:13,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:14,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:15,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:16,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:17,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:19,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:21,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:22,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:23,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:24,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:26,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:28,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:29,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:30,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:31,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:34,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:35,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:36,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:37,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:39,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:40,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:41,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:42,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:43,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:45,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:48,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:50,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:51,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:53,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:54,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:55,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:56,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:57,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:58,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:21:59,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:00,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:01,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:02,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:04,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:06,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:07,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:08,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:09,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:10,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:11,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:12,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:13,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:14,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:16,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:17,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:19,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:20,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:21,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:22,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:23,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:25,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:27,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:28,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:30,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:31,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:33,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:34,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:35,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:37,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:38,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:39,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:42,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:45,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:46,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:47,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:48,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:50,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:51,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:52,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:53,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:54,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:55,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:57,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:58,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:22:59,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:00,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:02,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:03,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:04,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:06,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:07,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:08,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:09,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:10,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:11,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:12,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:13,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:14,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:15,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:16,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:17,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:18,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:19,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:20,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:21,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:23,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:24,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:25,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:27,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:28,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:29,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:30,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:33,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:34,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:37,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:38,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:39,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:40,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:42,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:43,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:45,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:46,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:48,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:50,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:51,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:52,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:53,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:54,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:57,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:58,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:23:59,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:00,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:01,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:02,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:03,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:04,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:05,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:06,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:08,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:09,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:10,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:12,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:13,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:14,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:15,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:16,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:17,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:19,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:21,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:22,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:24,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:25,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:27,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:28,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:29,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:30,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:31,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:33,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:34,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:35,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:36,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:37,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:38,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:39,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:40,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:41,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:42,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:45,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", + "2024-03-13 12:24:46,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" + ] + } + ], + "source": [ + "from random import choices\n", + "\n", + "#stacked EFC, for the whole multimodel ensemble, with bootstrap, first subsampling then stacking, to have equal rpz of each GCM\n", + "#select data\n", + "modlist = modlist_allscen+modlist_ssp585\n", + "pastname = 'historical'\n", + "futname = 'ssp585'\n", + "nmods = len(modlist)\n", + "nyrs_tot = 30*nmods\n", + "impfname = 'Sw2010'\n", + "pp_funcname = str(pp_func_dic[impfname]).split(\" \")[1]\n", + "bnSWM_proc = 'qt98pst_mask_abs15_cutarea1-5E5_gst1-00_bias_corrWG10_SWM_br_day_EU_winE'\n", + "\n", + "#bootrap param\n", + "nreps = 1000\n", + "sample_frac = 2/3 #take subsample 2/3 of the intial data\n", + "\n", + "#return periods\n", + "rp_max = int(round(nyrs_tot*sample_frac))\n", + "#rps = np.arange(1,400)\n", + "#rps = np.append(rps,[450,500,750,1000,1280,rp_max])\n", + "rps = np.arange(1,rp_max)\n", + "\n", + "#efc lists\n", + "efcs_past = []\n", + "efcs_fut = []\n", + "for rep in range(nreps):\n", + " #events lists\n", + " events_past = []\n", + " events_fut = []\n", + " for imod,modname in enumerate(modlist):\n", + " savenameimpp = make_fn(['imp','EU', 'stacked', impfname, pp_funcname,pastname,modname],bnSWM_proc)\n", + " savenameimpf = make_fn(['imp','EU', 'stacked', impfname, pp_funcname,futname,modname],bnSWM_proc)\n", + "\n", + " ##impacts\n", + " #past\n", + " impp = Impact()\n", + " impp = impp.from_csv(results_folder+'impact/'+savenameimpp+'.csv')\n", + " yrs_past = round(1/impp.frequency[0])\n", + " mem_past = yrs_past/30\n", + " nev_past = len(impp.at_event)\n", + " sub_sample_size_past = int(round(sample_frac*nev_past/mem_past))\n", + " sub_sample_past = choices(impp.at_event.tolist(), k=sub_sample_size_past) #use sample() for sampling without replacement\n", + " #normalize by nb of members so that GCM with multiple members are not over represented\n", + " events_past.append(sub_sample_past) # add events\n", + "\n", + "\n", + "\n", + " #future\n", + " impf = Impact()\n", + " impf = impf.from_csv(results_folder+'impact/'+savenameimpf+'.csv')\n", + " yrs_fut = round(1/impf.frequency[0])\n", + " mem_fut = yrs_fut/30\n", + " nev_fut = len(impf.at_event)\n", + " sub_sample_size_fut = int(round(sample_frac*nev_fut/mem_fut))\n", + " sub_sample_fut = choices(impf.at_event.tolist(), k=sub_sample_size_fut) #use sample() for sampling without replacement\n", + " #normalize by nb of members so that GCM with multiple members are not over represented\n", + " events_fut.append(sub_sample_fut) # add events\n", + "\n", + " del impp\n", + " del impf\n", + "\n", + " #stack all models together\n", + " allev_past_stack = np.hstack(events_past)\n", + " allev_fut_stack = np.hstack(events_fut)\n", + "\n", + " nb_events_past = len(allev_past_stack)\n", + " nb_events_fut = len(allev_fut_stack)\n", + "\n", + " #initiate impact objects and replace at_event_and freq\n", + " impp_all = Impact()\n", + " impf_all = Impact()\n", + "\n", + " #events\n", + " impp_all.at_event = allev_past_stack\n", + " impf_all.at_event = allev_fut_stack\n", + "\n", + " #frequency\n", + " impp_all.frequency = np.repeat(1/rp_max,nb_events_past)\n", + " impf_all.frequency = np.repeat(1/rp_max,nb_events_fut)\n", + "\n", + " #compute efcs\n", + " efcp = impp_all.calc_freq_curve(return_per=rps).impact\n", + " efcf = impf_all.calc_freq_curve(return_per=rps).impact\n", + " efcs_past.append(efcp)\n", + " efcs_fut.append(efcf)\n", + " del impp_all\n", + " del impf_all\n", + "\n", + "#stack EFCs\n", + "efcs_past_stack = np.vstack(efcs_past)\n", + "efcs_fut_stack = np.vstack(efcs_fut)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "8d805c1b-0e6b-4af5-843d-51fb6f47fdf3", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:59:13.686604Z", + "iopub.status.busy": "2023-01-09T08:59:13.686234Z", + "iopub.status.idle": "2023-01-09T08:59:13.934446Z", + "shell.execute_reply": "2023-01-09T08:59:13.933948Z", + "shell.execute_reply.started": "2023-01-09T08:59:13.686556Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA/MAAALHCAYAAADCYBKsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3xcd53v/9eZrlHvsuQq914TO7bjJE5PSAgkIXS49AV298L+7u5yN9uAS9kFFnZhgewCoYSQDYFUcAgOKS5pdtx7tyWrSzOaGU095/fHsSUrthNJlnQ00vv5eOjhmVM/Y1vSvOfbDMuyLEREREREREQka7icLkBERERERERE+kdhXkRERERERCTLKMyLiIiIiIiIZBmFeREREREREZEsozAvIiIiIiIikmUU5kVERERERESyjMK8iIiIiIiISJZRmBcRERERERHJMgrzIiIiIiIiIllGYV5EREREREQkyyjMn/GLX/yCT37ykyxbtgy/349hGNx///2Ddv2XX36Zt7/97ZSVleH3+5kxYwb/8A//QFdX16DdQ0RERERERMYGj9MFjBT33nsvx48fp6ysjHHjxnH8+PFBu/ZvfvMb7rnnHtxuN3feeSdVVVVs3LiRL33pSzz77LOsX78ev98/aPcTERERERGR0U0t82f893//N8eOHaO5uZlPfepTg3bdrq4uPvnJT2IYBhs3buSBBx7gm9/8Jps3b+Yzn/kMGzdu5N/+7d8G7X4iIiIiIiIy+inMn3HdddcxadKkPh/f1NTE5z73OaZNm4bf76esrIw777yTXbt29Tpu48aNtLS0cMcdd7B06dLu7YZh8OUvfxmAH/zgB1iWNTgvREREREREREY9hfkBOHz4MEuXLuU73/kO06ZN48///M+55ZZbWLduHStWrODll1/uPraxsRGAKVOmnHedoqIiiouLOX78OEeOHBm2+kVERERERCS7acz8AHzwgx+koaGBp59+muuvv757+7333suyZcv4+Mc/zo4dOwAoLy8H4OjRo+ddJxQK0d7eDsCBAweYOnXqMFQvIiIiIiIi2U4t8/30+uuvs2nTJj70oQ/1CvIAM2bM4OMf/zg7d+7s7m6/cuVKCgoKePTRR3n99dd7Hf/3f//33Y87OjqGvHYREREREREZHdQy308vvfQSAA0NDfzTP/3Tefv37dvX/ee8efPIy8vjW9/6Fh/72Me44ooruOuuu6iqqmLTpk1s2bKFWbNmsW/fPtxu93C+DBEREREREcliCvP91NbWBsBTTz3FU089ddHjotFo9+OPfvSjVFdX8y//8i889thjZDIZli1bxvr16/n617/Ovn37urvji4iIiIiIiLwVhfl+KigoAOA//uM/+OxnP9vn826++WZuvvnm87Z/4AMfwOVysWTJkkGrUUREREREREa3rBszn8lk+K//+i+uuuoqysrKCAQCTJo0iTvuuIPHHntsyO+/fPlyADZv3nzJ19q4cSPHjh3jpptuorCw8JKvJyIiIiIiImNDVoX59vZ2Vq9ezSc+8QlefPFFysrKmDdvHqlUiscee4yf//znQ17D5ZdfzvLly3nwwQd56KGHzttvmibPP/98r23hcPi84+rr6/nYxz6Gx+PhS1/60pDVKyIiIiIiIqOPYVmW5XQRfWGaJldddRUbNmzgne98J9/5zncYP3589/5Tp05x5MgR1qxZM6Dr//d//zcbNmwAYOfOnWzdupVVq1Yxbdo0AO644w7uuOMOwF5m7pprruH48eOsWLGCpUuXEggEOHHiBJs3b6a5uZl4PN597S9/+cv84he/YPXq1VRUVHDy5Ekee+wxYrEYP/rRj/jQhz40wL8VERERERERGYuyZsz8fffdx4YNG7jmmmt4+OGHcbl6dyoYP358r3DfXxs2bOCnP/1pr20bN25k48aNAEyePLk7zE+ZMoXXX3+db33rWzz66KP8+Mc/xu12M27cONasWcNdd93V6zorV67k+eef54knnqC9vZ3S0lJuueUW/uZv/obFixcPuGYREREREREZm7KmZX727Nns27ePDRs2sGrVKqfLEREREREREXFMVoT5gwcPMmPGDEpKSmhpaeHxxx/n4Ycf5vTp05SXl3PdddfxgQ98AL/f73SpIiIiIiIiIkMuK8L8r371K97znvewcuVKpkyZwgMPPHDeMbNmzWLdunVMmjTJgQpFREREREREhk9WjJk/ffo0AK+++iqbNm3iYx/7GPfeey9VVVVs2LCBT3ziE+zbt48777yTV1555bzx9ACJRIJEItH93DRN2traKC0txTCMYXstIiIiIiIikv0sy6Kzs5Pq6uoLZtChlhVhPhqNApBKpbjyyiv5r//6r+591157Lb/5zW9YvHgxW7Zs4amnnuK2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TE1NDU8++SS//vWv+dnPfsY999wzqscere9973t8/vOfp7S0lOrqanbv3s3PfvYzNmzYwMaNG3nggQf47ne/y7Rp06iqqmLPnj388Ic/ZPfu3bz88ssnDACtW7eOW265hc7OTkKhEDNmzKCjo4O1a9eydu1a7r//fr71rW8NuU1vby9XXXUVb7/9NoZhMG/ePDzP4zvf+Q5r165l5syZp/U11dfXc+utt2KaJgUFBVRXVxOJRDh8+DD/8i//wuOPP8769espKCgY9vYbN24ceKNg5syZ1NTUsGnTJu68804SiQT33nvv6X2ThThHZKj0bPNc2PsOJKJQUK63xSOw9n91QAfILNBT7I+XiEJLLfj8UFgFH/97uPoj1LW7PLKul+IskxXVw4T/93A9xe82xWjr0WXjM1MMbl0VGrcgH0/qvvTxhOKm5UEe/GCaBHkhhBDiAnH//ffz0EMPUVdXx8aNG6mvr+fqq6+mp6dn1MXpnn76adavX8+iRYs4cuQIu3fv5p133qG2tpaGhgb+9V//Fb9fv+b55Cc/yWuvvTZw29dee23IR2FhIQCbN2/m85//PEop/vmf/5n6+nreeecdGhoa+NM//VNisRgf+chHqK+vH/ac/v7v/56Pf/zjNDY2smHDBg4cOMCdd9550q+jq6uLm2++mbq6Oq6//nqOHDnCjh07ePfdd+ns7OSVV17h2muvHXKb++67j61bt9Le3s7OnTvZuHEjTU1NPPXUU4RCIT772c/S3d09qu/jaD344IM88sgjHD16lM2bN7N//36qq6vZuXMnd999Nw8//DAvvPACBw4cYPv27WzatIns7GzWrVvH73//+yH3VVdXx+23305XVxf/8A//QHt7O1u3bqWmpobXX3+dkpISvv3tb/Ob3/xmyO3+7u/+jrfffpuKigq2bdvGtm3bBr5XjY2N/PKXvzytryktLY2f/vSnNDc3DzwXd+3aRX19PZ/73Oc4fPgwX/7yl0/6PfnEJz5BU1MTGzZsoLGxkQceeACABx54ANd1T+t8hDhXJMyfbW/9Dp76d12h3jDAScK6x6CrVe9PzYIr7tShvV9PB/z+IX15/hr46Fegcj49MY/v/bYHyzK4bknwlFPjXU/xwpY4ta36F1DIb/CB5SFC/jOfUu96HpsOJviftRFe2xUnP9OiPM+HbclTSgghhLhQfOpT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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "##Plotting\n", + "#plotting params\n", + "stt = '' #title\n", + "axttsize = 16\n", + "axlabsize=16\n", + "legttsize=12\n", + "stats = [0.05,0.5,0.95] #quantiles of the booststrapped distribution to highlight\n", + "qt_label = \": \"+format(100*stats[0],'.0f')+\"-\"+format(100*stats[-1],'.0f')+\"th quantiles \"\n", + "medxp = 100 #mark correspondance of past RP event in the future future\n", + "\n", + "def find_nearest(array, value):\n", + " array = np.asarray(array)\n", + " idx = (np.abs(array - value)).argmin()\n", + " return array[idx]\n", + "\n", + "#initiate figure\n", + "fig = plt.figure(constrained_layout=True,figsize=(10,7))\n", + "axi = fig.subplots(nrows=1, ncols=ncols,sharex=False,sharey=False)\n", + "\n", + "\n", + "#compute stats\n", + "stat_dict_past = {}\n", + "stat_dict_fut = {}\n", + "for stat in stats:\n", + " efcp_stat = np.quantile(efcs_past_stack,stat,axis=0)\n", + " efcf_stat = np.quantile(efcs_fut_stack,stat,axis=0)\n", + " stat_dict_past[stat] = efcp_stat\n", + " stat_dict_fut[stat] = efcf_stat\n", + " if stat== 0.5:\n", + " ls = \"solid\"\n", + " lw = 2\n", + " labelp = pastname+' median'\n", + " labelf = futname+' median'\n", + " medyp = efcp_stat[medxp-1]\n", + " prec = 1E8\n", + " #medxf = np.where((efcf_stat > medyp-prec) & (efcf_stat < medyp+prec ))[0][0]\n", + " medxf = np.where(efcf_stat==find_nearest(efcf_stat, medyp))[0][0]\n", + " medyf = efcf_stat[medxf]\n", + " else:\n", + " ls = 'dashed'\n", + " lw = 1\n", + " labelp = None\n", + " labelf = None\n", + "\n", + " axi.plot(rps,efcp_stat,color=\"cornflowerblue\",linewidth=lw,linestyle=ls,label=labelp)\n", + " axi.plot(rps,efcf_stat,color=\"coral\",linewidth=lw,linestyle=ls,label=labelf)\n", + "\n", + "axi.fill_between(rps, stat_dict_past[stats[0]],stat_dict_past[stats[-1]],color=\"cornflowerblue\",alpha=0.3,label=pastname+qt_label)\n", + "axi.fill_between(rps, stat_dict_fut[stats[0]],stat_dict_fut[stats[-1]],color=\"coral\",alpha=0.3,label=futname+qt_label)\n", + "\n", + "#annotate\n", + "\n", + "axi.annotate(\"\",\n", + " xy=(medxp, medyp), xycoords='data',\n", + " xytext=(medxp, 0), textcoords='data',\n", + " arrowprops=dict(arrowstyle=\"->\",\n", + " color=\"black\",\n", + " patchB=None,\n", + " shrinkB=0,\n", + " ),\n", + " )\n", + "axi.annotate(\"\",\n", + " xy=(medxf, medyp), xycoords='data',\n", + " xytext=(medxp, medyp), textcoords='data',\n", + " arrowprops=dict(arrowstyle=\"->\",\n", + " color=\"black\",\n", + " patchB=None,\n", + " shrinkB=0,\n", + " ),\n", + " )\n", + "\n", + "axi.annotate(\"\",\n", + " xy=(medxf, 0), xycoords='data',\n", + " xytext=(medxf, medyp), textcoords='data',\n", + " arrowprops=dict(arrowstyle=\"->\",\n", + " color=\"black\",\n", + " patchB=None,\n", + " shrinkB=0,\n", + " ),\n", + " )\n", + "axi.annotate(str(medxf),\n", + " xy=(medxf, 0), xycoords='data',\n", + " xytext=(medxf-0.18, -2.6E8), textcoords='data',\n", + " fontsize=16, color='red'\n", + " )\n", + "##title and legends\n", + "axi.set_title(stt,loc='left',fontsize=axttsize,fontweight='bold')\n", + "axi.legend()#fontsize=legttsize\n", + "pos_yoft = list(axi.yaxis.get_offset_text().get_position())\n", + "new_pos = pos_yoft.copy()\n", + "new_pos[0] = 0.0\n", + "new_pos[1] = 1\n", + "axi.yaxis.get_offset_text().set_position(new_pos)\n", + "axi.yaxis.get_offset_text().set_fontsize(14)\n", + "axi.set_xlabel(\"Return period [year]\")#,fontsize=axlabsize,fontweight='bold'\n", + "axi.set_ylabel(\"Damages [USD]\")#,fontsize=axlabsize,fontweight='bold'\n", + "axi.set_xlim([0,rp_max/2])\n", + "axi.set_ylim([0,6E9])\n", + "axi.tick_params(axis='both', labelsize=axlabsize)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "climada_env", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.18" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb b/2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb new file mode 100644 index 0000000..1e16bdb --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb @@ -0,0 +1,1408 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "9f3df8d9-eaa8-43c0-af10-fa93f3571047", + "metadata": {}, + "source": [ + "# Projections and uncertainties of future winter windstorm damage in Europe\n", + "## Notebook 3: Uncertainty and sensitivity quantification\n", + "This notebook reproduces the results of the uncertainty and sensitivity analysis of the publication Projections and uncertainties of future winter windstorm damage in Europe. The hazard data must be pre-processed beforehand using the notebook 1. The CLIMADA package needs to be installed. See tutorial on https://github.com/CLIMADA-project/climada_python/blob/main/doc/guide/Guide_Installation.ipynb for guidance to install CLIMADA. See tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/1_main_climada.ipynb for guidance to use CLIMADA. Exposure data is loaded using LitPop (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb). The uncertainty and sensitivity analysis is done using the delta_impact submodule of the unsequa module (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_engine_unsequa.ipynb). The delta_impact module can be find under the feature/unsequa_delta_climate branch of the CLIMADA githbu project (https://github.com/CLIMADA-project/climada_python/blob/feature/unsequa_delta_climate/doc/tutorial/climada_entity_LitPop.ipynb).\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "c91b3d37-14bb-4155-b451-068f8f0c80d6", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-04T10:52:15.219299Z", + "iopub.status.busy": "2023-01-04T10:52:15.218857Z", + "iopub.status.idle": "2023-01-04T10:52:15.229570Z", + "shell.execute_reply": "2023-01-04T10:52:15.229169Z", + "shell.execute_reply.started": "2023-01-04T10:52:15.219261Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The autotime extension is already loaded. To reload it, use:\n", + " %reload_ext autotime\n", + "time: 1.09 ms (started: 2023-01-04 11:52:15 +01:00)\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "import copy as cp\n", + "import pandas as pd\n", + "import scipy as sp\n", + "import geopandas as gpd\n", + "import seaborn as sns\n", + "import countryinfo\n", + "from timeit import default_timer as timer \n", + "\n", + "#CLIMADA\n", + "from climada.engine import Impact\n", + "from climada.entity import ImpactFunc,ImpactFuncSet, Exposures\n", + "from climada.entity.impact_funcs import storm_europe\n", + "from climada.hazard import Hazard\n", + "from climada.engine.unsequa import InputVar, CalcImpact, CalcDeltaImpact\n", + "%load_ext autotime\n", + "idx = pd.IndexSlice" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "3b641fa9-a62f-4602-b670-4ed631596b4e", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-04T10:52:16.370625Z", + "iopub.status.busy": "2023-01-04T10:52:16.370370Z", + "iopub.status.idle": "2023-01-04T10:52:16.375524Z", + "shell.execute_reply": "2023-01-04T10:52:16.375089Z", + "shell.execute_reply.started": "2023-01-04T10:52:16.370601Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 965 µs (started: 2023-01-04 11:52:16 +01:00)\n" + ] + } + ], + "source": [ + "#plotting params\n", + "import matplotlib.pyplot as plt\n", + "import matplotlib as mpl\n", + "import matplotlib.colors as mcolors\n", + "#plt.style.use('tableau-colorblind10')\n", + "SMALL_SIZE = 16\n", + "MEDIUM_SIZE = 18\n", + "BIGGER_SIZE = 24\n", + "mpl.rcParams['axes.titleweight'] = 'bold'\n", + "mpl.rcParams['axes.titlesize'] = MEDIUM_SIZE\n", + "mpl.rcParams['axes.titlelocation'] = 'left'\n", + "mpl.rcParams['axes.labelsize'] = MEDIUM_SIZE\n", + "mpl.rcParams['axes.labelweight'] = 'bold'\n", + "mpl.rcParams['xtick.labelsize'] = SMALL_SIZE\n", + "mpl.rcParams['ytick.labelsize'] = SMALL_SIZE\n", + "mpl.rcParams['legend.fontsize'] = SMALL_SIZE\n", + "tab_cols = mcolors.TABLEAU_COLORS\n", + "clist = mpl.rcParams['axes.prop_cycle']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "380745ba-2457-4ce1-96d1-1ee62fe3e264", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-04T10:52:19.319272Z", + "iopub.status.busy": "2023-01-04T10:52:19.318981Z", + "iopub.status.idle": "2023-01-04T10:52:19.324916Z", + "shell.execute_reply": "2023-01-04T10:52:19.324523Z", + "shell.execute_reply.started": "2023-01-04T10:52:19.319248Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 3.49 ms (started: 2023-01-04 11:52:19 +01:00)\n" + ] + } + ], + "source": [ + "##function definition\n", + "from functions import *\n", + "from climada_functions import *\n", + "from constants import * " + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "9574ab62-3db0-499b-a6c3-ad922bf47ff8", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T08:59:43.109188Z", + "iopub.status.busy": "2023-01-09T08:59:43.108826Z", + "iopub.status.idle": "2023-01-09T08:59:43.123354Z", + "shell.execute_reply": "2023-01-09T08:59:43.122661Z", + "shell.execute_reply.started": "2023-01-09T08:59:43.109153Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 3.89 ms (started: 2023-01-09 09:59:43 +01:00)\n" + ] + } + ], + "source": [ + "#setup folders and folder variables. \n", + "# All these variables need to be defined correctly for the code to work.\n", + "# The strings in these variables should point to existing folders on your computer.\n", + "project_folder = '/home/lseverino/MT/scripts MTP'\n", + "data_folder = '/home/lseverino/MT/scripts MTP/data/' #this folder will contain the netcdf files downloaded by this script\n", + "results_folder = '/home/lseverino/MT/scripts MTP/results2/' #this folder will contain results (e.g. climada impact data) \n", + " # produced by this script\n", + "file_identifier = '_v01' # this string is added to all files written by this code" + ] + }, + { + "cell_type": "markdown", + "id": "acc6f6eb-ca9a-4969-b5cc-2c3d73df22d3", + "metadata": {}, + "source": [ + "### Prepare data" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "96d75ad9-fac4-4b7a-a058-d700eb4eca22", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:00:44.323027Z", + "iopub.status.busy": "2023-01-09T09:00:44.322729Z", + "iopub.status.idle": "2023-01-09T09:00:44.354609Z", + "shell.execute_reply": "2023-01-09T09:00:44.354056Z", + "shell.execute_reply.started": "2023-01-09T09:00:44.322995Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 24.7 ms (started: 2023-01-09 10:00:44 +01:00)\n" + ] + } + ], + "source": [ + "##Prepare country lists for regional damage assessment\n", + "\n", + "EU_countries = ['Andorra', 'Albania', 'Austria', 'Belgium', 'Bulgaria', 'Belarus', 'Czechia', 'Germany', \n", + " 'Denmark', 'Estonia', 'Finland', 'France', 'Greece', 'Hungary', 'Italy', 'Liechtenstein', 'Lithuania', \n", + " 'Luxembourg', 'Latvia', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Romania', \n", + " 'Sweden', 'Slovenia', 'Slovakia', 'San Marino', 'Ukraine', 'Bosnia and Herzegovina', 'Croatia', 'Moldova', \n", + " 'Monaco', 'Montenegro', 'Serbia', 'Spain', 'Switzerland', 'United Kingdom of Great Britain and Northern Ireland', 'Vatican City State', 'Ireland', \n", + " 'Moldova, Republic of', 'Kosovo', 'Macedonia, the former Yugoslav Republic of']#'United Kingdom','Czech Republic'\n", + "#regions \n", + "BI = ['United Kingdom of Great Britain and Northern Ireland','Ireland'] \n", + "IP = ['Spain', 'Portugal','Andorra']\n", + "WEU = ['France','Monaco','Netherlands','Luxembourg','Belgium']#'Kingdom of the Netherlands'\n", + "CEU = ['Switzerland','Germany','Liechtenstein','Czechia', 'Austria']#'Czech Republic'\n", + "SC = ['Denmark','Sweden','Finland','Norway','Estonia','Latvia','Lithuania']\n", + "MED = ['Italy','Albania','Bosnia and Herzegovina','Croatia','Montenegro','Malta','Greece','San Marino',\n", + " 'Slovenia','Macedonia, the former Yugoslav Republic of','Bulgaria','Serbia','Kosovo']\n", + "EEU = [ctr for ctr in EU_countries if ctr not in (BI+IP+WEU+CEU+SC+MED)] # eastern Europe\n", + "\n", + "\n", + "reg_ctrnames_dict = {'BI':BI, 'IP':IP, 'WEU':WEU , 'CEU':CEU, 'SC':SC, 'MED':MED,'EEU':EEU, 'EU':EU_countries}\n", + "\n", + "#construct dict with region ids to select regional exposure\n", + "reg_ctrids_dict = {}\n", + "for reg,ctr_list in reg_ctrnames_dict.items():\n", + " #get region ids from litpop info file\n", + " reg_ids = ltpop_info['region_id'].where(ltpop_info['country_name'].isin(ctr_list)).dropna().tolist()\n", + " reg_ctrids_dict[reg] = reg_ids" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "e878fae2-4cee-4803-b4f7-420ca26fe464", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:06:56.704178Z", + "iopub.status.busy": "2023-01-09T09:06:56.703862Z", + "iopub.status.idle": "2023-01-09T09:06:56.712056Z", + "shell.execute_reply": "2023-01-09T09:06:56.711215Z", + "shell.execute_reply.started": "2023-01-09T09:06:56.704138Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 1.55 ms (started: 2023-01-09 10:06:56 +01:00)\n" + ] + } + ], + "source": [ + "## Litpop files\n", + "from climada.entity import LitPop\n", + "\n", + "#exp param\n", + "res_exp =600\n", + "exp_thres=1\n", + "#basename for exposure files\n", + "expbn = \"_\".join([\"_cropped\"+str(exp_thres),\"res\"+str(res_exp)])+'.h5'\n", + "\n", + "#Litpop params\n", + "mlist = [0.75,1,1.25]\n", + "nlist = [0.75,1,1.25]\n", + "\n", + "\n", + "\n", + "litpop_list = []\n", + "litpop_dict = {} #to store file names\n", + "for m in mlist:\n", + " for n in nlist:\n", + " expfn = \"_\".join([\"exp\",\"m\"+str(m).replace(\".\",\"-\"),\"n\"+str(n)])+expbn\n", + " litpop_dict[(m, n)] = results_folder+'exposure/'+expfn\n", + " litpop_list.append(results_folder+'exposure/'+expfn)" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "816eba86-ca0b-4baf-83b4-71f6c4e62498", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:06:58.934055Z", + "iopub.status.busy": "2023-01-09T09:06:58.933815Z", + "iopub.status.idle": "2023-01-09T09:06:58.942191Z", + "shell.execute_reply": "2023-01-09T09:06:58.941680Z", + "shell.execute_reply.started": "2023-01-09T09:06:58.934032Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 2.36 ms (started: 2023-01-09 10:06:58 +01:00)\n" + ] + } + ], + "source": [ + "## Hazard files\n", + "#base name\n", + "bn = 'SWM_br_day_EU_winE'\n", + "\n", + "#preprocessing \n", + "gst_fact = 1.00\n", + "qt = 0.98\n", + "cut=1.5E5\n", + "mask_abs = 15 #mask everything below 15 m/s\n", + "bias_corr = \"bias_corrWG10\"\n", + "\n", + "#naming\n", + "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cut,'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-')]\n", + "bn_proc = make_fn(processings,bn)\n", + "\n", + "#unc param to consider: GCMs, SSPs, and members (and impf type?)\n", + "#modlist = ['CanESM5', 'CNRM-CM6-1', 'CNRM-ESM2-1', 'EC-Earth3-Veg', 'EC-Earth3-Veg-LR', 'IPSL-CM6A-LR', 'MIROC-ES2L', 'UKESM1-0-LL', 'MRI-ESM2-0', 'FGOALS-g3', 'ACCESS-ESM1-5', 'MIROC6', 'MPI-ESM1-2-LR', 'KACE-1-0-G']\n", + "modlist = ['CanESM5', 'IPSL-CM6A-LR']\n", + "\n", + "scenlist= ['ssp126','ssp245','ssp370','ssp585']\n", + "nmems_max = 3\n", + "memlist = [str(i) for i in np.arange(0,nmems_max)]\n", + "impflist = ['Sw2010','CubEOT']\n", + "impf_procdict = {'CubEOT':'scale_qt','Sw2010':'mask_qt'}\n", + "reglist = regions4\n", + "\n", + "haz_dict = {}\n", + "for mod in modlist:\n", + " for scen in scenlist+['historical']:\n", + " for mem in memlist:\n", + " for impf,impf_proc in impf_procdict.items():\n", + " haz_fn = make_fn(['haz',bias_corr,'nmem'+mem,scen,mod,impf_proc]+processings,bn,filetype='.h5')\n", + " haz_dict[(mod,scen,mem,impf)] = results.joinpath('hazards/memsep/'+scen+'/'+haz_fn)" + ] + }, + { + "cell_type": "markdown", + "id": "dc39781a-cb1a-4898-9aee-22cecbb90f0f", + "metadata": {}, + "source": [ + "### Define InputVars" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "8a8e8b2a-035a-4e1b-87d2-1f63a277f28d", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:08:19.888359Z", + "iopub.status.busy": "2023-01-09T09:08:19.887927Z", + "iopub.status.idle": "2023-01-09T09:08:19.915704Z", + "shell.execute_reply": "2023-01-09T09:08:19.915102Z", + "shell.execute_reply.started": "2023-01-09T09:08:19.888309Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 10 ms (started: 2023-01-09 10:08:19 +01:00)\n" + ] + } + ], + "source": [ + "#Define the input variable for the loading files\n", + "def haz_func_fut(modid, scenid, memid ,impfid=0, modlist=modlist, scenlist=scenlist, memlist=memlist,\n", + " impflist=impflist, filename_dict=haz_dict):\n", + " \n", + " mod = modlist[int(modid)] #map variables\n", + " scen = scenlist[int(scenid)]\n", + " mem = memlist[int(memid)]\n", + " impf = impflist[int(impfid)]\n", + " filename = filename_dict[(mod,scen,mem,impf)]\n", + " global haz_base\n", + " if 'haz_base' in globals():\n", + " if isinstance(haz_base, Hazard):\n", + " if haz_base.tag.file_name != str(filename):\n", + " haz_base = Hazard.from_hdf5(filename)\n", + " else:\n", + " haz_base = Hazard.from_hdf5(filename)\n", + "\n", + " haz = cp.deepcopy(haz_base)\n", + " return haz\n", + "\n", + "\n", + "haz_distr_fut = {\"modid\": sp.stats.randint(low=0, high=len(modlist)),\n", + " \"scenid\": sp.stats.randint(low=0, high=len(scenlist)),\n", + " \"memid\": sp.stats.randint(low=0, high=len(memlist)),\n", + " \"impfid\": sp.stats.randint(low=0, high=len(impflist))\n", + "}\n", + "haz_iv_fut = InputVar(haz_func_fut, haz_distr_fut)\n", + "\n", + "def haz_func_past(modid, memid=0 ,impfid=0, modlist=modlist, memlist=memlist,\n", + " impflist=impflist, filename_dict=haz_dict):\n", + " \n", + " mod = modlist[int(modid)] #map variables\n", + " scen = 'historical'\n", + " mem = memlist[int(memid)]\n", + " impf = impflist[int(impfid)]\n", + " filename = filename_dict[(mod,scen,mem,impf)]\n", + " global haz_base\n", + " if 'haz_base' in globals():\n", + " if isinstance(haz_base, Hazard):\n", + " if haz_base.tag.file_name != str(filename):\n", + " haz_base = Hazard.from_hdf5(filename)\n", + " else:\n", + " haz_base = Hazard.from_hdf5(filename)\n", + "\n", + " haz = cp.deepcopy(haz_base)\n", + " return haz\n", + "\n", + "haz_distr_past = {\"modid\": sp.stats.randint(low=0, high=len(modlist)),\n", + " \"memid\": sp.stats.randint(low=0, high=len(memlist)),\n", + " \"impfid\": sp.stats.randint(low=0, high=len(impflist))\n", + "}\n", + "haz_iv_past = InputVar(haz_func_past, haz_distr_past)\n", + "\n", + "def impf_func(impfid=0, impflist=impflist, x_scale=1, y_scale=1, _id=1): \n", + " impf = impflist[int(impfid)] #map variables\n", + " x_scale = np.float64(x_scale)\n", + " y_scale = np.float64(y_scale)\n", + "\n", + " if impf == 'Sw2010':\n", + " imp_fun = storm_europe.ImpfStormEurope.from_schwierz()\n", + " imp_fun.id = _id\n", + " imp_fun.intensity = imp_fun.intensity*x_scale #perturb intensity\n", + " imp_fun.mdd = imp_fun.mdd*y_scale #perturb mdd\n", + " \n", + " \n", + " elif impf == 'CubEOT':\n", + " imp_fun = ImpactFunc()\n", + " imp_fun.haz_type = 'WS'\n", + " imp_fun.id = _id\n", + " imp_fun.intensity_unit = 'm/s'\n", + " imp_fun.intensity = np.linspace(0, 1, num=20)\n", + " imp_fun.mdd = imp_fun.intensity**3\n", + " imp_fun.intensity = np.append(imp_fun.intensity, [100])\n", + " imp_fun.mdd = np.append(imp_fun.mdd, [1]) #cap intensity to 100%\n", + " imp_fun.paa = np.ones(imp_fun.intensity.shape)\n", + " imp_fun.mdd = CubEOT_corr_fact*imp_fun.mdd #add correction factor\n", + " imp_fun.intensity = imp_fun.intensity*x_scale #perturb intensity\n", + " imp_fun.mdd = imp_fun.mdd*y_scale #perturb mdd\n", + " \n", + " else:\n", + " raise ValueError('Unknown impact function.')\n", + " \n", + " imp_fun.check()\n", + " impf_set = ImpactFuncSet()\n", + " impf_set.append(imp_fun)\n", + " return impf_set\n", + "\n", + "impf_distr = {\n", + " \"impfid\": sp.stats.randint(low=0, high=len(impflist)),\n", + " \"x_scale\": sp.stats.uniform(0.8, 0.4),\n", + " \"y_scale\": sp.stats.uniform(0.8, 0.4) #with impf param uncertainty\n", + "} \n", + "\n", + "impf_iv = InputVar(impf_func, impf_distr)" + ] + }, + { + "cell_type": "markdown", + "id": "114b549a-de0a-408e-b03f-d9ccc3cce9e7", + "metadata": {}, + "source": [ + "## Make sample, compute uncertainty and sensitivity for each region" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "fa05fdda-f716-4e05-a4d0-6941b0bf39f9", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:08:20.916182Z", + "iopub.status.busy": "2023-01-09T09:08:20.915969Z", + "iopub.status.idle": "2023-01-09T09:09:43.600561Z", + "shell.execute_reply": "2023-01-09T09:09:43.600026Z", + "shell.execute_reply.started": "2023-01-09T09:08:20.916155Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:08:20,955 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,956 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,958 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,959 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,961 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,962 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,964 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:20,965 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:08:27,799 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,800 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,802 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,802 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,804 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,805 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,806 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:27,807 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:08:35,719 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,721 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,722 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,723 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,724 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,725 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,726 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:35,727 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:08:44,179 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,180 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,181 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,183 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,184 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,185 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,186 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:44,187 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:08:52,340 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,341 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,343 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,343 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,344 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,346 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,347 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:08:52,348 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:09:04,184 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,186 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,187 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,189 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,190 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,191 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,193 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:04,194 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:09:12,369 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,370 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,371 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,372 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,373 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,374 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,376 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:12,377 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-01-09 10:09:21,310 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,311 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,313 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,315 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,316 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,318 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,320 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n", + "2023-01-09 10:09:21,321 - climada.engine.unsequa.calc_base - WARNING - \n", + "\n", + "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n", + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", + " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 1min 22s (started: 2023-01-09 10:08:20 +01:00)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", + " Y = (Y - Y.mean()) / Y.std()\n" + ] + } + ], + "source": [ + "from pathos.pools import ProcessPool as Pool\n", + "\n", + "\n", + "#sampling params\n", + "N = 2**5\n", + "D = 7 #nb of param\n", + "N_sample = N*(2*D+2)\n", + "\n", + "res_dict = {} #dict to save results\n", + "\n", + "for reg in reglist:\n", + " \n", + " #need to define func here\n", + " def exp_func(f_exp=4, reg=reg, reg_dict=regids_dict ,filename_list=litpop_list):\n", + " #m = mlist[int(mid)] #map variables\n", + " #n = nlist[int(nid)]\n", + " #filename = filename_dict[(m,n)]\n", + " filename = filename_list[int(f_exp)]\n", + " global exp_base\n", + " if 'exp_base' in globals():\n", + " if isinstance(exp_base, Exposures):\n", + " if exp_base.tag.file_name != str(filename):\n", + " exp_base = Exposures.from_hdf5(filename)\n", + " else:\n", + " exp_base = Exposures.from_hdf5(filename)\n", + " if reg is not None:\n", + " reg_ids = regids_dict[reg]\n", + " exp = sel_reg_exp(reg_ids,exp_base)\n", + " else:\n", + " exp = exp_base.copy()\n", + " return exp\n", + "\n", + " exp_distr = {\n", + " 'f_exp': sp.stats.randint(low=0, high=len(litpop_list))}\n", + " \n", + " exp_iv = InputVar(exp_func, exp_distr)\n", + " \n", + " calc_imp = CalcDeltaImpact(exp_iv, impf_iv, haz_iv_past, exp_iv, impf_iv, haz_iv_fut)\n", + " \n", + " output_imp = calc_imp.make_sample(N=N) #sampling_kwargs={'skip_values': 2*N_sample}) #use N=100*(2*D+2)~1000\n", + "#\n", + " ##order samples\n", + " output_imp.order_samples(by=['f_exp','modid','scenid','memid','impfid'])\n", + " \n", + " \n", + " \n", + " #compute uncertainty\n", + " pool = Pool()\n", + " output_imp = calc_imp.uncertainty(output_imp,rp=[1,15,30],calc_eai_exp=False, calc_at_event=False,pool=pool)\n", + " pool.close() #Do not forget to close your pool!\n", + " pool.join()\n", + " pool.clear()\n", + " \n", + " #reorder samples back in place\n", + " idx = output_imp.samples_df.index.values\n", + " output_imp.samples_df.sort_index(inplace=True)\n", + " for metric in output_imp.uncertainty_metrics:\n", + " df = output_imp.__dict__[metric + '_unc_df']\n", + " df.index = idx\n", + " df.sort_index(inplace=True)\n", + " output_imp.__dict__[metric + '_unc_df'] = df\n", + " \n", + " #sensitivity calculation\n", + " output_imp = calc_imp.sensitivity(output_imp)\n", + " \n", + " #save into dict\n", + " res_dict[reg] = output_imp" + ] + }, + { + "cell_type": "markdown", + "id": "d5023a7c-371d-44c8-8722-eb5d8ec49c33", + "metadata": {}, + "source": [ + "### Plots" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "e04a978c-d07c-4b97-a686-362654d46a57", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:09:47.303501Z", + "iopub.status.busy": "2023-01-09T09:09:47.303034Z", + "iopub.status.idle": "2023-01-09T09:09:47.346692Z", + "shell.execute_reply": "2023-01-09T09:09:47.346178Z", + "shell.execute_reply.started": "2023-01-09T09:09:47.303434Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 36.6 ms (started: 2023-01-09 10:09:47 +01:00)\n" + ] + } + ], + "source": [ + "## prepare dataframe for uncertainty distribution plots\n", + "reg_unc_dict = {}\n", + "for reg, out_df in res_dict.items():\n", + " unc_dict = {}\n", + " for metric in out_df.uncertainty_metrics:\n", + " df = out_df.__dict__[metric + '_unc_df']\n", + " unc_dict[metric] = df\n", + " unc_df = pd.concat(unc_dict,axis=1)\n", + " unc_df.columns = unc_df.columns.droplevel(0)\n", + " reg_unc_dict[reg] = unc_df.drop('tot_value',axis=1)\n", + "reg_unc_df = pd.concat(reg_unc_dict,axis=1,names=[\"region\",\"metric\"])\n", + "stacked_df = pd.DataFrame(reg_unc_df.stack(level=[\"region\",\"metric\"]),columns=[\"value\"]).reset_index().drop('level_0',axis=1)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "071dd853-af00-4b4a-b06b-3357c0af49a4", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:09:52.850844Z", + "iopub.status.busy": "2023-01-09T09:09:52.850533Z", + "iopub.status.idle": "2023-01-09T09:09:54.083631Z", + "shell.execute_reply": "2023-01-09T09:09:54.083146Z", + "shell.execute_reply.started": "2023-01-09T09:09:52.850811Z" + }, + "tags": [] + }, + "outputs": [ + { + "data": { + "image/png": "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8G//9m+49NJLi9rddddd+Pa3v12V1W018fjjj+NXv/oV3nrrLSSTSSxYsADnnXcePvKRj8DhcKCnp6dkzNozzzyDxsZGTd/RwxFHHIGLLroIn/3sZ6fiUqqK5557Dj/96U/x2muvIZlMoq2tDaeddhouu+wy1NTUKO2i0Sjuvvtu/PnPf0ZPTw98Ph8OO+wwXH755Vi/fv0MXkFpsDHvkksuwZe//OWi/b29vUoW6XPPPYd7770Xt956q+H3HXPMMbjzzjs1380gCAJCoRA2bNiAK664AqtWrary1UwOF154IZ5//nnD/V/4whdw+umnH5LvQjn35vvf/z7e9773FbX55je/iSeeeAJ/+9vfpvJUZyUEQcAtt9yC5cuX4/bbb1e2/+Uvf4HD4cC6devgdruxfv16PP744/joRz+qtHniiSewefPmOR8meMgQSQA47bTTcMkllwCQBET37duH73//++jt7VUGyEMRP/3pTxXTejabxY4dO/Bf//Vf2LlzJ377298WxXXMNmzevBmPPfYYRkZGUFdXp2x/7rnnEAqF8Oyzz2rai6KIbdu24WMf+xgGBgbQ0dGB//t//6/ud88FIm2E//iP/8Cvf/1rfOhDH8LHPvYxeL1ePP/88/jud7+Lf/7zn7j55puVtp///OeLqjAwhEKh6TnhacLTTz+NK664AmeffTYuuOACuN1uvP322/jRj36Ef/3rX7j33nvB8zwOHDiAT37yk4hGo7jooouwatUqxGIx/OY3v8H555+Pm266SXdSnU0ghOAvf/mLLpF87LHHira53W78/Oc/1/2uQvdb4Xh64MAB/OxnP8NHP/pR/OxnP8PGjRurcAXVw4YNG3TvAwC0tLQgk8kAOLTeBQar98aGPq644gp87Wtfw4033oiTTjoJr7/+Om677TZceOGFaGtrAwBcfvnl+PSnP40bbrgBJ598Mv74xz9i27ZtuGce6FwfUkSyoaFBoyC/adMmCIKAr3zlK+jt7VUe+KGGVatWaQjYEUccgfHxcdx888149dVXZ73qPqsksG3bNsXCkkql8PLLL+Oyyy7DLbfcgp07dyqZd++88w7Gx8exZcsWPPTQQ3C73bP+GsvFgw8+iF/+8pf4xje+oVkBH3XUUVi6dCmuu+46PPzww0q884IFC+bdPTDCT3/6Uxx99NH45je/qWzbsmULFi1a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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 1.22 s (started: 2023-01-09 10:09:52 +01:00)\n" + ] + } + ], + "source": [ + "#with axis break\n", + "#plotting params\n", + "saving = False\n", + "met_set = ['aai_agg','rp1','rp15','rp30']\n", + "break_ax = True #separate y-axis in two to deal with outliers\n", + "savelocation=\"results/figures/uncertainty/\"\n", + "bn = \"nsamp\"+str(N_sample)\n", + "savefileName = make_fn([\"reg_unc\"]+impflist+output_imp.samples_df.columns.tolist(),bn,filetype=\".png\")\n", + "title ='Uncertainty distributions'\n", + "cpal = sns.color_palette(\"tab10\")\n", + "\n", + "#labels option\n", + "ttsize = 12\n", + "sublabsize = 12\n", + "gllabsize = 8\n", + "cbarlabsize = 16\n", + "cbarticksize = 16\n", + "\n", + "#initiate fig\n", + "fig = plt.figure(figsize=(10,7))\n", + "\n", + "nrows = 2\n", + " \n", + "gridspec={'height_ratios':np.repeat([1/3,2/3],nrows/2)}\n", + "axs = fig.subplots(nrows=nrows,ncols=1,sharey=False,sharex=True,gridspec_kw=gridspec)\n", + "fig.subplots_adjust(hspace=0.1) # adjust space between axes\n", + "\n", + "ax1 = axs[0]\n", + "ax2 = axs[1]\n", + "sns.violinplot(ax=ax1,x=\"region\",order=reglist, y=\"value\",data=stacked_df,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n", + "sns.violinplot(ax=ax2,x=\"region\",order=reglist, y=\"value\",data=stacked_df,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"Set3\"\n", + "\n", + "#bottom axis\n", + "ax2.axhline(0,linewidth=2,color=\"r\")\n", + "ax2.set_ylabel('')#,fontweight='bold'\n", + "ax2.set_xlabel('Region',fontsize = cbarticksize,fontweight='bold')#,fontweight='bold'\n", + "ax2.yaxis.set_label_position(\"right\")\n", + "ax2.get_legend().remove()\n", + "ax2.yaxis.tick_right()\n", + "ax2.tick_params(axis='y', labelsize=cbarticksize)\n", + "ax2.tick_params(axis='x', labelsize=cbarticksize)\n", + "\n", + "#top axis\n", + "ax1.yaxis.set_label_position(\"right\")\n", + "ax1.yaxis.tick_right()\n", + "#ax1.set_title(title,loc='left',fontsize = cbarticksize,fontweight='bold')\n", + "ax1.tick_params(axis='y', labelsize=cbarticksize)\n", + "ax1.tick_params(axis='x', labelsize=cbarticksize)\n", + "ax1.set_ylabel('')\n", + "ax1.set_xlabel('')\n", + "ax1.legend(loc=\"upper left\",frameon=True,title='Risk metric',title_fontsize=16)\n", + "\n", + "# zoom-in / limit the view to different portions of the data\n", + "ax1.set_ylim(150, 2000) # outliers only (150, 2000)\n", + "#ax1.set_yscale('log')\n", + "ax2.set_ylim(-150, 150) # most of the data (-150, 150)\n", + "\n", + "#common y label\n", + "fig.supylabel('Future-minus-past / past change [%]',fontsize = cbarticksize,fontweight='bold',x=0.99)\n", + "fig.supylabel\n", + "\n", + "# hide the spines between ax and ax2\n", + "ax1.spines.bottom.set_visible(False)\n", + "ax2.spines.top.set_visible(False)\n", + "ax1.xaxis.tick_top()\n", + "ax1.tick_params(labeltop=False) # don't put tick labels at the top\n", + "ax2.xaxis.tick_bottom()\n", + "\n", + "#add breaks\n", + "d = .5 # proportion of vertical to horizontal extent of the slanted line\n", + "kwargs = dict(marker=[(-1, -d), (1, d)], markersize=12,\n", + " linestyle=\"none\", color='k', mec='k', mew=1, clip_on=False)\n", + "ax1.plot([0, 1], [0, 0], transform=ax1.transAxes, **kwargs)\n", + "ax2.plot([0, 1], [1, 1], transform=ax2.transAxes, **kwargs)\n", + " \n", + "if saving:\n", + " fig.savefig(savelocation+savefileName,transparent=False,bbox_inches='tight')" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "b8b7850a-c6b7-42dd-9617-dca5c69479e1", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:09:58.244984Z", + "iopub.status.busy": "2023-01-09T09:09:58.244529Z", + "iopub.status.idle": "2023-01-09T09:09:58.327066Z", + "shell.execute_reply": "2023-01-09T09:09:58.326588Z", + "shell.execute_reply.started": "2023-01-09T09:09:58.244933Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 75.5 ms (started: 2023-01-09 10:09:58 +01:00)\n" + ] + } + ], + "source": [ + "## prepare dataframe for sensitivity plots\n", + "reg_sens_dict = {}\n", + "for reg, out_df in res_dict.items():\n", + " sens_dict = dict()\n", + " for metric in out_df.sensitivity_metrics:\n", + " df = out_df.__dict__[metric + '_sens_df']\n", + " try:\n", + " df.set_index(['param','param2','si'],inplace=True)\n", + " except:\n", + " pass\n", + " sens_dict[metric] = df\n", + " sens_df = pd.concat(sens_dict,axis=1)\n", + "\n", + " reg_sens_dict[reg] = sens_df.drop('tot_value',axis=1).droplevel(0,axis=1)\n", + "reg_sens_df = pd.concat(reg_sens_dict,axis=1,names=[\"region\",\"metric\"])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "3789ffa6-3735-4a08-9ba1-70be6e0f7eb3", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:09:59.509117Z", + "iopub.status.busy": "2023-01-09T09:09:59.508777Z", + "iopub.status.idle": "2023-01-09T09:09:59.535645Z", + "shell.execute_reply": "2023-01-09T09:09:59.535083Z", + "shell.execute_reply.started": "2023-01-09T09:09:59.509076Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 20.8 ms (started: 2023-01-09 10:09:59 +01:00)\n" + ] + } + ], + "source": [ + "metrics = ['aai_agg','rp15']\n", + "si_met = 'S1'\n", + "idx = pd.IndexSlice\n", + " \n", + "ss_df = reg_sens_df.loc[:,idx[:,metrics]].query(\"si==@si_met\")\n", + "ss_conf_df = reg_sens_df.loc[:,idx[:,metrics]].query(\"si==@si_met+'_conf'\")\n", + "\n", + "ss_df = ss_df.droplevel(\"param2\",axis=0).droplevel(\"si\",axis=0)\n", + "ss_conf_df = ss_conf_df.droplevel(\"param2\",axis=0).droplevel(\"si\",axis=0)\n", + "\n", + "#set negative values to 0\n", + "#ss_df[ss_df<0] = 0\n", + "\n", + "#drop useless params\n", + "params = ['modid','scenid','memid','impfid','f_exp','x_scale','y_scale']\n", + "keep = ['modid','memid','scenid','impfid']\n", + "keep = params\n", + "ss_df = ss_df.loc[keep].T\n", + "ss_conf_df = ss_conf_df.loc[keep].T" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "4b5b67ba-4d96-4251-8d93-550785617cc1", + "metadata": { + "execution": { + "iopub.execute_input": "2023-01-09T09:10:00.963738Z", + "iopub.status.busy": "2023-01-09T09:10:00.963305Z", + "iopub.status.idle": "2023-01-09T09:10:02.265683Z", + "shell.execute_reply": "2023-01-09T09:10:02.264975Z", + "shell.execute_reply.started": "2023-01-09T09:10:00.963689Z" + }, + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n", + "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", + "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", + " if ax.is_first_col():\n" + ] + }, + { + "data": { + "text/plain": [ + "Text(0.0, 1.0, '(a)')" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA2EAAAI+CAYAAAA1owKpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAACEYUlEQVR4nOzdd1yV5f/H8TcbFBWcuUcqLkTcaIIrM61MzexnoSY5StTMUVqOstIsE7dhrtBKv5Vmu8xZrhyZA8kcKeZGRESZ5/eHcfLIkIOcAbyej4cPOdd9Xfd93feHc3M+57rv63YwGAwGAQAAAACswtHWHQAAAACAwoQkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJOwezZs3Tz4+Ptq8eXOO28TFxcnPz0/PPvusBXsGAAAAwB6RhN2DCxcu6MMPP1S5cuX0wAMP5Lhd8eLF9eCDD2rbtm3asGGDBXsIAAAAwN6QhN2DZcuWKSEhQY8//ricnJzMatuzZ09J0ty5cy3RNQAAAAB2iiQsl27evKnPP/9cktSxY0ez2zdr1kzFihXToUOHdPDgwbzuHgAAAAA7RRKWSzt37lRsbKxKliypBg0amCxbu3atevbsqaZNm6phw4bq2LGj3nnnHV2/ft1Yx9nZWa1atZIkrVu3zqp9BwAAAGA7JGG5tG3bNklS/fr15ej432Fcu3atXn75ZR08eFDXrl1TYmKiTp8+rSVLlmjSpEkm60hP3nbt2mW9jgMAAACwKZKwXNq3b58kqWbNmiblq1atkiQ1b95cX331lb7++mu1bdtWkrR161aTuulto6KiTEbJAAAAABRczrbuQH516dIlSVKZMmVMyj/55BOdP39eLi4uKlmypGJiYlSpUiVJt6amv13p0qUlSWlpabp06ZKKFi1qhZ4DAAAAsCWSsFyKiYmRpAyJk8Fg0P79+/Xjjz9q3759io6ONi5LS0szqXt72ytXrqhq1aoW7DEAAAAAe0ASlksGg0GSMkxNP2bMGH311VcqUqSIOnfurOeff17nzp3TnDlzMqzDwcHB+LOzM6EAAAAACgM++eeSt7e3zp49a3Iv199//62vvvpKkjRhwgT16NFDkrR48eJM1xEfH2/8uUSJEhbsLQAAAAB7wcQcuZR+n9e5c+eMZQkJCcafN2zYoOPHj+unn37SkiVLjOUpKSnGn9PvK3N3d1f58uUt3WUAAAAAdoCRsFxq1KiRfvvtNx07dsxYVrNmTVWpUkWnTp3STz/9pJ9++ilDu5iYGJUtW1aSdPToUUlSnTp1uBwRAAAAKCQYCcul5s2bS5L27t1rnHDDxcVFH3zwgdq0aaNixYrJy8tLLVu21LJly+Tq6irJdJr6I0eOSJICAgKs3HsAAAAAtuJgSJ9hAmZJSUlRUFCQLl26pDVr1qhevXpmtTcYDGrTpo0uXryob7/9Vvfff7+FegoAAADAnjASlkvOzs7q1q2bJOmXX34xu/0ff/yhixcvytfXlwQMAAAAKERIwu7Bs88+qyJFimjt2rVmt12zZo0kadiwYXncKwAAAAD2jCTsHpQpU0b9+/fXsWPHtGvXrhy3u379utatW6cmTZooKCjIgj0EAAAAYG+4JwwAAAAArIiRMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACFRnBwsIKDg23aB5IwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsKJ8lYT9/PPP8vf3v2u9vXv3Kjg4WE2bNtUDDzygsWPH6tKlSyZ1HnnkEfn4+Jj8a9GihaW6DgAAABQI9vCw4/zO2dYdyKm9e/dqzJgxd6137Ngx9e/fX61atdKMGTMUFxenWbNmKSQkRJ999plcXFyUlJSkkydPatSoUWrevLmxrbNzvjkcAAAAAPIpu886kpKStHz5cs2aNUtFihRRcnJytvVXrFihMmXKaM6cOXJxcZEkVa1aVb169dK2bdsUFBSkY8eOKTk5WR06dND9999vjd0AAAAAAEn5IAnbsmWLwsPDNXbsWMXGxmrp0qXZ1q9Zs6Zq1qxpTMAkqUaNGpKk6OhoSVJUVJTc3NxUrVo1i/UbAAAAADJj90mYr6+vfv75ZxUvXlxz5sy5a/2nn346Q9mGDRsk/ZeMRUVFycvLSyNHjtQvv/wiBwcHde7cWePGjZOnp2fe7gAAAAAA3Mbuk7By5crdU/uzZ89q+vTpatCggVq2bCnpVhJ26dIl+fj4qG/fvoqMjNTs2bMVHR2t5cuX50W3AQAAACBTdp+E3YuzZ8+qf//+SktL08yZM+Xg4CBJGj16tJKSktSoUSNJUtOmTVWqVCmNHDlSu3fvVtOmTbNd7/79+3X16lVLdx/ZKFGiBDGwA8TBPhAH2yMG9oE42AfiYHuWjkFsbKykW7cN5UfW6n9gYGCWywpsEvbnn39q4MCBSklJ0ZIlS1SlShXjsnr16mWo36ZNG0nSkSNH7pqE+fn55W1nAQAAgHxi0aJFkrJPMuyZPfQ/Xz0nLKf279+vZ555Rk5OTlq5cqXq1KljXJaSkqIvvvhChw8fNmlz8+ZNSZK3t7dV+woAAACgcClwSVh0dLQGDhyoUqVK6ZNPPskwA6Kzs7PmzJmTYZKPH3/8US4uLsZLFAEAAADAEvL95YinTp1STEyMMXl66623FB8fr4kTJ+rs2bM6e/assW6FChVUtmxZDRkyRBMnTtSbb76p9u3b68CBA5o3b56Cg4NVsWJFG+0JAAAAgMIg3ydh8+fP15o1axQVFaXk5GRt2bJFqampGjVqVIa6Y8eOVUhIiHr37i0XFxctXbpUq1evVunSpfXCCy9o0KBBNtgDAAAAAIWJg8FgMNi6EwAAAADyh+DgYElSRESEjXuSO/bQ/wJ3TxgAAAAA2DOSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALCifP+cMAAAAADIqcjISFt3gZEwAAAAALAmkjAAAAAAsCKSMAAAAACwIu4JAwAAAJBj9nBPVX7HSBgAAAAAWBFJGAAAAABYEUkYAAAAAFgRSRgAAAAAWBFJGAAAAABYEUkYACBLwcHBCg4OtnU3AAAoUEjCAAAAAMCKSMIAAAAAwIpIwgAAAADAikjCAAAAAMCKSMIAAAAAwIpIwgAAAADAikjCAAAAAMCKSMIAAAAAwIpIwgAAAADAikjCAAAAAMCKSMIAAAAAwIqcbd0BAID9ioyMtHUXAAC4q71vt81x3dSb8Wa3kaTG4zeZVT87jIQBAAAAgBUxEgYAAAAgxxISEmzdhXyPkTAAAAAAsCKSMAAAAACwIi5HBABkiUtOAADIeyRhAAAAAHIsNTXV1l3I9/LV5Yg///yz/P3971rvzz//VL9+/eTv76+2bdsqPDxcBoPBpM7u3bvVq1cv+fn5qVOnTvrss88s1W0AAAAAMMo3I2F79+7VmDFj7lrv8uXLevbZZ1WrVi2FhYXp0KFDCgsLk5OTk0JCQiRJx44d03PPPad27dpp2LBh+vXXX/Xqq6/K09NTnTt3tvSuACgkgoODJUkRERE27gkAAFn78tcTFm/XrXX1XG2joLL7JCwpKUnLly/XrFmzVKRIESUnJ2dbf+XKlUpJSdGCBQvk4eGhoKAgJSUlKTw8XH379pWLi4vCw8NVsWJFvf/++3JwcFBgYKBiYmI0b948kjAAAAAAFmX3SdiWLVsUHh6usWPHKjY2VkuXLs22/rZt2xQQECAPDw9jWceOHbVgwQIdOHBAjRs31rZt2/TYY4/JwcHBpM66det0/vx5lStXzmL7AwC2Zs43l2n/XsrNt50AUHBV3vys5du13pSrbRRUdn9PmK+vr37++Wf17dvXJGnKysmTJ1W1alWTssqVKxuXJSQk6MKFC9nWAQAAAABLsfuRMHNHpeLj41W0aFGTsvTX8fHxio+PNynLrA4AAAAAWIrdJ2F5ydHR0ThL4p2jaunljo53Hxzcv3+/rl69mvcdRI6VKFGCGNgB4pC92NhYSbcuq7Yks+PgVNlynZHl99ce8V6wD8TBPhAH2zM3Bp5mrt/x7henZWDpvw3m7kNumLsPgYGBWS4rcEmYp6enrl+/blKW/trT01Oenp4mZenSH0harFixu27Dz88vL7oKoIBbtGiRpOxPwraw9+22Oa7rYEiTZN51/43HbzKzRwAAW9r7i3n10wx3r3MnS/8tNHcfciMv98Hu7wkzV7Vq1RQdHW1Sdvr0aUlSjRo1VLRoUZUpU8ZYdmedatWqWaWfAAAAAAqnApeEtWzZUtu2bTOObEnS+vXr5eXlpTp16kiSAgICtHHjRpOnfa9fv161a9dW6dKlrd5nAAAAAIVHvk/CTp06pd9//934uk+fPkpOTtagQYO0ceNGLViwQOHh4Ro0aJBcXV0lSSEhITpx4oRGjBihzZs3a9q0aVq3bp1eeOEFG+0FAAAAgMIi3ydh8+fPV+/evY2vy5Ytq6VLlyolJUXDhw/X6tWr9eKLLyokJMRYp06dOlqwYIFOnz6t0NBQbdy4UVOnTtXDDz9si10AAAAAUIjkq4k5hg0bpmHDhpmUTZs2TdOmTTMp8/X11aeffprtutq0aaM2bdrkeR8B5I3g4GBJUkREhI17AgAA7N211q/nuK5h9Qiz2+S1fD8SBgAAAAD5Sb4aCQMAAACAe1G5smWfl5kTjIQBAAAAgBUxEgYAyFJuHsgJAACyx0gYAAAAAFgRSRgAAAAAWBGXIwJAIWPWlLzLB5nfBgAAZIskDIBdioyMtHUXAAAALILLEQEAAADAihgJAwBkydGR7+oAAMhr/HUFAAAAACsiCQMAAAAAKyIJQ54LDg5WcHCwrbsBAAAA2CWSMAAAAACwIibmAAAAAAoxs58FyTMk7xkjYQAAAABgRSRhAAAAAGBFJGEAAAAAYEXcEwYAAAAgxxwdGce5VxxBAAAAALAikjAAAADkCzyLFAUFlyMCgIVERkbaugsAAMAOMRIGAAAAAFZEEgYAAAAAVkQSBgAALI57eQDgP9wTBsAuJSQk2LoLAAAAFsFIGAAAAGAljApDIgkDAAAAAKsiCQMAAAAAK+KeMAAAAOQLPH8RBQUjYXaG64TtA3EAAACApZCEAQAAAIAVcTkiAAAA8gUeX4KCgpEwAAAAALAiRsKQ57hpFnkhNTXV1l0AAACwCEbCAAAAAMCK8sVI2OrVq/Xhhx/q3Llzqlu3rl555RX5+/tnWrd9+/Y6c+ZMpsuGDRum0NBQSdIjjzyio0ePmiz38vLSzp0787bzAAAAAHAbu0/C1q5dq0mTJmno0KHy9fVVRESEQkJC9OWXX6py5coZ6s+dO1dJSUkmZUuXLtWWLVv08MMPS5KSkpJ08uRJjRo1Ss2bNzfWc3a2+8MBAAAAIJ+z66zDYDBo9uzZevLJJ40jWK1atVLnzp21fPlyvfbaaxna1KtXz+T1gQMHtH79er3xxhu6//77JUnHjh1TcnKyOnToYCwDAAAAAGuw63vC/v77b505c0bt27c3lrm4uKht27baunVrjtbx1ltvydfXVz169DCWRUVFyc3NTdWqVcvrLgMAAABAtux6JOzkyZOSpKpVq5qUV65cWadOnVJqaqqcnJyybL9+/Xrt27dPn376qRwcHIzlUVFR8vLy0siRI/XLL7/IwcFBnTt31rhx4+Tp6WmRfQEg7X27rcXbNB6/yextAAAAWJNdJ2Hx8fGSpKJFi5qUFy1aVGlpabpx40a2SdPy5cvVpEmTDJN4REVF6dKlS/Lx8VHfvn0VGRmp2bNnKzo6WsuXL8/7HQEgSbrW+vWcV14+yPw2AAAA+YBdJ2EGg0GSTEaxsiu/3fHjx7Vr1y7NmjUrw7LRo0crKSlJjRo1kiQ1bdpUpUqV0siRI7V79241bdo0237t379fV69eNWdXciw2NlaStGXLFous3xpSUlIkWXYfSpQoYbEYSAUjDtZg6Tjkhj3FzBrvBcn+4mBPMbAWe4uBPbLGeZU42AdLxiH9M2B+Ps8UhPeCm5ub2W3yc8zSmbsPgYGBWS6z6ySsWLFikqTr16+rdOnSxvKEhAQ5OjqqSJEiWbb9+eefVaRIEbVr1y7Dsjsn75CkNm3aSJKOHDly1yTMz88vR/3PjUWLFknKPmj2Ln2Wyfy8DwUhDvZo8+bNFt+GPcXMXt8Llo6Dve0v7APnVeSF9C/g8/PvkT2+FwrC3+f8tg92PTFH+r1gp0+fNik/ffq0qlevnu1I2NatWxUYGJghU09JSdEXX3yhw4cPm5TfvHlTkuTt7Z0XXc+1yMhIRUZG2rQPAFCQBAcHKzg42NbdAADAyK6TsGrVqql8+fJav369sSw5OVmbNm1SQEBAlu0MBoMOHjxovNzwds7OzpozZ47mzJljUv7jjz/KxcUl0zYAUFi5ubnl6rITAACQNbu+HNHBwUEDBw7UlClTVKJECTVu3FgrVqzQlStX1L9/f0nSqVOnFBMTY5I8nTlzRtevX1f16tUzXe+QIUM0ceJEvfnmm2rfvr0OHDigefPmKTg4WBUrVrTCngHIr8yZrTH1ZrzZbZjdEQCAgs+ukzBJevrpp5WYmKiPPvpIy5YtU926dbV48WJVrlxZkjR//nytWbNGUVFRxjYxMTGS/run7E69e/eWi4uLli5dqtWrV6t06dJ64YUXNGjQIMvvEAAAAIBCze6TMEkaMGCABgwYkOmyadOmadq0aSZlDRs2NEnKMtOjRw+TBzgDAAAAgDXY9T1hAAAAAFDQ5IuRMAAAACA1NdXWXSiQDn5i3nFNTTK/XVCQWZso8EjCkCNMRgAAAADkDS5HBAAAAAArYiQMee5misHWXQAs5lrr13Nc17B6hNltAKCw+fLXExZt06115o8sAmyJkTAAAAAAsCJGwgAAAGAzlTc/a9k2rTeZvX7A0kjCANglR0cG6gEAQMFEEgYAgJ0LDg6WJEVERNi4JwCQ/50+fdrWXSAJAwAAAKwlMjLS1l2AHSAJszMJCQm27gIAAAAACyIJAwDAzvHNOQAULCRhQCb4wAMAAFAwJSYm2roLJGEAUNgc/CQ1x3VTk8xvExRkbo8AAChcmAMaAAAAAKyIJAwAAAAArIjLEZEj11q/nvPKEUPMbwMAAAAUEoyEAQAAAIAVkYQBAAAAgBVxOSLynJubm627AAAAAGTKHj6rMhIGAAAAAFZEEgYAAAAAVsTliAAAALAZs2ZTXj7I/DaAHSIJQ55LTEy0dRcAu1C5cmVbdwEAYGcSEhJs3QXYAZIwAABgcZGRkbbuAgDYDe4JAwAAAAArIgkDAAAAACsiCQMAAAAAK+KeMAAAAKAQC62516z69/+aana7oWpv1jYKOpIwAECBxoQQAAB7w+WIAAAAdxEcHKzg4GBbdwNAAcFImBVs3rw5x3UNBoPZbYKCgszuEwAAQH7j6Mj4AQoGfpMBAAAAwIoYCQNgl9zc3GzdBQAAAIsgCQMACzl9+rStuwAAAOxQvrgccfXq1erUqZMaNmyo3r17a9++fdnWHzx4sHx8fDL8u379urHO7t271atXL/n5+alTp0767LPPLL0bAAAAAGD/I2Fr167VpEmTNHToUPn6+ioiIkIhISH68ssvVbly5UzbREVFqW/fvuratatJuYeHhyTp2LFjeu6559SuXTsNGzZMv/76q1599VV5enqqc+fOFt8nAIVDYmKirbsAALCCL389keO6af9OwmZOm26tq5vdJ9g3u07CDAaDZs+erSeffFKhoaGSpFatWqlz585avny5XnvttQxt4uLidPbsWbVp00aNGjXKdL3h4eGqWLGi3n//fTk4OCgwMFAxMTGaN28eSRgAAADM4pVyKsd1HXLRRiIJK2jsOgn7+++/debMGbVv/98Ttl1cXNS2bVtt3bo10zZRUVGSJB8fnyzXu23bNj322GNycHAwlnXs2FHr1q3T+fPnVa5cuTzaAwC3O/hJao7rpiaZ30aSeGIDAACwd3Z9T9jJkyclSVWrVjUpr1y5sk6dOqXU1IwfzqKiouTq6qqwsDC1aNFCfn5+Gj58uC5evChJSkhI0IULFzJd5+3bBAAAAPJaWlqa0tLSbN0N2Jhdj4TFx8dLkooWLWpSXrRoUaWlpenGjRvy9PQ0WRYVFaWkpCQVLVpUc+fO1enTpxUWFqZ+/fpp7dq12a7z9m2i4Nn7dtsc1029GW92m8bjN5nXIQAoRBISEmzdBQCwG3adhBn+vXHx9ssGsyuXpP79+6tr165q2bKlJKlZs2a6//779eSTT+rbb79VQEBAtuvMyZPY9+/fr6tXr5q5N5azZcsWW3fhnpm7DyVKlDA7Bp53r3JPCkIczJWbOFhafo9Dbvpvb3GwtxikpKRIsmy/LB0Da+yDpaX/nc2vcYiNjZWUv2NgLZyT8p41PidZWmGMQ2BgYJbL7DoJK1asmCTp+vXrKl26tLE8ISFBjo6OKlKkSIY2999/v+6//36TMj8/PxUvXlxRUVF68MEHjeu8Xfo3dOnbzI6fn59Z+7F582az6psruwDnlYKwD3t/sez6rbEP+d2BjzdYfBuWjkNBeC9YOg729l5wdr71p87e+mWOgrAP6V9+5td9WLRokaT82397VhDOq/l+H3btsuz6lf//Pkt5uw92fU9Y+n1bdz7w9PTp06pevXqmI2HffPONfvvtN5Myg8GgpKQkeXt7q2jRoipTpkym65SkatWq5eEeAAAAAIApu07CqlWrpvLly2v9+vXGsuTkZG3atMl4WeGdPvnkE7311lsmNzxu3rxZN2/eVNOmTSVJAQEB2rhxo8nEHuvXr1ft2rVNRtwAAAAAIK/Z9eWIDg4OGjhwoKZMmaISJUqocePGWrFiha5cuaL+/ftLkk6dOqWYmBjjM8EGDx6sgQMHasyYMerRo4dOnjypWbNm6aGHHlLjxo0lSSEhIXriiSc0YsQI9erVS9u3b9e6desUFhZmmx0FAAAopMx5FIkhzfw2PLoE9siukzBJevrpp5WYmKiPPvpIy5YtU926dbV48WLjlPLz58/XmjVrjM8Ha9OmjRYsWKB58+Zp6NCh8vT0VM+ePTVixAjjOuvUqaMFCxbovffeU2hoqCpUqKCpU6fq4Ycftsk+AgDMY861/+mTWpjTJohPbQAAC7L7JEySBgwYoAEDBmS6bNq0aZo2bZpJWbt27dSuXbts19mmTRu1adMmz/oIAAAAADlh1/eEAQAAAEBBky9GwgAAAICCICfPpEXBx28BAAAAAFgRSRgAAAAAWBGXI9oZNzc3W3cBQAEXWnNvjuve/2uq2W2Gqr3ZfQLsXWRkpK27AKAAIQmzAnOeZZGaZH4bZlIGAAAA8g+SMAAAbGDekA05rpuYkGJ2m6ELGZEEAHvFPWEAAAAAYEWMhAEFVHBwsCQpIiLCxj35j6XvRZK4HwkAANg/RsIAAAAAwIoYCQMAAACQY4mlStm6C/keSRgAAACAfM3Ss5FLeTsjOUkYAAAw296325pV35CWana7xuM3mbUNwFbM+TBvSDO/DY8jKnhIwgAAgNm2n5poVn2DYajZ7RqbtQXcjT1O2AQUVkzMAQAAAABWRBIGAAAAAFbE5YgAANiApZ+bxzPzAMB+MRIGAAAAAFZEEgYAAAAAVkQSBgAAAABWxD1hAIACLTEx0dZdAADABEkY8pybm5utuwAAAADYLZIwALAQvpAAAACZ4Z4wAAAAALCibEfCTpw4kauVVq9ePVftAMDeHfwkNcd1U5PMbxMUZG6PAABAfpNtEtalSxezV+jg4KDDhw/nukMFEQ/khC1ERkbaugsAAADIxF3vCTMYDNboB+xcYfv2/2YKv/cAANgbFyfutUXBkG0S9s0332jSpEn67bff5ODgoOHDh+u+++6zVt8AAACAAsWgNFt3AXYg2ySsRo0aWrx4sQYNGqQdO3bo559/1scffyxXV1dr9Q8AAAAAsmXp23+kvL0F6K6zI7q6umrGjBkqUaKEDh06pE8//TTPNg4AAAAAhU2OnhNWqlQpTZo0Sb///rtSUlIs3SfYISYXAQAUNPOGbMhx3cSEFLPbSNLQhfx9A5BRjh/W3KVLl0xnS4yJiZGnpyeXKAJAAZRYqpStuwAAQIFz18sRk5KStGLFCg0fPlzXr1+XJKWlpWnu3Llq0aKFWrdurUaNGmnQoEH6+++/Ld5hAAAAAMjPsk3Cbt68qT59+uitt97STz/9pOTkZEnS1KlTNW/ePF29elUGg0FpaWnaunWrnnrqKV28eNEqHQcAAACA/CjbJOzDDz/UwYMHZTAYVLx4cTk7O+vs2bP6+OOPZTAY5OTkpJCQEIWEhMjFxUWxsbH64IMPrNV3AAAAAMh3sr0n7KeffpKDg4MeeeQRTZ06Vc7Ozlq1apVSU1Pl4OCgRx99VGPGjJEklS1bVlOnTtUvv/xilY4D5rrW+vWcV44YYn4bAAAAIAeyTcJOnTolSQoJCZGz862qmzZtMi7v3Lmz8ecHHnhAknT+/Pm87qNWr16tDz/8UOfOnVPdunX1yiuvyN/fP8v6e/fu1cyZMxUZGSl3d3e1atVKY8eOVenSpY11HnnkER09etSknZeXl3bu3Jnn/QcAAEDmmIEZhVG2SVha2q0neru7u0uSrl27pn379t1q6Oys5s2bG+um3y+W3iavrF27VpMmTdLQoUPl6+uriIgIhYSE6Msvv1TlypUz1D927Jj69++vVq1aacaMGYqLi9OsWbMUEhKizz77TC4uLkpKStLJkyc1atQok31ITzQBAPbt4CepOa5rSDO/TVCQuT0CACDnss067rvvPp06dUq//fabqlWrps8++0wpKSlycHBQ8+bNVaRIEWPdNWvWSJLKly+fZ50zGAyaPXu2nnzySYWGhkqSWrVqpc6dO2v58uV67bXXMrRZsWKFypQpozlz5sjFxUWSVLVqVfXq1Uvbtm1TUFCQjh07puTkZHXo0EH3339/nvUXAAAAAO4m2yQsMDBQERERevvtt7V+/Xr9+uuvxmU9e/aUJG3fvl2rVq3SDz/8IAcHBwUGBuZZ5/7++2+dOXNG7dv/N4zs4uKitm3bauvWrZm2qVmzpmrWrGlMwCSpRo0akqTo6GhJUlRUlNzc3FStWrU86ysAAAAA5ES2Sdjzzz+vH3/8UefPn9eWLVtkMBgk3UrO0h/cvGTJEv3yyy8yGAwqXbq0Bg8enGedO3nypKRbI1m3q1y5sk6dOqXU1FQ5OTmZLHv66aczrGfDhltPt09PxqKiouTl5aWRI0fql19+kYODgzp37qxx48bJ09Mzz/oP2FJCQoKtuwAAAIBMZJuElSxZUp999pnmzZunPXv2yNXVVQ899JCeffZZY52yZctKujUxx8SJE1WqVKk861x8fLwkqWjRoiblRYsWVVpamm7cuHHXpOns2bOaPn26GjRooJYtW0q6lYRdunRJPj4+6tu3ryIjIzV79mxFR0dr+fLledZ/AAAAALjTXWeiKFOmjCZPnpzl8iFDhmjkyJEmMw/mlfSRNwcHhxyV3+ns2bPq37+/0tLSNHPmTGP90aNHKykpSY0aNZIkNW3aVKVKldLIkSO1e/duNW3aNNv17t+/X1evXs3NLlnEli1bbN2Fe2buPpQoUcKuYiDZXxzS3yeW7BdxyHu56b+9xSG/x0DinGQviEPeio2NlWT5PtlbHOwpBrnFe8E+mLsP2d2mdc/TAWY2Q2FeKVasmCTp+vXrJkleQkKCHB0dTSYGudOff/6pgQMHKiUlRUuWLFGVKlWMy+rVq5ehfps2bSRJR44cuWsS5ufnZ9Z+aNcu8+qbKS/vw8tSAdiHzZs3W3T9VomDGdK/dLCrfln490iy/P4e+HiDRdfP+zlniMPd5ff3gsQ+5LVFixZJsq8+Scr37wWpAJyTCsDf5/y2D455tiYLSL8X7PTp0yblp0+fVvXq1bMcCdu/f7+eeeYZOTk5aeXKlapTp45xWUpKir744gsdPnzYpM3NmzclSd7e3nm5CwByKbFUKSXm4eXNAAAA9sKuk7Bq1aqpfPnyWr9+vbEsOTlZmzZtUkBAQKZtoqOjNXDgQJUqVUqffPJJhhkQnZ2dNWfOHM2ZM8ek/Mcff5SLi4vxEkUAAAAAsAS7fjqxg4ODBg4cqClTpqhEiRJq3LixVqxYoStXrqh///6SpFOnTikmJsaYPL311luKj4/XxIkTdfbsWZ09e9a4vgoVKqhs2bIaMmSIJk6cqDfffFPt27fXgQMHNG/ePAUHB6tixYo22FMAAAAAhYVdJ2HSrSnnExMT9dFHH2nZsmWqW7euFi9ebLwXbf78+VqzZo2ioqKUnJysLVu2KDU1VaNGjcqwrrFjxyokJES9e/eWi4uLli5dqtWrV6t06dJ64YUXNGjQIGvvHgAAAIBCxu6TMEkaMGCABgwYkOmyadOmadq0aZJuPcj50KFDOVpnjx491KNHjzzrIwDAPrk4udm6C/esINwfWRDikN9FRkbaugsA/pUvkjAAsBehNffmuO79v6aa3Wao2pvdJwBA/uFg31MywEpIwoBMuLnxjS0AAAAsg1QcAAAAAKyIJAwAAAAArIgkDAAAAACsiHvCAAAAgHtgzgRMtTYZzG7DpE0FD0kYAABAIZCQkGDrLgD4F0lYFuLi4nThwgUlJyff87q+a9Mmx3Wd/f0lSSmenjluY43nfhSEfShevHiO677//vtmt7Hm81ecnZ3l7u6uMmXKyN3d3WrbBQAAwL0jCctEXFyczp8/r4oVK8rDw0MODg73tL7r587luK7b5cuSzHswZ9377jO7T+YqCPtw7dq1HNc9deqUJKlKlSo5blOsWDGz+5QbBoNBKSkpio+P16lTp1SuXDmVKFHCKtsGgNxKTk20dRcAwG6QhGXiwoULqlixoooUKWLrrgAZODg4yMXFRd7e3nJzc9O5c+dIwgAAAPIRkrBMJCcny8PDw9bdAO7Kw8NDiYl8uwwUdOlXGACFnTlX2QD2jCQsC/d6CSJgDfye2jc+LAAAgMzwnLBCwGAwFKjt5EccGwAAAKRjJCwXgoODVaRIEX3wwQcZlkVGRurxxx/XRx99pBYtWtigd/9JSkrS9OnT1bJlS3Xs2DHH7dq3b6+2bdtq4sSJOap//do1LQsLU5cnn1R1H5/cdrfAWr16tc6cOaORI0fauisAkGfMecaRxLORANgPe7hShZEwO2NwdpbBOW9y4wsXLigiIkIpKSlmtZs7d64GDBiQ4/p///WXtq1fz2hPFhYuXGjWzIwAAPuTnJrIDI/IE2kuLkpzcbF1N2BjjIQhg3r16tm6C8jE9bNRmZYnXT2nvW8/n6HckJYqSdr7dtscb6Px+E256RoAAADMQBJmYXPmzNE3P/2kLk8+qc+XLtXlCxdUuXp1BQ8frtoNGhjrHd63T58tWaKTf/6pokWLqkWHDnryuefk6uYmSToRFaVPFi7U0UOH5OburoD27fXUkCFy+/dBvcHBwapWrZr++ecf7du3Tw888IB++OEHSdKIESPUvHlzRUREKDk5WQsWLNA333yjM2fOyMPDQy1atNCrr76q8uXLSzK9HPGLL77QO++8o+cnTtTK+fP1z99/q2yFCnpq8GA1ad1ah/ft01svvihJmjB4sNp07iwvFxdt3LhR89aulfNt3/RMHTVKHkWL6sU33sj0OP3www8aOHCgwsLCFBsbq+bNm2vChAmqVKmSsd66deu0fPly/fXXX5KkunXratSoUWrWrJkk6ZVXXlFcXJw8PDy0ceNGBQUFaebMmTp+/Ljee+897dmzR/Hx8SpTpoy6deumkJAQOTg4aPfu3RoyZIgWLlyoOXPm6OjRoypXrpwmTpwoBwcHTZ8+XX///bfq1q2rSZMmqXLlysY+ffrpp1q1apXOnTunqlWraujQoerSpYvxWJ45c0YrV67UypUrFRV1K5E6ePCg3n33Xf3+++/y8PBQ165dNXr0aOOsnHfGs3fv3grt+3gufwuBgsecS9ru/zXV7DZcBgcAsCQuR7SCs6dP67MlS9Sjf3+NeOMNJSUlafakSUr99zLBY5GRmjZqlIoULaqRY8boyf/7P2365htFzJ0rSYo+eVJThg+XHBw0bPJkPTV4sHZs3KjZkyebbOeLL75QpUqVNHv2bIWEhGjuv+1feuklTZo0SZI0depUrVixQgMHDtSSJUv04osvavv27Xr77bez7P/169cV/s47evDxxzV66lQVK1FCcyZPVnxcnKrVrq3+/yZhg155Rd379lVQu3aKj4/XH7t2GdcRe/myDu/bpwc6dcpyO2fOnNH06dMVGhqqqVOn6vjx4+rfv7+SkpIkSd9//73Gjh2rtm3bKjw8XFOnTlVcXJxGjhxprCNJmzdvVmJioubNm6fevXvr+vXr6tu3r65evarJkycrLCxMTZs21cKFC7V161aTPkyYMEHdunXT2LFjZTAYNG7cOL3++uvq06ePJk6cqBMnTuidd94x1g8PD9fMmTPVqVMnLVy4UK1atdJLL72k7777TtKtSzvLlCmjhx56SKtWrZIk/fXXX3rmmWfk4OCgsLAwjR49Wt9++61e/Pc4ZhbPhx9+OMvjBgAAgPyFkTAruJmQoPHvv6/769aVJKWlpen98eN16tgxVffx0boVK1SmfHm99NZbco+PlyTdcHLS1u+/V1pqqtYuX67i3t4aM22aXFxdJUn3VaqkKcOHK3L/fjW97z5JUtGiRfXaa6/J5d/Rp+joaElS1apVVbNmTUlSTEyMxo4dqyeeeEKS1Lx5c504cUJfffVVlv1PTk5WnyFD1LL9rW+GS5QsqXEDBujwvn1qHhSkitWqSZIqV6+uchUrys3dXdWqVdO29evVuHVrSdL2DRtUpGhRNcpmspKEhATNmjVLgYGBkqQaNWroscce0zfffKPu3bvr1KlTevrppzVs2DBjGxcXF4WGhurkyZOqXbu2JCklJUVvvPGGSpYsKenWqFOVKlU0depUeXt7G/d706ZN2rt3r3F7ktS7d2/16NFDp06d0sWLF/XBBx9o8uTJeuSRRyRJx48fNyZT165d0/Lly9WvXz89//zzKlasmB544AFdv35dM2bM0MMPP6x69erJ1dVVpUuXVqNGjSRJ8+fPV6lSpRQeHi7Xf+NZrVo1Pf300/rtt9+Mo3p3xjOryxEBAACQv5CEWcjtz29ycnIymTWwZJkykqSbN29Kkv48dEitOnSQo5OTsU6nHj3UqUcPSdLh339XkwcekKOjo3H0rFb9+vIoWlSH9uyRHnpIklSlShXjB/ashIWFSZLOnz+v48eP6/jx49q7d6/JSFJmatavn6H/iTduZFk/qG1bffrpp7p544bcPTz0608/qWX79iaXJ96pWLFiJglR7dq1VblyZe3evVvdu3fXoEGDJElxcXE6fvy4Tpw4oQ0bNkiSSf9LlixpTMAkqUGDBvr444915coVHT9+XKdOnVJUVJRSUlIy7HeD2y4R9fLykmR6j1yJEiUU/2+ifODAASUmJuqBBx5QSkqKcQKUwMBAff755zp9+rTJZYvpdu7cqQ4dOsjR0dHYplGjRvL09NT27duNSVhO4gng7hyTk23dBQAATJCE5YKHh0eWSUvyv3/s3f+9V0uSnF1d5ej435Wf6QmaIS1NknQ9Lk7F//3An5n4q1e1Yd06bVi3LsOy2MuXjT+XysF0m3v37tXkyZMVFRWlYsWKqW7dunL7976z7NxeJ73/adnMhtgmMFArIiK099dfVd3HRyeiotRvxIhst1Hm3+TudiVLltTVq1clSRcvXtSrr76qLVu2yMXFRbVq1VLFihUlmT6HK7PjsHDhQi1atEjx8fEqX768GjZsKGdn5wwzOhYpUsS4vvRlt8fydun9ymomyYsXL2aahMXGxmrVqlXGEbU722S3HwAA3G7ekA05rpuWajC7zdCF3B8JWAJJWC6UKlVKBw8ezHTZuXPnJGWeUGTFw9NTcf9+oE8XHxenE1FRqu3rKw9PTzVp3Vodu3XL0LZYiRI53s61a9c0ZMgQNW7cWHPmzFHVqlUlSdOnT9eRI0dyvJ6c8PLykm+zZtq1ebMunj2rchUrqtZto2mZiY2NzVB2+fJl+fw7ijhq1CidP39eq1atUv369eXs7KzNmzfrxx9/zHa9a9euVVhYmF5++WV17txZnp6ekqQHH3wwdzv3r/T1vPfeeypbtqwxgUtXvXr1LNt16NBB//d//5dhWfrlkpmJdMg81pccYvWw6yMZymsZFkmSmmSyLCs8ZAAAAMDymJgjF5o1a6a//vpLx48fz7Bs/fr1qlixonGmwZyoXb++9u/cqbR/R8YkaceGDXpv3DilpaXJx9dX/5w6peo+PqpRp45q1KmjUmXL6tPwcJ0+cSLL9TrddnmjdOt+pqtXr6pfv37GBCwtLU3btm27p2d83T7Kd7sHHnpIf/z2m3Zt2ZLthBzpYmJi9McffxhfR0VF6fTp02rZsqUk6ffff1eXLl3k5+cn53+fpZY+sUZ2/d+3b5/uu+8+PfHEE8bE6ciRI7py5UrOdjALDRo0kLOzs2JiYlSvXj35+vrK19dXR48e1bx584z17jw+TZo00fHjx9WgQQNjm/Lly2vGjBk6evToPfUJQMGUWKqUXTxcFACQNxgJy4VHHnlES5cu1bPPPqvBgwerZs2aunz5stavX69vv/1WM2bMMGt9jz3zjKYMG6ZZEyeqU/v2unzpklZ/9JEe7N5dHkWKqHvfvpo8dKhmT5qkoC5dlJyUpLUffaTLFy6oWq1aWa63WLFikqRt27apWrVqqlGjhooWLar58+crLS1NN2/e1Mcff6wjR47IwcFBBoPB5F62nCryb2Kzb8cOuXt4qPq/r5u0bq0lTk46+eefGvH663ddj4ODg1588UWNHj1akjRz5kzVrVtXnf5N4Hx9fbVmzRr5+PioRIkS+umnn/TJJ59I+u/+usz4+vrq008/1aJFi9S4cWOdOHFCixYtkoODQ7bt7sbb21tPPfWUwsLCFBcXp2bNmunIkSOaOXOmOnToYEz4ihcvrkOHDum3335T06ZN9cILL+ipp57SiBEj1LNnTyUlJWn+/Pk6e/Ysz2gDAAAoBEjCcsHV1VUrV67U3LlztWTJEp0/f15FihRRnTp1FB4erjZt2pi1vlr16+vl997T6kWL9O7bb6uEl5ce6tlT3YKDJUnVfXw0fuZM/e/DDzVr4kS5uLqqdoMGev7VV42TZGTG09NTAwcO1IoVK7Rv3z599dVXmjNnjqZPn67nn39e3t7eatq0qWbNmqXhw4dr//79xhn8zFGpenU90KmTvlq5UieOHNGrY8bcOk5ubqrXqJHirl5V2QoV7roeDw8PhYaG6u2339bNmzfVrl07jR8/3jjqNXXqVL3++usaN26c3Nzc5OPjo4iICA0cOFC///67mjdvnul6e/TooRMnTujzzz/X8uXLVaFCBQUHB+vkyZP6/fffzd7f2w0fPlze3t5as2aNPvjgA5UtW1b9+vVTaGiosc7gwYM1adIkPffcc/rhhx/UoEEDLV++XGFhYRo+fLjc3NzUuHFjTZ8+XeXKlbun/gAAAMD+kYTlUvHixTV+/HiNHz8+23rDhg1TQK9eJmXVatXSys2bTcrqN26s1xcskOu/94Yl3XGvl4+vr16bNSvL7URERGRaPnr0aOPIkiS1bt1aX375ZYZ66Q8RlmSccVC6lcD06NFDu/+9102SihYrZtJ/R0dHPf/qq3r+1VdvFfw7WUhSYqKO/PGHnho8OMt+3yl9e5mpUqWKFi9enKF83759xp+nTZuWYbmjo6PGjBmjIUOGZLndpk2bavfu3SZlLVq0yFDWp08f9enTx2Td/fr1U79+/Ywjj3d66KGH9NC/M1ima9KkSZYxk7KOJwAAAPI/kjDkufj4eH37zTc6EBUlRycnterY0dZdAgCgQAqtuTfHdWttMpjdZqiYHRGwBJIw5DkXFxd9/913cnF319DXXpNbFlO8AwAAAIURSRjynJubm5YsW2bWTF7Dhg3TsGHDLNgrAAByz8Xp7s/UBICcIglDnjM482sFAAAAZIXnhAEAAACAFZGEAQAAAIAVcd0YAFiI27+PawAAALgdSRjynENKiq27AAAAANgtkjAAAAAAhYY9XKnCPWEAAAAAYEX5IglbvXq1OnXqpIYNG6p3797at29ftvX//PNP9evXT/7+/mrbtq3Cw8NlMBhM6uzevVu9evWSn5+fOnXqpM8++8ySuwALe+WVV/TII48YX/v4+Gjx4sVZ1t+9e7eaNm2qw4cPW6N7AGzJYLj1DwAAO2H3lyOuXbtWkyZN0tChQ+Xr66uIiAiFhIToyy+/VOXKlTPUv3z5sp599lnVqlVLYWFhOnTokMLCwuTk5KSQkBBJ0rFjx/Tcc8+pXbt2GjZsmH799Ve9+uqr8vT0VOfOna29i3fVbMUKm27fMHq0TbefG6tWrVKFChVs3Q0AAAAgA7tOwgwGg2bPnq0nn3xSoaGhkqRWrVqpc+fOWr58uV577bUMbVauXKmUlBQtWLBAHh4eCgoKUlJSksLDw9W3b1+5uLgoPDxcFStW1Pvvvy8HBwcFBgYqJiZG8+bNs8skDOZr1KiRrbuAe2QP12sD9oL3AwAULHadhP399986c+aM2rdvbyxzcXFR27ZttXXr1kzbbNu2TQEBAfLw8DCWdezYUQsWLNCBAwfUuHFjbdu2TY899pgcHBxM6qxbt07nz5+33A7lQEGaWfDpoCANHDtWv+/YoT927ZJH0aLq3revGrdurcXvvafD+/apZJkyCh42TE0ff9zY7qefftLChQt17NgxlShRQt27d9fQoUPl4uIiSUpJSVFYWJjWrFmjGzduqFevXkpNTTXZto+Pj8aOHWsc/dy8ebPee+89/f333/Lx8dHjt20PAFA4hdbcm+O69/+aanYbSRqq9nevBKDQset7wk6ePClJqlq1qkl55cqVderUqQwfvNPbZFY/fVlCQoIuXLiQbR3knRXz5um+SpU0aupU1apfX8tmzdLUl15S7QYNNPz111WkaFHNf/NN3bhxQ9KtywhDQ0Pl6+uruXPn6plnntGSJUs0btw44zrffvttRUREaODAgXr//fd15MgRfffdd1n24ffff9fzzz+vqlWr6t1331Xz5s01bdo0i+87AAAAkBm7HgmLj4+XJBUtWtSkvGjRokpLS9ONGzfk6emZoU1m9dOXZbfO9DrFixfPtl8JCQmZJoBZqWu4muO6f8tgdhtLu3btmmp6eue4/pnLMcafG/k10mujXrn1c5UaenLLFjVu1Fijnh8uSapWoqRCnx+kQ4cOqVatWpo5c6Y6deqkUaNGSZL8/Pzk4uKiqVOnqk+fPipbtqw+/fRTDR06VD179pQkNWjQQI8++qhSU1N17do147YTExN17do1LVy4UFWqVFG/V1+Vg4OD2vn56VRMjH784gv9feOGnK5fz7APbv/+H5XJsqz45Lhm7lRJLJJpeVqyq+b+1ThD+ex//89sWVa2bNliVp9KlCihq1dz/ru6uXnzHNcd/u+9kOa0kczfB3OtDeiZ47oTV3xsdpvc9N+ScXh382ZJ0koz2lg6BpK0J+nrHNf9v1y02bLFvN87c2MgSZuaNctx3RH/vh/MaWPpOJjTF0ka8u9kSZbcB3PjYOkYSPYVB2vEQOKcdDchhmSz21j6nGTu31p7jIOl/z5L5u9DYGBglsvsOglLn9Hw9ssGsyu/G0dHx7uu09Hx7oODRYpk/mE4K9fjzapud4oVK2ZW/X9uO7SN/RvJy/NWSuNY5dZEGY0bNTSWVSpfVpKUmpqqCxcu6MqVK3r00UdNtvnEE09o6tSpOnz4sK5du6bU1FR16NDBWKdYsWJq27atDhw4YNLOzc1NxYoV0x9//KFHH33UJObNg4L04xdfmLVfd2PucTLXjZg4i65fyv5kYW3OzrdOT/bUJ3NNcb51PunWuroZrcypa3mLFi2SZH9x2PuLZddvjf3d/O+HGEux9D5Yuv8S+5AT+f33yFyck+yDPcbhy19P5LhuhSo1crWNvNxfu74cMf1D7fU7RiMSEhLk6OiYaTLk6emZoX76a09PT+PIWWbrvH2byBt3jjhKMrlf73bp39iUKlXKpNzT01Nubm6Kj49XXNytRMTb23RkrnTp0ln2IS4uLkP9EiVL3r3zAAAAgAXY9UhY+n1bp0+fNrmH6/Tp06pevXqmI2HVqlVTdHS0Sdnp06clSTVq1FDRokVVpkwZY9mddapVq6aLFy/m6X4gZ7y8vCTdeszA7eLi4pSYmCgvLy9jnZiYGJUrV85YJzY2Ntv13rnO+DjLjyrh3tStW9fWXQAAo8TERFt3AUA2zLnq5LMSHma3yWt2nYRVq1ZN5cuX1/r16/XAAw9IkpKTk7Vp0ya1bds20zYtW7bUqlWrlJCQYBwpW79+vby8vFSnTh1JUkBAgDZu3KgRI0bIycnJWKd27doqXbq0TZOwtEL8PNHq1avL29tb33//vTp16mQs//bbbyVJjRs3VoUKFeTq6qoff/zR+CE9JSVFv/76a5aXibZo0UIbN25Ux3795PTvJW6/79hh4b0BYEmng5bmuK5DRBez2+T8Tkog/3Bzc7t7JQBWYddJmIODgwYOHKgpU6aoRIkSaty4sVasWKErV66of//+kqRTp04pJibG+FyoPn36aMWKFRo0aJBCQkJ05MgRhYeHa9SoUXJ1dZUkhYSE6IknntCIESPUq1cvbd++XevWrVNYWJhtdhSSJCcnJ4WGhhrj3aFDB0VFRWnOnDnq3LmzateuLelW/BYtWiQ3NzfVq1dPn3zyiS5duqQqVapkut4hQ4aoZ8+eWjB+kno8+oSOnfhLP3+xRpJ0X7J7phNeXPj3/6wmwwAAAAByy66TMEl6+umnlZiYqI8++kjLli1T3bp1tXjxYuOU8vPnz9eaNWsUFRUlSSpbtqyWLl2qt956S8OHD1fp0qX14osvGp8XJUl16tTRggUL9N577yk0NFQVKlTQ1KlT9fDDD1tkH4qWN2PevMsHM2nzVd52yI4988wzcnd315IlS/S///1PZcuW1bPPPqsXXnjBWGfEiBFyd3fXxx9/rLi4OHXq1ElPPvmkdmQxulWrVi0tWbJEb02ZqlffeFlVKlXRyNCxmvLORGvtFgAAAGBk90mYJA0YMEADBgzIdNm0adMyPPPJ19dXn376abbrbNOmjdq0aZNnfbQkw+jRtu5CrqQnxumKFy+eoaxu3boZyp544gk98cQTWa7XwcFBQ4YM0ZAhQ3K87aZNm+qD2aaXInXqYJmkGwAAe8R9bYD9yBdJWGGSkynyAQD5X7FfJ+W4rkPKTbPbKGiTmT0CAFgLSRgAAHbuZkohnrUJAAogkjDkOXd3d1t3AUABZ860wuP+fZyJLaciBjPzAcDtSMKAAsrBvp/FXigUhGedRURE2LoLBVbj8ZtyXNdhRT2z2wAA7BdJGAoN11JmfAt7LRdtAAAAgBwgCbMzBeFSvho1ati6C5Dk4kQCCQAAcCd7uMqDJAyFhpdnzpOS6Fy0AQBLKVKEB8cDQEHCTSMAAAAAYEWMhAEAAORTZj07zpBmfhueNwdYBEkYALtkD9drAyjYLJ7ASCQxADLF5Ygo0Hbu3CkfHx8dOHAgyzpz5syRv7+/FXsFAIVPYmKiEhMTbd0NALALjITlA/OGbLDp9ocubG/T7d+L+vXra9WqVbr//vvNaufoyPcTAAAgZ8x5hp/TF03NboOChyQMBZqnp6caNWpk624AsCFmFgQA2Bu+7odF7d+/X08//bT8/f3VvHlzDR8+XGfOnJEkpaamauHCherYsaP8/PzUrVs3rV+/3qT9Rx99pE6dOqlBgwbq2rWrvv32W+Oy6Oho+fj4aMOGDQoJCZGfn5/atGmjBQsWGOtkdjni4sWL1a5dOzVq1EhjxozRzZs3LXwUUFhFRERwbxsAAMiAJAwWc+PGDQ0aNEjlypXT/PnzNWXKFB0+fFgvvfSSJGnq1KmaO3euevTooYULF8rPz0/Dhw/X7t27JUlz587VO++8oy5dumjhwoVq1aqVXnrpJX333Xcm2xk3bpz8/Py0cOFCtWvXTmFhYdq8eXOmfVq8eLFmzJih7t27a/bs2UpOTtby5csteyAAAPmeu7OD3J0dbN0NAAUElyPCYo4eParY2FgFBwcbJ77w9vbWjh07FBsbq48//lhDhw7VCy+8IEkKCAjQiRMntHv3btWuXVvh4eF67rnn9OKLL0qSHnjgAV2/fl0zZszQww8/bNzOww8/rOHDh0uSWrRooR9++EFbtmxRUFCQSX/S0tK0aNEi9erVy1i/TZs26tatm06fPm3pwwEAAABIIgmDBdWoUUNeXl4aMmSIunbtqqCgIAUEBKh58+bavHmzUlNT1b696aQf6ZdubdmyRYmJiWrbtq1SUlKMywMDA/X555/r9OnTcnC49Y3k7fd8OTo6qmzZskpISMjQnxMnTujKlSsKDAw0ljk4OKhTp05avHhxXu46ADtSt25dW3fhnhWEfQDyApd4o6AgCYPFeHp6asWKFZo3b57WrFmjlStXqnjx4ho5cqQ8PT0lSSVLlsy0bWxsrCTpqaeeynT5xYsXVbZsWUmSu7u7yTJHR0cZDIYMba5evSrp1mjc7UqXLp3znQIAAADuEUmYnalRo4atu5CnatWqpbCwMCUlJWnPnj1avny5Xn/9dQ0bNkySdOXKFZUrV85YPzIyUgaDQcWKFZMkzZs3z2R5uurVqxsTtZzy8vKSJMXExJiUm7seAAAA4F4wMQcsZsuWLQoICFBMTIxcXV0VEBCgCRMmSLqVbDo7O2vjxo0mbSZOnKjFixfLz89PLi4uunz5snx9fY3/jh49qnnz5uWqP9WrV1fZsmX1448/ZugnAACANdStW5dLjMFIGCynYcOGMhgMCg0N1cCBA+Xi4qLly5erePHiatmypZ566iktWLBAzs7OatCggb777jtFRkZq4sSJKlmypIKDgzVt2jRdvXpVDRs21JEjRzRz5kx16NBBnp6eZo9gOTg4aPjw4ZowYYJKlSql1q1b67vvvtPBgwfl5ORkmYOQhzxKZj4rl0uM1OD/MvY/ZXOipMyXAQAA5Bb35t07kjBYjJeXlz788EPNmDFDY8eOVXJysho2bKilS5eqZMmSGj9+vLy9vbVy5UpduXJFtWrV0qJFi+Tr6ytJGjNmjEqWLKnVq1dr9uzZKlu2rPr166fQ0NBc96lXr16SpPDwcK1cuVKtWrXSkCFDtGjRojzZZwAAAOBuSMLygaEL29+9kp1q0KCBli5dmukyJycnhYaGZplUOTo6auDAgRo4cGCmyytVqqSoqKgM5V9++aXx5xYtWmSo06tXL2Myli59mnwABQ/f2AIA7A1JGJCJO2dcBAAAAPIKE3MAAAAAgBUxEgbkE6kOrpmWpzk4K9a5Soby9CelZbYMAAAAtkMSBgAAUAi4O2c+yy4A6+NyRAAAAACwIpIwAAAAALAiLkcEAABmM/d+U+5TBYD/kIQBAACzdWtd3az64xwcctXOXtxMMdy9EgDkEJcjAgAAAIAVkYQBAAAAgBWRhKFQeOWVV/TII49kW6d9+/Z64403rNQjAAAAFFbcE5YPbN682abbDwoKsun288ILL7yghIQEW3cDAAqtIkWK2LoLAGA37H4k7M8//1S/fv3k7++vtm3bKjw8XAZD9jfHxsbGavLkyWrXrp0aN26s3r17a/v27SZ1Fi9eLB8fnwz/Nm7caMndgY1UqVJFderUsXU3AAAAAPtOwi5fvqxnn31WDg4OCgsL05NPPqmwsDAtWbIkyzYGg0HDhw/Xhg0bNGzYMM2ePVsVK1bUgAEDtG/fPmO9qKgoNW3aVKtWrTL516RJE2vsWqHg4+Ojzz77TMOGDVOjRo30wAMP6OOPP9b58+c1aNAg+fn56aGHHsow0vfrr7+qV69eatiwoQIDAzVr1iylpqYal7dv317h4eF67bXX1KRJE7Vo0UKzZ8/WtWvXNHr0aPn7+6tdu3b64osvjG3uvBzx4sWLGj58uJo0aaI2bdpo7dq1Fj8eAAAAgGTnlyOuXLlSKSkpWrBggTw8PBQUFKSkpCSFh4erb9++cnFxydDmwIED2rlzp5YtW6aAgABJUqtWrXT06FEtW7ZM/v7+km4lYW3atFGjRo0yrOPMmTMW3a/CZOrUqfq///s/9enTRx9//LGmTJmiiIgIdevWTX369NGcOXM0ZswYbd68WR4eHtq+fbsGDhyohx56SMOGDdOJEyc0c+ZMxcbGatKkScb1Lly4UA899JDmzp2rH374QfPmzdM333yj9u3ba9asWVq+fLkmTpyoli1bqkKFCiZ9Sk1NVUhIiOLj4zVlyhQZDAbNmDFD58+ft/bhAQDY0OmgpTmua4joYnYbSWpsVm0AhYVdJ2Hbtm1TQECAPDw8jGUdO3bUggULdODAATVunPHU5ujoqF69epksc3R0VNWqVRUdHS1JSklJ0fHjx/Xcc89ZficKOX9/f40ePVqSVK5cOf34449q1KiRhgwZIklyc3NT//79dfLkSdWtW1dhYWHy8/PTzJkzJUmBgYEqUaKExo0bp5CQEFWqVMm4rrffflsODg7y9/fXqlWrVK5cOb388suSpGrVqunBBx/U4cOHMyRhmzZtUlRUlFatWmVMwqtVq6YePXpY45AAAGATPOsMsB92nYSdPHlSLVq0MCmrXLmycVlmSViDBg305ptvmpTFx8frt99+U2BgoCTp+PHjSkpK0tatW/X+++/rwoULatCggcaPHy8/Pz8L7U3h1LBhQ+PPpUuXlnQrRum8vLwkSXFxcbpx44b++OMPjRw5UikpKcY6gYGBSktL086dO41JWMOGDeXw74M/3d3dVbRo0SzXe6e9e/eqRIkSJqOg9evXV8WKFe9tZwHAQiIiImzdhQLJnAdH5/eHTQOwLzZLwpKTk3Xq1Kksl5cuXVrx8fEqWrSoSXn66/j4+Bxv6/XXX1d8fLyeffZZSbcuRZSkS5cu6c0339TNmze1aNEi9evXT59//rm5u4Js3Bk/SSYjm7eLi4tTWlqaZsyYoRkzZmRYfvHixVytN7PteHt7ZygvU6ZMjtoDAAAA98JmSdj58+fVpUuXLJePGzcu2/aOjnefU8RgMOiNN97QunXr9Nprr6levXqSpJYtW2rhwoV64IEHjPeVtWjRQp06ddLixYsVHByc7XoTEhJMJooo6K5du5brtomJicb26YnzzZs3jWXXr1+XdOuYps96GRISkum0+GXKlNG1a9eUlpamlJQUk34ZDIZst5WcnKzU1FRdu3ZNRYoU0aVLlzLsV0xMjJKSknTt2jVjfO9l3/Ocg6vFN7Flyxaz6pcoUUJXr161UG+QU8TB9ojB3aVf4WDuecYcloxD+t8oS/Y/N65Y+L62+FzsL++H7MXGxkrKv+8F5Fz6VXiZsVkSVqlSJeOIVFYWLlxo/JCeLv21p6dntm2TkpI0duxYfffddxo1apRJYlWmTBm1a9fOpL6np6f8/f115MiRu/a9sD3rpFixYrlu6+bmZmyf/gfM3d3dWJY+olWkSBHdd999qlOnjs6fP29yGeqRI0f0zjvv6MUXX1SNGjXk6OgoZ2dnk345ODhkuy0XFxc5OTmpWLFiatOmjZYtW6aDBw8aJ285ceKEoqOj1aZNGxUrVsw46nYv+57XYuMTLb6N7E4WAHAvnJ1vfeTIr+eZ9Evg7a3/X/56wqLrt7f9LQgWLVokiWNb2Nn1PWHVqlUzTqaR7vTp05KkGjVqZNnu5s2bGjJkiHbu3KnJkyfr//7v/0yW//bbb7pw4YK6du2aoV1ml6nBeoYPH66hQ4fK09NTDz74oK5cuaKwsDA5Ojqqdu3aebKN1q1bq1mzZhozZoxGjx6tIkWKKCwsLNPZNu2Jl6dbpuVF3JzVrVHGexS4fwEAAMA+2fVzwlq2bKlt27YpISHBWLZ+/Xp5eXll++Dd0aNH67ffftOMGTMyJGCStH37dr388ssm9xhdvHhRe/fuVfPmzfN2J2CWDh06aP78+Tp48KCef/55vf3222rUqJE++uijHN/zdTcODg5asGCB2rRpo7feekuTJk1S9+7deZgzAAAArMLBkH7dlh26cOGCunTpojp16igkJERHjhzRnDlzNGrUKIWEhEi6de/PX3/9pSpVqqhkyZL66aefFBoaqscffzxDAubu7m683O2xxx5TxYoVNXToUCUlJWnevHlKSEjQV199pVOnTqlu3bq22GXYiePHj0vKfsTVXkRGRmb6+5p+D+Thw4et3SUAyKBp06aSpN27d9u4J7ljr+dUcy5HfPm5W/eEvfPhtzluw9UUeS/9FhlmPS3c7PpyxLJly2rp0qV66623NHz4cJUuXVovvviiMQGTpEOHDqlv376aOnWqevTooZ9//lmStHbtWq1du9ZkfbVq1dLXX3+tcuXKaeXKlXr33Xc1btw4paamqnXr1nrllVcynXUPAAAAAPKKXSdhkuTr66tPP/00y+UtWrQwmeBj2rRpmjZt2l3XW7NmTX3wwQd50kcAAAAAyCm7T8IAAABsrbDNjAzAskjCAACAxXGvNQD8x65nRwQAAACAgoYkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwW4+Pjo8WLF1t8O19++aUCAwPVsGFDLVq0SO3bt9cbb7yRZf3o6Gj5+Pjo+++/t3jfAAAAgDvxnLB8YO/bbW26/cbjN+Wq3apVq1ShQoW87Uwm3n77bfn4+GjYsGGqXLmyWrdureLFi1t8uwAAAEBukITBYho1amSV7cTGxiowMFDNmjWTJN13331W2S4AAACQGyRhsBgfHx+NHTtWISEhmjNnjjZu3Ki+fftq3rx5On/+vBo3bqzp06drw4YNWrhwoa5du6Z27dppypQp8vDw0M6dO9W3b18tXrxYM2bM0LFjx1SzZk2NGTNGAQEBxuWS9O677+rdd99VVFSU2rdvr7Zt22rixImSpP3792vatGk6fPiwqlSpomHDhtnysAAAkGe6ta6e47rjHBzMbgPAMrgnDFZz4sQJLVq0SGPHjtWbb76p/fv3Kzg4WJ9//rkmTZqkwYMH6+uvv9ZHH31k0m7UqFHq0KGD5syZo5IlS2rgwIH6888/Vb9+fa1atUqSFBwcbPz5dtHR0erfv7/c3Nw0e/Zs9ezZU+PGjbPK/gIAAACZYSQMVpOQkKC3335bfn5+kqRNmzbpm2++0YYNG1SxYkW1a9dOmzZt0v79+03a9erVS6GhoZKkgIAAdezYUUuXLtXUqVONlzyWL18+08sfIyIi5OrqqgULFsjDw0NBQUEyGAyaNm2aRfcVAAAAyAojYbAaBwcHNWjQwPi6VKlSKlmypCpWrGgs8/Ly0rVr10zade3a1fizq6ur2rRpo927d+dom3v37lWzZs3k4eFhLOvUqVNudwEAAAC4ZyRhsBoPDw85OTllKLubMmXKmLwuWbKkrl69mqNtxsXFydvbO9v1AQAAANZEEga7Fxsba/L68uXLKlmyZI7aenl56fLlyyZlV65cyauuAQAAAGYjCYPd27hxo/HnpKQkbdmyRS1atMhR2xYtWmjnzp2Ki4szlm3ZsiXP+wgAAADkFBNzwO7Nnz9fLi4uql69uj766CMlJCToueeey1Hbfv36adWqVRo4cKCGDBmic+fOae7cuRbusX0oUqSIrbsAALAj/F0A7AcjYbB7Y8eO1f/+9z8NHz5cSUlJWrlypSpXrpyjtqVKldKKFSvk4eGhF198UcuWLdPrr79u4R4DAAAAWWMkLB9oPH6TrbuQK1FRUcafhw0bluEhya+++qpeffVVk7L58+dnWE+DBg30zTff5Gg7krRhwwaT17Vq1dKyZcuybQMAAABYCyNhAAAAAGBFJGEAAAAAYEVcjgi71aJFCy4bBAAAQIHDSBgAAAAAWBFJGAAAAABYEUkYAAAAAFgRSRgAAAAAWBFJGAAAAABYEUkYAAAAAFgRU9QDBVTdunVt3QUAAABkgiQMAADgLvhiC0BeIgnLD57rbNvtf/h9rpr9888/eumll3To0CHVqFFDX375ZR53zHJq1Khh6y4AAJCnSCQB+0ESBov56KOPFBkZqZkzZ+q+++6zdXcAAAAAu0ASBou5evWqKlWqpI4dO9q6KwAAAIDdYHZEWET79u31xRdf6K+//pKPj4+++OKLHLX7+++/9cILL8jf319NmzbVmDFjFBMTI0m6du2a2rRpo6eeekoGg0HSrUTvgQce0ODBgyVJr7zyigYPHqwlS5aoVatWatq0qUaNGqXY2FiL7CcAAPlFRESEIiIibN0NAMoHSdiff/6pfv36yd/fX23btlV4eLjxA3hWvv/+e/n4+GT4t2LFCmOdq1ev6pVXXlGLFi3UrFkzvfrqq4qPj7f07hQac+fOVVBQkCpXrqxVq1apbdu2d21z6dIl9enTR//884+mT5+u119/Xb///rtCQkKUlJSkYsWKafLkydq3b58+//xzSdLUqVOVnJysKVOmGNezZ88effzxx5owYYJee+01bdu2Tc8//7yldhUAAAAwi11fjnj58mU9++yzqlWrlsLCwnTo0CGFhYXJyclJISEhWbaLiopS1apVNX36dJPySpUqGX8eNmyYoqOjNXnyZN28eVPTp0/XpUuX9MEHH1hsfwqTevXqqWTJkvrnn3/UqFGjHLVZvny5EhMTtWTJEpUsWVKS1LBhQz300EP69ttv9fjjj6tDhw7q0qWL3n//fXl6emrNmjWaMWOGypYta1xPfHy8Pv30U9WsWVOS5OXlpcGDB2vXrl1q3rx5nu8rAAAAYA67TsJWrlyplJQULViwQB4eHgoKClJSUpLCw8PVt29fubi4ZNouKipK9evXz/LD/44dO7Rz506tXr1afn5+kqT77rtP/fv316FDh+ToaPcDhAXSzp071ahRIxUvXlwpKSmSpPLly+v+++/X9u3b9fjjj0uSJkyYoIcfflgjR47UQw89pEceecRkPT4+PsYETJKCgoLk4uKi3bt3k4QBAADA5uw629i2bZsCAgLk4eFhLOvYsaNiY2N14MCBLNtFRUXJx8cny+Xbt29XqVKljAmYJLVo0UKenp7aunVr3nQeZouNjdXWrVtVv359k39//vmnLl68aKxXsmRJPfDAA0pLS1NQUFCG9ZQpU8bktYODg7y8vHT16lWL7wMAAABwN3Y9Enby5Em1aNHCpKxy5crGZY0bN87Q5vr16zpz5owOHz6shx56SNHR0apRo4ZGjx5t/MB+4sQJValSxaSdo6OjKlasqJMnT2b6wR6W5+npqcDAQA0fPjzDsqJFixp/3r17t7755hv5+PjovffeU/v27eXt7W1cfuckHGlpabpy5YpKlSplsb4DAAAAOWWzJCw5OVmnTp3Kcnnp0qUVHx9v8uFb+u/DeFaTaERFRclgMCg6OlqvvPKKnJyc9PHHH2vIkCFaunSpWrZsqevXr2dYb/q6czI5R0JCglJTU+9aL68Us9qWMnft2rVctUtOTlZqamqO2zds2FBbtmxRhQoV5OrqKklKTEzUyy+/rLZt26pMmTJKTEzU+PHj1bx5c7399tvq2bOnXn/9dePEHMnJyTpy5Ij++usvlStXTpK0ZcsWpaSkyNfXN9f7Ys9u3ryp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ihW67777JEkjRozQsWPHMt1esWLFVKdOHb355psZlrm6upqz2wAAAECWmJgDFrNjxw599tlnevnllzV27Fh98cUX2rZtW47abtmyRQEBAYqJiZGrq6sCAgI0YcIESdI///yjhg0bytnZWRs3bjRpN3HiRC1evFiHDx9WcnKyBg0aZEzAEhIStGfPHhkMhky32bhxY0VHR6tixYry9fWVr6+vGjRooGXLlmnTpk25PxAAAADAbRgJg0XcuHFDEyZMUPPmzfXYY49Jkj777DNNmDBBX331lYoUKZJt+4YNG8pgMCg0NFQDBw6Ui4uLli9fruLFi6tFixYqWbKknnrqKS1YsEDOzs5q0KCBvvvuO0VGRmrixIny9PSUk5OT3n33Xf3f//2frly5oiVLlujSpUtZjmo98cQTioiI0IABAzRo0CB5eXlp1apV+vHHH437AAAonG6/5xgA7hVJWD7QrXV1W3fBbLNmzdLZs2e1cOFCY9mkSZPUvXt3zZw5U6+++mq27b28vPThhx9qxowZGjt2rJKTk9WwYUMtXbrUeB/Y+PHj5e3trZUrV+rKlSuqVauWFi1aJF9fX0nSO++8o7lz52rQoEEqU6aMAgMD1bNnT73xxhs6f/68yWWM0q370FauXKnp06dr8uTJSkpKUq1atTR//nwFBQXl8RECAABAYeVgyOrarEIsMjJSdevWtXU3gBzJ6vc1ODhYEt/eAgAA2BtGwmBVBoNBqampd63n7MyvJgAAAAomPunCqnbt2qW+ffvetd7PP/+sSpUqWaFHAAAAgHWRhMGq6tevr88+++yu9cqWLWuF3gAAAADWRxIGq/L09DROnAEAAAAURjwnDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgp6vODIw623X4dg223b0E+Pj4aO3asQkJCbN0VAAAAFBKMhAEAAACAFZGEAQAAAIAVkYTBIqZNm6bmzZsrKSnJpHzAgAEaPnx4jtaxf/9+Pf300/L391fz5s01fPhwnTlzxrg8NTVVCxcuVMeOHeXn56du3bpp/fr1xuXx8fF688031a5dOzVo0EAtW7bUyy+/rLi4uCy3efnyZY0dO1bNmzeXv7+/hgwZotOnT5u59wAAAEDWSMJgEY8//riuXr2qX375xVh28eJF7dixQ4899thd29+4cUODBg1SuXLlNH/+fE2ZMkWHDx/WSy+9ZKwzdepUzZ07Vz169NDChQvl5+en4cOHa/fu3ZKkUaNGacOGDRo1apQWL16sAQMG6Ouvv9b8+fMz3ebNmzfVt29f7dmzR6+99pqmT5+uS5cu6ZlnntHVq1fv8YhYX0REhCIiImzdDQAAANyBiTlgEXXq1FGdOnX09ddfq3379pKkb775RsWKFVNgYOBd2x89elSxsbEKDg6Wv7+/JMnb21s7duxQWlqa4uLi9PHHH2vo0KF64YUXJEkBAQE6ceKEdu/eLV9fXyUnJ2vy5MnG7bVo0UL79u3Trl27Mt3m2rVrdeLECX311Ve6//77jets166dIiIiFBoaes/HBQAAALD7JOzPP//UW2+9pT/++EMlSpRQnz59NHDgQDk4ZD5j4Jw5czR37txMl1WsWFEbNmyQJC1evFjTp0/PUGfhwoW677778m4HCrHHH39cs2bNUkJCgooUKaJ169apS5cucnV1vWvbGjVqyMvLS0OGDFHXrl0VFBSkgIAANW/eXNKtSxVTU1ONCV6620d+lixZIkmKjo7WyZMndfToUR07dkxubm6ZbnPnzp2qWrWqqlatqpSUFEmSu7u7mjRpoh07dpCEAQAAIE/YdRJ2+fJlPfvss6pVq5bCwsJ06NAhhYWFycnJKcspxXv16qU2bdqYlB0/flzjx49Xr169jGVRUVFq2rSpxowZY1K3Ro0aJvcdIfceffRRvffee9qwYYPq16+vQ4cOaeLEiTlq6+npqRUrVmjevHlas2aNVq5cqeLFi2vkyJHq06eP8fLAkiVLZrmOn3/+WVOnTtXp06fl7e2tBg0ayN3dXWlpaZnWj42N1fHjx1W/fv0My6pVq5ajfgMAAAB3Y9dJ2MqVK5WSkqIFCxbIw8NDQUFBSkpKUnh4uPr27SsXF5cMbe677z6TkazU1FS98cYbatasmYYMGWIsj4qKUps2bdSoUaMM6yAJyxulS5dW69at9cMPPyg6OlpVq1bN9HhnJT35TkpK0p49e7R8+XK9/vrrql+/vooVKyZJunLlisqVK2dsExkZKYPBoCJFimjEiBHq3r27VqxYYfydGDFihI4dO5bp9ooVK6Y6derozTffzLAsJ6N3AAAAQE7Y9cQc27ZtU0BAgDw8PIxlHTt2VGxsrA4cOJCjdfzvf/9TVFSUJk6caLyEMSUlRcePH5ePj49F+o3/PP744/rll1/0448/5mhCjnRbtmxRQECAYmJi5OrqqoCAAE2YMEGS9M8//6hhw4ZydnbWxo0bTdpNnDhRixcv1uHDh5WcnKxBgwYZE7CEhATt2bNHBkPmD59u3LixoqOjVbFiRfn6+srX11cNGjTQsmXLtGnTptwdAAAAAOAOdp2EnTx5UlWrVjUpq1y5snHZ3SQmJmru3Lnq2bOnatWqZSw/fvy4kpKStHXrVrVr107169dX7969tX///jztP6QOHTrI2dlZhw4dUrdu3XLcrmHDhjIYDAoNDdXGjRv1yy+/aPLkySpevLhatGihUqVK6amnntKCBQu0aNEibd++XRMnTlRkZKT69++vunXrysnJSe+++662b9+ub7/9Vn379tWlS5d048aNTLf5xBNPyMvLSwMGDNC3336rbdu26cUXX9S3336rOnXq5NUhAQAAQCFns8sRk5OTderUqSyXly5dWvHx8SpatKhJefrr+Pj4u27jm2++0eXLlzVgwACT8qioKEnSpUuX9Oabb+rmzZtatGiR+vXrp88//9zcXUE23Nzc1Lx5c8XExBgT6Jzw8vLShx9+qBkzZmjs2LFKTk5Ww4YNtXTpUuN9YOPHj5e3t7dWrlypK1euqFatWlq0aJF8fX0lSe+8847mzp2rQYMGqUyZMgoMDFTPnj31xhtv6Pz58yaXMUq37kNbuXKlpk+frsmTJyspKUm1atXS/PnzFRQUlHcHBQAAAIWagyGra7MsLDo6Wh06dMhy+bhx4/Tee+9p+PDhGjRokLE8JSVF9evX14QJE/TMM89ku42nnnpKJUqU0AcffGBSfvHiRR08eFAPPPCA8b6y+Ph4derUSW3btlVwcLDq1q2b5XoTEhKUmpqak90s9BITE9WlSxcNGzZMjz/+eJ6t18nJiRj866+//tK1a9dssu0SJUrky2eoFTTEwfaIgX0gDvaBONgeMbAP2T2WyWYjYZUqVTKOSGVl4cKFun79uklZ+mtPT89s2166dEm///673nnnnQzLypQpo3bt2pmUeXp6yt/fX0eOHLlr34sUKXLXOoXd1atXFRERoZ07d8rZ2VlPPPGEPDw8ZDAYcpQ8OTvb9ZwxdsXd3d34LDUAAADYP7v+pFutWjVFR0eblJ0+fVrSranks/PLL7/Iyckp09G23377TRcuXFDXrl1Nym/evClvb+977DWkW5chrly5Um5ubnrvvfeMk6vs2rVLffv2vWv7n3/+WZUqVbJ0NwEAAACrs+skrGXLllq1apXxYb+StH79enl5ed11ooQ//vhDNWrUyHTEbPv27QoPD1fz5s1VpkwZSbcuUdy7d6/JNPbIPXd3d23fvj1Def369fXZZ5/dtX3ZsmUt0S0AAADA5mx2T1hOXLhwQV26dFGdOnUUEhKiI0eOaM6cORo1apTxYc3x8fH666+/VKVKFZMH9wYHB8vb21uzZ8/OsN7z58/rscceU8WKFTV06FAlJSVp3rx5SkhI0FdffaVTp05le08YYE8iIyP5fQUAAMhH7HqK+rJly2rp0qVKSUnR8OHDtXr1ar344ovGBEySDh06pN69e2d4jtPly5dVvHjxTNdbrlw5rVy5UmXKlNG4ceP02muvqUaNGlqxYkWG2RgBAAAAIC/Z9UiYrURGRqpOnTrGhzsD9spgMOjIkSOMhAEAAOQjdj0SZisuLi5ZPtAXsCc3btyQm5ubrbsBAAAAM5CEZaJs2bI6c+aMEhISxEAh7I3BYFBycrJiYmIUHR2tUqVK2bpLAAAAMAOXI2YhLi5OFy5cUHJysq27AmTg7Owsd3d3lSlTRu7u7rbuDgAAAMxAEgYAAAAAVmTXzwmzRwaDQTdv3rR1Nwo1g8HApCl2gDjYB+Jge8TAPhAH+0AcbI8Y2Bd3d/dM40ESZqabN2/qyy+/5GHCNpSUlKSdO3eqRYsWcnV1tXV3Ci3iYB+Ig+0RA/tAHOwDcbA9YmA/Lly4oG7dusnDwyPDMpIwM7m7u6tUqVIKCAiwdVcKLYPBoNTUVAUGBvJNjw0RB/tAHGyPGNgH4mAfiIPtEQP78csvv2R57z5JmJkcHBzk5uaWaUYL6ylWrJiKFCli624UesTBPhAH2yMG9oE42AfiYHvEwD64ubllmQgzRT0AAAAAWBFJGAAAAABYEUkYAAAAAFgRSRgAAAAAWBFJmBX5+Pho8eLFtu6GVZ09e1ZNmjTRgQMHTMoNBoMaN24sHx8fk389evSweJ+Iw39sFQdi8B/eC9ZFHOyDvcWBGPyH94J1EQfbs1UMmB3RilatWqUKFSrYuhtWc/HiRQ0aNEjx8fEZlkVHR+v69et65513VK1aNWO5NWbyIQ7/sVUciMF/eC9YD3GwD/YYB2LwH94L1kMcbM+WMSAJs6JGjRrZugtW89NPP+mNN95QYmJipsujoqLk6Oiohx56yOrT/ROH/9gqDsTgP7wXrIM42Ad7jQMx+A/vBesgDrZn6xhwOWIOxcfH680331S7du3Ur18/tWzZUi+//LLi4uIyLG/QoEGG5VLuhne3bt2qZ555Rv7+/vL19VW3bt30448/mtTZsWOHnnjiCTVs2FBdu3bV1q1bVa9ePX3xxRdm1bmTj4+PFi5cqK5du6pFixb6/vvv9corr2jw4MFasmSJWrVqpaZNm2rUqFGKjY01touLi9OIESPUvn17vfPOO5mu+8iRI6pSpYrZv9Tpx/nll1/O9DgTh1hjO0vF4fZjPGTIEGJg4/cCcbCPOHBO4pxUmGMgEQd7i0NhOSfZYwxyipGwHBo1apSOHj2qUaNGKTo6Wo6Ojpo1a5a8vb31yiuvmCwvU6aM9u/fb7I8N/744w8NGjRITz31lIYOHarr16/rww8/1KhRo7R582aVLFlSUVFRGjhwoFq3bq1hw4bp6NGjevHFF5WammpcT07qZGXu3LkaP368vL291bRpU23atEl79uzRsWPHNGHCBCUmJuqdd97R888/r08++USS5O7urm+//VbVqlXTzp07M13vn3/+KVdXVw0YMEB79uyRh4eHevTooZEjR8rFxSXL/qQf5x49eigwMDDDcSYOlo/D7cf47NmzMhgMxMCG7wXiYB9x4JzEOakwx0AiDvYWh8J0TrK3GOQUSVgOJCYmKjk5WZMnT1ZgYKC2bNmiwMBA7du3T7t27cqwXJJatGhhXJ5bR48e1YMPPqhJkyYZyypUqKDu3btr//79ateuncLDw3Xfffdp7ty5cnZ2VlBQkBwdHU2y+pzUyUrr1q3Vp08fk7L4+Hh9+umnqlmzpiTJy8tLgwcP1q5du9S8eXO5urqaXDubmaioKJ07d069e/fW888/r927d2vBggW6cuWKpk6dmmmb24+zdOsY336ciYPl48B7wfYxkIiDPcZB4pzEOalwxkAiDvYYB6nwnJPsKQbmIAnLATc3Ny1ZskTSrZv0/vjjDx07dkzHjh2Tm5tbhuUnT57U0aNHjctzq2fPnurZs6cSEhJ07NgxnTx5Ujt27JAkJSUlSZJ27dqlzp07y9n5v1B27tzZ5Bc2J3Wycv/992co8/HxMf5SS1JQUJBcXFy0e/duNW/ePEf79vbbb6to0aKqU6eOJKlZs2ZycnLS+++/r9DQUFWsWDFDm9uP8xdffKFffvnF5DgTB8vH4c5jfOjQId4LNn4vEAf7iAPnJM5JhTUGEnG4kz3EoTCdk+wpBuYgCcuhn3/+WVOnTtXp06fl5OSkVq1ayd3dXWlpaRmWe3t7q0GDBibLcyMhIUETJ07Ud999J0mqXr268RfBYDBIkq5cuaKSJUuatCtdurTJ65zUyUqpUqUylJUpU8bktYODg7y8vHT16tUcrVOSmjRpkqEsMDBQM2bM0J9//pnlL/bdjjNxsHwcbj/Gnp6e8vf3Jwb/stV7gTjYRxw4J3FOkgpnDCTicDt7iUNhOSfZWwxyiok5cuDkyZMaMWKEAgICtHnzZi1cuFAffvihqlevnunyHTt2mCzPrSlTpujXX39VeHi49u3bp6+//lpDhgwxqVO2bFnFxMSYlN35Oid1zHH7jY2SlJaWpitXrmT6JsjMtWvX9L///U+nTp0yKb9586YkydvbO9N2tx/nd955J8NxJg6Wj8Odx3jmzJnE4Da2eC8QB/uIA+ckzkmFNQYScbiTPcShsJ+TbBUDc5CE5cDhw4eVnJysQYMG6b777pN0K+vfs2ePDAbDXZfn1u+//642bdqodevWcnV1lXRr9hnpv28WmjVrps2bN5t8g/Hzzz+brCcndcxx5MgRnTt3zvh606ZNSklJUYsWLXLU3sXFRW+88YY++ugjk/IffvhBJUqUUO3atTNtd/txTv+mhDhYNw68F0zZw3uBONhHHDgncU4qrDGQiMOd7CEOhf2cZKsYmIPLEXOgbt26cnJy0rvvvqv/+7//044dOzR79mxdunRJrq6uGZZfuXJFS5YsMS7PLV9fX23YsEFr1qxR+fLltWPHDuOUoemZ+KBBg9StWzcNGzZMvXv31smTJzVr1ixJkqOjY47rmCMlJUVDhgxRaGiorl69qvfee09t27aVn59fjtq7u7vr2Wef1YcffigvLy81btxYv/76q5YtW6ZXX301y4fg3X6c69evr/j4eJPjTBwsH4c7j/Fvv/3Ge8HG7wXiYB9x4JzEOamwxkAiDneyhzgU9nOSrWJgFgNyZN26dYZOnToZGjRoYPD39zdMmjTJ8PHHHxvq1KljOHfunMnydu3aZVhuMBgMtWvXNnz44Yc53ubly5cNw4YNMzRt2tTQtGlTQ+/evQ2bNm0ydOrUyTBhwgRjva1btxoee+wxQ/369Q1du3Y1/O9//zPUrl3b8MMPP5hV506Z9ffll182dO3a1bBw4UJDs2bNDM2bNzdMmTLFcOPGjUzXsWPHDkPt2rUNf/zxh0l5SkqK4cMPPzQes4ceesjw6aef3vWYpB/nevXqZXqciYPl43D7MQ4ICCAGNn4vEAf7iAPnJM5JhTkGBgNxSGcvcSgs5yR7jMHtNm/enOUykrBcyO6AWtuvv/5q+P33303Ktm7daqhdu7YhMjIyx3VyKv0X29bsKQYGA3GwB4U1BgYDcbCHONhTDAwG4mAPCmsMDAbiYA9xsKcYGAzWjYO9xMBgyD4OXI5oA6mpqXe99tbR0TFHQ6+///67Fi9erJdfflnVq1fXmTNnNHv2bDVr1sw4M01O6hRGxMH2iIF9IA72gTjYHjGwD8TBPhAHyyIJs4H+/fvf9aF43bt317Rp0+66rkGDBikpKUnh4eE6f/68SpQooQcffFCjRo0yq05hRBxsjxjYB+JgH4iD7RED+0Ac7ANxsCwHw91SXGSQ/iT43Dp+/LiuX7+ebR1vb29VqlQp19so6O41BhJxyAu8F+wDcbA9zkn2gfeCfSAOtsc5yT5kFwdGwmygRo0atu4CRBzsATGwD8TBPhAH2yMG9oE42AfiYFk8JwwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkLBeqVq1q6y4UesTAPhAH+0AcbI8Y2AfiYB+Ig+0RA/uQXRwcDAaDwYp9AQAAAIBCjZEwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwIpIwAAAAALAikjAAAAAAsCKSMAAAAACwImdbdwCW8corr2jNmjUZyl1dXVWmTBkFBgbqpZdeUvHixU3qly5dWr/++qu1u1tgBQcHa9euXfLz89Pq1auNr2/n4uKiokWLqnbt2ho+fLiaNWtmo97av0ceeURHjx6Vj4+P1q1bZyy/dOmSWrdubXy9cuVKNW3a1Pi6b9++2rlzp6pVq6ayZctmiMGd6tSpoy+//FJSxhjeLjExUQ0bNpQkhYaGatiwYfe8j/lVXFycFi9erPXr1ys6OlpOTk6qXbu2unfvrl69esnR8dZ3fpm9B+7E8c9bMTExWrBggTZv3qxz587J0dFRVapUUadOnRQSEiIPDw+T+jmNJf5z5+/1J598osaNGxtff/nllxo7dqzxdffu3TVt2jS1b99eZ86cyXbdHTp00Pz58yUp0/qurq4qWbKkmjVrpkGDBql27dp5sUv5ljnnGM5H1peb+BTU482ZtJBJSkrSmTNn9Mknn2jQoEFKTU21dZcKveTkZMXGxmrXrl169tlntXv3blt3yW75+flJkv766y/dvHnTWH7nCX3v3r3Gnw0Ggw4fPixJatSokeU7WQj99ddfeuSRR7Rw4UJjbK5fv659+/Zp4sSJeuGFFzjX2MiFCxfUvXt3ffTRR/r777+VmJioGzduKCoqSnPmzNHTTz9t8l4ilnnjt99+M3ltyfN6UlKSzp07p6+++kq9evXStm3bLLYtAHmHkbACrmTJksYRsbS0NMXHx2vRokVat26d9u3bp02bNqlDhw427mXhU69ePS1YsEBpaWlKSEjQDz/8oDlz5ig5OVkzZ87UypUrbd1Fu9SoUSN99tlnSk1N1eHDh43fNN/5gef2JOzkyZO6du2asf0///wj6b8YZMbFxcUS3S+Qrl+/rueff17nz5+Xl5eXRo8erebNm+uff/7RjBkzdODAAW3cuFFLly7Vc889Z2zH8beO+fPn69y5c/Lw8NC4cePUrFkz3bx5U4sXL9bXX3+tQ4cOafXq1erbt2+uY4mMdu3apcGDBxtf33mOulP79u01adKkTJe5ubllWT81NVVxcXHaunWr5s6dq5s3b2rMmDH6/vvvVaxYsXvbiXzOnHMM5yPr45iThBV4jo6Ouu+++0zKxo0bZ7yUKzIykiTMBlxcXEziUrNmTeMHnL179yo5ObnQnITMcftI1sGDBzMkYUWLFjV+a28wGOTg4KCDBw8a2/j7++vbb7+VlDEGyJ1Vq1bp1KlTkqS5c+caL6etWrWqlixZos6dO+vy5ctat26dyQd3jr917NmzR5LUrFkz9e7d21g+bdo0bd26VVevXtVvv/2mvn375jqW+E/58uV19uxZ7d27VykpKXJ2dtbly5d14sQJSVKFChWMXwTdzt3d3az3w+31K1asqLp168rT01Ovv/66Ll26pC+++EL9+vXLm53Kp8w5x3A+sj6OOZcjFkoODg7Gn728vGzXEZioVauWpFsjlleuXLFxb+xTzZo1jd/upidXMTEx+uuvvyRJzzzzjCQpNjZWx48fN6lXpEgR4zFG3vnmm28kSfXr189wP2Px4sU1ffp0/e9//9PatWtt0Dukf5mzbds2LVmyRHFxccbyn3/+Wdu3b9fUqVMlEcu84OfnJ2dnZyUkJBgvg07/kqhs2bKqVKmSxbbdo0cPY7y3bNlise0AyBuMhBUiaWlpio2N1XvvvSdJ8vDw0IMPPmjjXiHdn3/+KUlycnIiOc6Cg4ODfH19tW3bNmNytXv3bhkMBjk7O6t///5aunSpkpKStHfvXt1///3Geg0bNpSTk5NxXcnJyTp37lym2/H29s70EiCYSklJUVRUlCSpQYMGmdZ54IEHMi3n+FvHQw89pEOHDiklJUXvvPOO3n//ffn7+ysoKEhdunRRhQoVJN1bLPEfDw8P1alTRwcPHtSuXbvUsGFD4/1gTZo00eXLlzNtd/PmzSzfD6VKlcrRlRHu7u6qWrWq/vrrL+Pfk8LMnHMM5yPr45iThBV4ly5dko+PT4Zyd3d3vffeeypXrpwNeoX0k4/BYFBcXJx++OEHbdq0SZLUokULubq62raDdszPz0/btm3TiRMndP36deOkHPXq1VPJkiWNH3r27t2rnj17Zjkpx+HDhxUUFJTpNubNm6eOHTtadD8KgqtXryo5OVnSrT+a5uD4W0f6ZD/pIyPJycnatWuXdu3apffff199+vTRK6+8ck+xhKnGjRvr4MGD+u233/Tcc88ZR8IaN26sn376KdM2GzZs0IYNGzJdtnbtWtWtWzdH206/UiB9xLMwM+ccw/nI+jjmXI5YaN28eVMRERG6cOGCrbtSKKWffNq2bavHHntM8+bNk3TrkrnbpzFGRv7+/pJujewePnzY+C1z+uVT6f/v3btXx48fV0JCgiSZTBdtCbdf5ltY3D5LnsFgsGFPCufxzwlXV1d98MEHev/999WqVSuTEZXU1FRFRERo/vz5dhXL/C79XLNnzx7FxsYaR6WaNGlitT4wg6VtcT6yrvx6vBkJK+DunB3x+vXr2r17t95++23t2LFDoaGhGZ69AOtydXWVt7e3fH19NXz48ExHLvGf9GnqpVv3uaRfQnV7ErZgwQKdPHlSW7duzbRd+uuc/O6nf2jN7INpSkqK8Wdn58J3OvXy8pKDg4MMBoNiYmIyrZOWlpbpc6U4/tbj6Oiorl27qmvXroqPj9euXbv0/fff66uvvlJaWppWrFihIUOG5DqWMJWehF27dk0rV65UWlqaihQpojp16mTZpkuXLpo5c+Y9b/v69euSZHwGaGGW03OMOXU5H+WdnBzzgn6882evkWOZzY5Yq1YtHT58WKtXr9b+/fuNszbBesz54wBTXl5eqlatmk6ePKlPP/3U+MEw/Vtmf39/ubi4KDk5WStWrJAkVa9ePdf32Xl6ekqSbty4kWHZ7WVFixbN1frzM1dXV9WqVUt//vmnySyUt3vppZd0+fJlPfzww+rTp4/Z2+D4596pU6f0wQcf6Pz583r22WfVunVreXp6qn379mrfvr1Kly6txYsX6+rVq7p27ZrFY1lYlCtXTpUqVVJ0dLQ++ugjSbcuh779nlRLSElJ0d9//y1Jhf6BzZbC+ci6Cvrx5iutQur2S1Li4+Nt2BPAfOn3d6V/Y1+nTh3jN79FihRR/fr1JUnR0dGS/ruEMTfSJy44ceKEzp8/b7LsyJEjxp/Lly+f623kZ507d5Z063EXdz4L6fTp09q4caN27dqlL774Ilfr5/jnnoeHhz7//HNt3bpVq1atyrKeg4ODPD09LR7LwiR9NCw2NtbktSX9/PPPSkxMlCS1bdvW4tsrjDgfWVdBP94kYQVcWlqazp07Z/x3+vRpffvtt8Yphj09PZm2G/nOnZcWNm3aNNvXd07KIf03OUpW/9Ivf2jXrp2kW98yDxkyRL/88ov+/vtvbdiwwfhwVXd3d7Vo0SKvdi9fCQ4ONo62h4aG6vPPP9fff/+tTZs2/X9798+SXBjGcfwnhzhSdnCoOULC0CmEHM4LkOacTkNDqZNjS0i41NAbiKLl0Fw5tDQ09R50Mdp00QahcImeIR559DyV/fGG9PsBB/Xy33XDrdftua+jXC6nbrcrScrlcn2PI/+jNz8/L9d1JUnX19c6ODhQrVZTvV6X7/s6OzuTJLmuK9u2vzyWCBosuj7aD/a3O+L/LoM/Pgfj7+/vdXl5qXK5LOm1m2I2m/2xz/JbDTvHfCaW+ejnDJPzcc83hyOOuYeHhze7z0hSsVhUOBw2+I6A7xssqlZXVwPXT09P34yX3u/MJL2e28dxHKXTaa2vr+v8/FzValVbW1uB2J2dnV5XsknjOI6Ojo60vb2tdrut3d3dQMzGxoYymUzfbeTfjL29PXmep1arJd/35ft+3/3RaFSlUknS18cSQf8WYZZlBRaOBr3XHXF2drbXgOij+HA4rMPDw95hXJNsmDnmM7HMRz9rmJyPe74pwiaMZVmybVuLi4vyPI/VMvxK8Xhc09PTenp6UigUCqwyp1IpWZal5+dnzczMfPvf3v39fa2srOji4kJ3d3d6fHxUJBJRMpnU5ubmu18kkyCRSOjq6konJye6ublRs9mUbdtKJBLyPE9ra2vfen7y/3ULCwuqVCo6Pj7W7e2tGo1Gb6+w67oqFAp9pyoZ9VhOiqWlJTmOo06no+Xl5ZHuWZmamtLc3JzS6bTy+bxisdjIXgvMR6aNc75DL/SiBQAAAABj2BMGAAAAAAZRhAEAAACAQRRhAAAAAGAQRRgAAAAAGEQRBgAAAAAGUYQBAAAAgEEUYQAAAABgEEUYAAAAABhEEQYAAAAABlGEAQAAAIBBfwAwIEZLuS/oZgAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "time: 1.29 s (started: 2023-01-09 10:10:00 +01:00)\n" + ] + } + ], + "source": [ + "df = ss_df\n", + "cols = ['darkcyan', 'tab:purple', 'silver','peru']\n", + "cols2 = ['tomato','lightsteelblue','gold']\n", + "title = '(a)'\n", + "\n", + "zones = df.index.levels[0]\n", + "nplots = zones.size\n", + "plots_width_ratios = [df.xs(zone).index.size for zone in zones]\n", + "fig, axes = plt.subplots(nrows=1, ncols=nplots, sharey=True, figsize=(14, 8),\n", + " gridspec_kw = dict(width_ratios=plots_width_ratios, wspace=0))\n", + "\n", + "# Loop through array of axes to create grouped bar chart for each factory zone\n", + "alpha = 0.3 # used for grid lines, bottom spine and separation lines between zones\n", + "for zone, ax in zip(zones, axes):\n", + " # Create bar chart with grid lines and no spines except bottom one\n", + " df.xs(zone).plot.bar(ax=ax, legend=None, zorder=2,stacked=True,yerr=ss_conf_df.xs(zone),color=cols+cols2)\n", + " ax.grid(axis='y', zorder=1, color='black', alpha=alpha)\n", + " for spine in ['top', 'left', 'right']:\n", + " ax.spines[spine].set_visible(False)\n", + " ax.spines['bottom'].set_alpha(alpha)\n", + " \n", + " # Set and place x labels for factory zones\n", + " ax.set_xlabel(zone)\n", + " ax.xaxis.set_label_coords(x=0.5, y=-0.2)\n", + " \n", + " # Format major tick labels for factory names: note that because this figure is\n", + " # only about 10 inches wide, I choose to rewrite the long names on two lines.\n", + " ticklabels = [name.replace(' ', '\\n') if len(name) > 10 else name\n", + " for name in df.xs(zone).index]\n", + " ax.set_xticklabels(ticklabels, rotation=0, ha='center')\n", + " ax.tick_params(axis='both', length=0, pad=7)\n", + " \n", + " # Set and format minor tick marks for separation lines between zones: note\n", + " # that except for the first subplot, only the right tick mark is drawn to avoid\n", + " # duplicate overlapping lines so that when an alpha different from 1 is chosen\n", + " # (like in this example) all the lines look the same\n", + " if ax.is_first_col():\n", + " ax.set_xticks([*ax.get_xlim()], minor=True)\n", + " else:\n", + " ax.set_xticks([ax.get_xlim()[1]], minor=True)\n", + " ax.tick_params(which='minor', length=55, width=0.8, color=[0, 0, 0, alpha])\n", + " ax.set_ylabel(si_met)\n", + "#fig.supxlabel('Regions')\n", + "\n", + "# Add legend using the labels and handles from the last subplot\n", + "fig.legend(*ax.get_legend_handles_labels(), frameon=True,loc=(0.08, 0.2),title='Uncertainty parameter',title_fontsize=16)#loc='lower left'\n", + "\n", + "#fig.suptitle('(b)', y=1, size=14);\n", + "axes[0].set_title(title,loc='left')\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python [conda env:.conda-climada_env]", + "language": "python", + "name": "conda-env-.conda-climada_env-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/2024_03_winterstorms_projections_Europe/README.md b/2024_03_winterstorms_projections_Europe/README.md new file mode 100644 index 0000000..e62f498 --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/README.md @@ -0,0 +1,49 @@ +# Projections and uncertainties of winter windstorm damage in Europe in a changing climate +These scripts reproduce the main results of the paper: +Projections and uncertainties of winter windstorm damage in Europe in a changing climate + +Luca G. Severino (1), Chahan M. Kropf (2,3) Hilla Afargan-Gerstman (1), Christopher Fairles (2), Andries Jan de Vries (4), Daniela I.V. Domeisen (4,1), and David N. Bresch (2,3) +1 Institute for Atmospheric and Climate Science, ETH Zürich, Zürich, Switzerland +2 Institute for Environmental Decisions, ETH Zürich, Zürich, Switzerland +3 Federal Office of Meteorology and Climatology MeteoSwiss, Zürich, Switzerland +4 Institute of Earth Surface Dynamics, University of Lausanne, Lausanne, Switzerland +Correspondence: Luca Severino (luca.severino@usys.ethz.ch) + +## Content: +This folder contains material to reproduce the main results from the publication Projections and uncertainties of winter windstorm damage in Europe in a changing climate. The python jupyter notebook 1_load_process_data.ipynb serves to load and process the hazard data from a data archive containing CMIP6 netcdf files; the notebook 2_damage_calc.ipynb computes the damages projections; and the notebook 3_uncertainty-sensitivity_analyses.ipynb reproduces the results from the uncertainty and sensitivity analysis. The SL_bias_correction.py contains the script to bias-correct the hazard data taken from https://github.com/samluethi/HeatMortality2021/blob/main/Data_preparation/bias_correction.py, and constants.py contains constants required for the calculations. + +## Notes on hazard file generation +The section Damage Calculation of script 2_damage_calc.ipynb has been used to generate the hazard data present on the CLIMADA API: https://climada.ethz.ch/data-api/v2/docs. +The basic steps are described in the publication manuscript, currently available as a preprint at https://doi.org/10.5194/egusphere-2023-205. The daily surface wind maxima +are first bias corrected using ERA5 reanalysis as reference. Then windstorms days are detected following the algorithm: + +${Stormy day}_t \iff \sum_i \{a_i|[(v_{i,t} \geq v_{i,98}) \ \& \ (v_{i,t} \geq 15)] \} \geq A_{min}$ + +where $a_i$ is the area of the grid cell $i$, $v_{i,t}$ is the daily sfcWindmax intensity at grid cell $i$ on the considered day $t$, $v_{i,98}$ is the 98th percentile of the daily sfcWindmax at grid cell $i$, computed over the winter periods of the historical period, and $A_{min}$ is the area threshold parameter. +Days that do not fulfill this conditions are ignored. Gridcells that for which the daily surface wind maxima intensity values are below the absolute or relative thresholds are marked as 0. + + +## Requirements + +requires access to CMIP6 model outputs as .netcdf files (see https://wcrp-cmip.org/cmip-data-access/#esgf for more information), as well as LitPop metadata (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb). + +Requires Python 3.8+ and CLIMADA v4.1.1 (or later): +https://github.com/CLIMADA-project/climada_python/ +Documentation: https://github.com/CLIMADA-project/climada_python/blob/master/doc/source/install.rst + +## Documentation: + +* Publication available as a preprint at https://doi.org/10.5194/egusphere-2023-205 . + +Documentation for CLIMADA is available on Read the Docs: + +* [online (recommended)](https://climada-python.readthedocs.io/en/stable/) +* [PDF file](https://buildmedia.readthedocs.org/media/pdf/climada-python/stable/climada-python.pdf) + +----- +## History +created 28 March 2024 + +----- + +www.wcr.ethz.ch \ No newline at end of file diff --git a/2024_03_winterstorms_projections_Europe/SL_bias_corr.py b/2024_03_winterstorms_projections_Europe/SL_bias_corr.py new file mode 100644 index 0000000..16047ac --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/SL_bias_corr.py @@ -0,0 +1,229 @@ +""" +@author: Samuel Luethi WCR ETHZ +@date: 05.07.2021 + +BiasCorrection + +""" + +import numpy as np +import pandas as pd + + +"""Contains functions for bias correction. + +Bias correction is performed using a quantile mapping approach. +This code is a slightly simplified version of the method published by +Rajczak et al. (2016). doi:10.1002/joc.4417 and is available in R under +https://github.com/SvenKotlarski/qmCH2018 + +""" + +def bias_correct_time_series(dat_mod, dat_obs, dat_mod_all, + minq=0.001, maxq=1.000, incq=0.001): + """ Wrapper function for bias correction. Calculates quantiles for mapping, + estimates cumulative distribution function (CDF) of observational + (dat_obs) and modelled (dat_mod) data to estimate quantile specific + correction function. CDF of these two timeseries need to correspond to + the same time period. The estimated correction function is then applied + to dat_mod_all which is model output data the same model than dat_mod + but can cover any time range. + + Parameters + ---------- + dat_mod : pd.Series + Model data series as reference for bias adjustment + dat_obs : pd.Series + Observational data series as ground truth + dat_mod_all : pd.Series + Data series to be bias adjusted + minq : float + Minimum quantile for correction function + maxq: float + Maximum quantile for correction function + incq : float + Quantile increment for correction function (bin size) + + Returns + ------- + dat_mod_all_corrected : pd.Series + bias corrected dat_mod_all + + """ + # define quantiles used for mapping + q = np.arange(minq, maxq, incq) + # (1) calc cdf of observational and modeled data + cdf_obs = _calc_cdf(dat_obs, q) + cdf_mod = _calc_cdf(dat_mod, q) + + # (2) estimate correction function + cdf_dif = cdf_mod - cdf_obs + + # (3) perform quantile mapping to data + dat_mod_all_corrected = _map_quantile(dat_mod_all, cdf_mod, cdf_dif, q) + + return dat_mod_all_corrected + +def bias_correct_ensemble(dat_mod, dat_obs, dat_mod_all, + minq=0.001, maxq=1.000, incq=0.001): + """ Wrapper function for bias correction of a large ensemble. + Calculates quantiles for mapping, estimates cumulative distribution + function (CDF) of observational (dat_obs) and modelled (dat_mod) data + to estimate one single quantile specific correction function for the + whole ensemble. CDF of the observational data and the ensemble + DataFrame need to correspond to the same time period. The estimated + correction function is then applied to dat_mod_all which is ensemble + model output data of the same model than dat_mod but can cover + any time range. + + Parameters + ---------- + dat_mod : pd.DataFrame + DataFrame with climate data from large ensemble. Needs to cover + same range as dat_obs + dat_obs : pd.Series + Observational data series as ground truth. Needs to cover same + range as dat_mod + dat_mod_all : pd.DataFrame + DataFrame to be bias adjusted + minq : float + Minimum quantile for correction function + maxq: float + Maximum quantile for correction function + incq : float + Quantile increment for correction function (bin size) + + Returns + ------- + dat_mod_all_corrected : pd.DataFrame + bias corrected dat_mod_all + + """ + # define quantiles used for mapping + q = np.arange(minq, maxq, incq) + # (1) calc cdf of observational and modeled data + cdf_obs = _calc_cdf(dat_obs, q) + cdf_mod = _calc_cdf_ens(dat_mod, q) + + # (2) estimate correction function + cdf_dif = cdf_mod - cdf_obs + + # (3) perform quantile mapping to data + dat_mod_corrected = _map_quantile_ens(dat_mod_all, cdf_mod, cdf_dif, q) + + return dat_mod_corrected + +def _calc_cdf(data_series, q): + """ Calculates cumulative distribution function (CDF) of any time series. + Takes no assumption on distribution. + + Parameters + ---------- + data_series : pd.Series + Data series + q : np.array + quantiles of cdf to be calculated + + Returns + ------- + cdf : np.array + cdf of data_series on quantiles q + + """ + + # sort data + dat_sorted = np.sort(data_series.values) + # calculate the proportional values of samples + p = 1. * np.arange(len(data_series)) / (len(data_series) - 1) + # map to percentiles + cdf = np.interp(q, p, dat_sorted) + + return cdf + +def _map_quantile(dat_mod_all, cdf_mod_orig, cdf_dif, q): + """ Performs bias correction using quantile mapping + + Parameters + ---------- + dat_mod_all : pd.Series + Data series to be bias adjusted + cdf_mod_orig : np.array + original cdf of model used for bias correction + cdf_dif : np.array + cdf correction function + q : np.array + quantiles of cdf to be calculated + + Returns + ------- + dat_mod_adj : pd.Series + bias corrected data series + + """ + # calc percentile value of each temperature value in modelled time series + perc_mod = np.interp(dat_mod_all, cdf_mod_orig, q) + # correction term for each temperature value in modelled time series + cor_term = np.interp(perc_mod, q, cdf_dif) + # adjust for bias + dat_mod_adj = dat_mod_all-cor_term + + return pd.Series(dat_mod_adj) + +def _calc_cdf_ens(dat_mod, q): + """ Calculates cumulative distribution function (CDF) an ensemble. + Ensemble CDF is calculated as the mean over all CDF of the ensemble + members. + Takes no assumption on distribution. + + Parameters + ---------- + dat_mod : pd.DataFrame + DataFrame with climate data from large ensemble + q : np.array + quantiles of cdf to be calculated + + Returns + ------- + cdf : np.array + mean cdf over all ensemble members on quantiles q + + """ + + # array to store cdfs + cdf_array = np.zeros((dat_mod.shape[1], len(q))) + for i in range(dat_mod.shape[1]): + # calc cdf per member + cdf_array[i,:] = _calc_cdf(dat_mod.iloc[:,i], q) + + # average cdf + cdf_ens = np.mean(cdf_array, axis=0) + + return cdf_ens + +def _map_quantile_ens(dat_mod_all, cdf_mod, cdf_dif, q): + """ Performs bias correction for each ensemble member. + + Parameters + ---------- + dat_mod_all : pd.DataFrame + DataFrame to be bias adjusted + cdf_mod_orig : np.array + original cdf of model used for bias correction + cdf_dif : np.array + cdf correction function + q : np.array + quantiles of cdf to be calculated + + Returns + ------- + dat_mod_adj : pd.DataFrame + bias corrected data series + + """ + ens_array = np.zeros(dat_mod_all.shape) + for i in range(dat_mod_all.shape[1]): + ens_array[:,i] = _map_quantile(dat_mod_all.iloc[:,i], cdf_mod, cdf_dif, q) + dat_mod_corrected = pd.DataFrame(ens_array) + dat_mod_corrected.columns = dat_mod_all.columns + + return dat_mod_corrected diff --git a/2024_03_winterstorms_projections_Europe/constants.py b/2024_03_winterstorms_projections_Europe/constants.py new file mode 100644 index 0000000..5b3c699 --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/constants.py @@ -0,0 +1,67 @@ +#### define constants to be use in the analysis + +##imports +#from func_preproc_climada import * +### naming +##variables: +#day:surface wind max = SWM, surface wind (mean) = SW +#Amon: near surface air temperature: TAS, zonal wind: UA, air temperature: TA +#Omon: sea-surface temperature: TOS +#processing: 98th quantile = q98, gust factor 1.67 = gst1-67, NA20 = "threshold=20" in dropna(), cal1 = type 1 calibration +#space resolution: original model resolution = br, interpolated 25deg = itp2_5 +#time res +#domain: Europe = EU +#season: extended winter = winE +#base name save file = metvar + processings + time res + space res + domain + season +## climada +#CLIMADA filetypes: hazard = haz, exposures = exp, impacts = imp +#impact function: see shortnames + +### constants +#aai_agg_emdat = 1000*2165734.375 +aai_agg_emdat = 1000*3073582.5 +CubEOT_corr_fact = 0.0015956710965959711 + +## model sets +modlist_allscen = ['CanESM5','CNRM-CM6-1','CNRM-ESM2-1','EC-Earth3-Veg','EC-Earth3-Veg-LR','IPSL-CM6A-LR','MIROC-ES2L', + 'UKESM1-0-LL','MRI-ESM2-0','FGOALS-g3','ACCESS-ESM1-5','MIROC6','MPI-ESM1-2-LR','KACE-1-0-G'] #complete model list + +modlist_ssp585 = ['AWI-CM-1-1-MR','BCC-CSM2-MR','CNRM-CM6-1-HR','EC-Earth3','EC-Earth3-CC','HadGEM3-GC31-LL','GISS-E2-1-G','GFDL-CM4','CMCC-CM2-SR5','CMCC-ESM2','HadGEM3-GC31-MM','NESM3','MPI-ESM1-2-HR','INM-CM4-8','INM-CM5-0','ACCESS-CM2'] + +modlist_1cen = ['CanESM5','CNRM-CM6-1','EC-Earth3-Veg','IPSL-CM6A-LR','UKESM1-0-LL','MRI-ESM2-0','FGOALS-g3','ACCESS-ESM1-5','MIROC6','MPI-ESM1-2-LR','AWI-CM-1-1-MR','BCC-CSM2-MR','CNRM-CM6-1-HR','GISS-E2-1-G','GFDL-CM4','CMCC-ESM2','HadGEM3-GC31-MM','NESM3','INM-CM5-0'] + +#scenarios +scenlist= ['historical','ssp126','ssp245','ssp370','ssp585'] + +#region names +reglist3 = ['BI','IP','FR','WEU','MED','SC','EEU'] + + +#impact function +impflist = ["CubEOT","Em2011","Wk2021"] + +## paths +#in +pathcmip6 = '/home/lseverino/MT/cmip6/' #path of the cmip6 data +pathera5 = '/home/lseverino/MT/era5/' +pathcirc = '/home/lseverino/MT/circulation/' +pathin = '/home/lseverino/MT/inputdata/' +#out +#pathcal = '/home/lseverino/MT/scripts/calibration/' +#pathfig = '/home/lseverino/MT/scripts/results/figures' +#pathhaz = "/home/lseverino/MT/scripts/results/hazards/" +#pathimp = "/home/lseverino/MT/scripts/results/impacts/" + +pathcal = './calibration/' +pathfig = './results/figures' +pathhaz = "./results/hazards/" +pathimp = "./results/impacts/" + +#dict for abbreviations of the cmip6 variables names +cmip6vars = {'sfcWindmax':'SWM','sfcWind':'SW','psl':'SLP','tas':'TAS','ua':'UA','ta':'TA','tos':'TOS'} + +#dic for impf shortnames +impf_sht_names = {'Cubic excess-over-threshold':'CubEOT','Scaled sigmoid':'ScSig','Emanuel 2011':'Em2011','Welker 2021':'Wk2021','Schwierz 2010' : 'Sw2010'} + + + diff --git a/2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv b/2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv new file mode 100644 index 0000000..40cc3ba --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv @@ -0,0 +1,251 @@ +country_name,iso3,region_id,included,total_value [USD],data_source,evaluation,produced_capital [USD],GDP [USD],GDP_year,GDP-to-NFW_ratio,NFW [USD],GPW_highest_admin_level,GPW_Number_of_regions +Aruba,ABW,533,1,3304837609,nfw,0,,2649720670,2014,1.24724,3304837609,2,55 +Afghanistan,AFG,4,1,25549568117,nfw,0,,20484873230,2014,1.24724,25549553288,2,401 +Angola,AGO,24,1,1.36E+11,nfw,0,,1.46E+11,2014,0.93663,1.36E+11,2,161 +Anguilla,AIA,660,1,218765896,nfw,0,,175400000,2009,1.24724,218765896,0,1 +Albania,ALB,8,1,43889459246,pc,0,43889459246,13228247844,2014,1.609,21284250781,3,373 +Andorra,AND,20,1,4179172427,nfw,0,,3350736367,2014,1.24724,4179172427,1,7 +United Arab Emirates,ARE,784,1,9.21E+11,pc,0,9.21E+11,4.03E+11,2014,1.26455,5.10E+11,1,7 +Argentina,ARG,32,1,1.31E+12,pc,0,1.31E+12,5.26E+11,2014,0.83124,4.37E+11,2,525 +Armenia,ARM,51,1,37457691554,pc,0,37457691554,11609512940,2014,1.0096,11720964264,3,935 +American Samoa,ASM,16,1,801975320,nfw,0,,643000000,2014,1.24724,801975320,3,77 +Antigua and Barbuda,ATG,28,1,1095937306,nfw,0,,1275576778,2014,0.85917,1095937300,1,9 +Australia,AUS,36,1,5.89E+12,pc,1,5.89E+12,1.47E+12,2014,4.11734,6.04E+12,5,54765 +Austria,AUT,40,1,1.77E+12,pc,0,1.77E+12,4.42E+11,2014,2.46175,1.09E+12,4,2357 +Azerbaijan,AZE,31,1,1.54E+11,pc,0,1.54E+11,75244294275,2014,1.54334,1.16E+11,1,84 +Burundi,BDI,108,1,4239830070,pc,0,4239830070,2705783272,2014,0.2762,747337339.7,2,129 +Belgium,BEL,56,1,1.92E+12,pc,0,1.92E+12,5.31E+11,2014,2.53942,1.35E+12,4,589 +Benin,BEN,204,1,11138792866,nfw,0,,9707432016,2014,1.14745,11138792866,2,77 +Burkina Faso,BFA,854,1,24879607571,pc,0,24879607571,12377391463,2014,0.46165,5714022769,3,351 +Bangladesh,BGD,50,1,4.41E+11,pc,0,4.41E+11,1.73E+11,2014,0.77278,1.34E+11,3,544 +Bulgaria,BGR,100,1,1.35E+11,pc,0,1.35E+11,56814543481,2014,0.98785,56124246778,2,264 +Bahrain,BHR,48,1,84338679900,pc,0,84338679900,33387712766,2014,0.70406,23506953050,1,5 +Bahamas,BHS,44,1,8409399031,nfw,0,,10957300000,2014,0.76747,8409399031,1,19 +Bosnia and Herzegovina,BIH,70,1,42615611854,pc,0,42615611854,18558343508,2014,1.79752,33358993623,3,142 +Saint Barthélemy,BLM,652,1,318046200,nfw,0,,255000000,2016,1.24724,318046200,0,1 +Belarus,BLR,112,1,2.55E+11,pc,0,2.55E+11,78813839984,2014,0.15392,12131026250,2,129 +Belize,BLZ,84,1,3489440304,pc,0,3489440304,1692955750,2014,1.00064,1694039242,1,6 +Bermuda,BMU,60,1,6951754060,nfw,0,,5573710000,2013,1.24724,6951754060,1,9 +"Bolivia, Plurinational State of",BOL,68,1,56441783703,pc,0,56441783703,32996188133,2014,0.91936,30335375522,3,339 +Brazil,BRA,76,1,5.33E+12,pc,1,5.33E+12,2.46E+12,2014,1.06972,2.63E+12,5,316461 +Barbados,BRB,52,1,3229439513,nfw,0,,4608350000,2014,0.70078,3229439513,1,11 +Brunei Darussalam,BRN,96,1,15022945724,nfw,0,,17098342541,2014,0.87862,15022945724,2,39 +Bhutan,BTN,64,1,2443117529,nfw,0,,1976938530,2014,1.24724,2465716812,2,205 +Botswana,BWA,72,1,35640820344,pc,0,35640820344,16250750259,2014,0.34855,5664199003,2,29 +Central African Republic,CAF,140,1,9424970208,pc,0,9424970208,1904794555,2014,0.46128,878643632.4,3,174 +Canada,CAN,124,1,6.59E+12,pc,1,6.59E+12,1.80E+12,2014,2.82483,5.09E+12,5,493185 +Switzerland,CHE,756,1,2.35E+12,pc,1,2.35E+12,7.09E+11,2014,2.95948,2.10E+12,3,2538 +Chile,CHL,152,1,6.46E+11,pc,0,6.46E+11,2.61E+11,2014,1.42105,3.70E+11,3,345 +China,CHN,156,1,3.14E+13,pc,1,3.14E+13,1.04E+13,2014,1.39699,1.46E+13,4,43878 +Cote d'Ivoire,CIV,384,1,78452655642,pc,0,78452655642,35316494574,2014,0.50925,17984924862,4,518 +Cameroon,CMR,120,1,69205476434,pc,0,69205476434,34942948737,2014,0.40275,14073272604,2,58 +"Congo, Democratic Republic of the",COD,180,1,1.43E+11,pc,0,1.43E+11,35909040266,2014,0.17671,6345486505,3,188 +Congo,COG,178,1,55951751828,pc,0,55951751828,14177437982,2014,0.49666,7041366348,1,12 +Cook Islands,COK,184,1,304451284,nfw,0,,244100000,2010,1.24724,304451284,3,26 +Colombia,COL,170,1,1.07E+12,pc,0,1.07E+12,3.81E+11,2014,1.98725,7.57E+11,2,1120 +Comoros,COM,174,1,1605454637,pc,0,1605454637,1148058015,2014,1.27805,1467275547,1,3 +Cabo Verde,CPV,132,1,2319739822,nfw,0,,1859898513,2014,1.24724,2319739822,2,23 +Costa Rica,CRI,188,1,94696524123,pc,0,94696524123,50577769785,2014,1.38671,70136699139,3,473 +Cuba,CUB,192,1,1.01E+11,nfw,0,,80656000000,2014,1.24724,1.01E+11,2,168 +Curacao,CUW,531,1,3901366720,nfw,0,,3158406034,2014,1.24724,3939290341,1,66 +Cayman Islands,CYM,136,1,4000083197,nfw,0,,3570575151,2017,1.24724,4453364152,1,6 +Cyprus,CYP,196,1,69313974748,nfw,0,,23364707443,2014,2.96661,69313974748,2,418 +Czechia,CZE,203,1,2.91E+11,nfw,0,,2.08E+11,2014,1.40102,2.91E+11,3,6251 +Germany,DEU,276,1,1.55E+13,pc,1,1.55E+13,3.90E+12,2014,2.44278,9.52E+12,3,11556 +Djibouti,DJI,262,1,4264903202,pc,0,4264903202,1455035089,2014,0.63834,928807098.6,1,6 +Dominica,DMA,212,1,895118609.4,nfw,0,,523540777.8,2014,1.70974,895118609.4,1,10 +Denmark,DNK,208,1,1.24E+12,pc,0,1.24E+12,3.53E+11,2014,2.08237,7.35E+11,3,2138 +Dominican Republic,DOM,214,1,1.83E+11,pc,0,1.83E+11,66065015410,2014,1.24724,82398929820,4,386 +Algeria,DZA,12,1,2.03E+11,nfw,0,,2.14E+11,2014,0.95098,2.03E+11,2,1540 +Ecuador,ECU,218,1,2.63E+11,pc,0,2.63E+11,1.02E+11,2014,1.31208,1.33E+11,3,1024 +Egypt,EGY,818,1,4.05E+11,pc,0,4.05E+11,3.06E+11,2014,0.83176,2.54E+11,2,379 +Eritrea,ERI,232,1,2548961382,nfw,0,,2607739837,2011,0.97746,2548961381,1,6 +Spain,ESP,724,1,5.35E+12,pc,0,5.35E+12,1.38E+12,2014,2.50965,3.46E+12,3,8020 +Estonia,EST,233,1,97155252473,pc,0,97155252473,26615854605,2014,1.1082,29495690074,3,4689 +Ethiopia,ETH,231,1,1.05E+11,pc,0,1.05E+11,55612228234,2014,0.06025,3350636751,3,734 +Finland,FIN,246,1,1.10E+12,pc,0,1.10E+12,2.73E+11,2014,2.02825,5.53E+11,2,320 +Fiji,FJI,242,1,2358097658,nfw,0,,4856963252,2014,0.52596,2554568392,3,1602 +Falkland Islands (Malvinas),FLK,238,1,351472232,nfw,0,,281800000,2012,1.24724,351472232,1,6 +France,FRA,250,1,1.20E+13,pc,1,1.20E+13,2.85E+12,2014,3.33382,9.51E+12,5,36610 +Faroe Islands,FRO,234,1,3505427743,nfw,0,,2850743875,2014,1.24724,3555561791,3,117 +"Micronesia, Federated States of",FSM,583,1,396621571.7,nfw,0,,317999400,2014,1.24724,396621571.7,3,394 +Gabon,GAB,266,1,47223321959,pc,0,47223321959,18179752010,2014,0.7318,13303942521,2,48 +United Kingdom of Great Britain and Northern Ireland,GBR,826,1,1.01E+13,pc,0,1.01E+13,3.03E+12,2014,2.97009,9.01E+12,6,232296 +Georgia,GEO,268,1,61359129245,pc,0,61359129245,16509316418,2014,3.32308,54861779204,2,76 +Guernsey,GGY,831,1,4321686600,nfw,0,,3465000000,2015,1.24724,4321686600,1,15 +Ghana,GHA,288,1,81395579381,pc,0,81395579381,53601126665,2014,0.15823,8481306272,2,170 +Gibraltar,GIB,292,1,2549358560,nfw,0,,2044000000,2014,1.24724,2549358560,0,1 +Guinea,GIN,324,1,12942463634,pc,0,12942463634,8778473615,2014,0.32743,2874335616,3,340 +Gambia,GMB,270,1,2402179512,pc,0,2402179512,1259063631,2014,0.48168,606465769.6,2,40 +Guinea-Bissau,GNB,624,1,138115467,nfw,0,,1053512334,2014,0.1311,138115467,2,39 +Equatorial Guinea,GNQ,226,1,5148942289,nfw,0,,21736500713,2014,0.23688,5148942289,2,7 +Greece,GRC,300,1,1.18E+12,pc,0,1.18E+12,2.37E+11,2014,4.3358,1.03E+12,5,6130 +Grenada,GRD,308,1,811569946.6,nfw,0,,911497407.4,2014,0.89037,811569946.6,1,7 +Greenland,GRL,304,1,3539339338,nfw,0,,2842048998,2014,1.24724,3544717192,3,100 +Guatemala,GTM,320,1,1.23E+11,pc,0,1.23E+11,58722323918,2014,1.24724,73240831284,2,354 +Guam,GUM,316,1,6907215120,nfw,0,,5538000000,2014,1.24724,6907215120,3,218 +Guyana,GUY,328,1,7610038714,pc,0,7610038714,3077643314,2014,0.63574,1956580960,2,117 +Hong Kong,HKG,344,1,6.04E+11,nfw,0,,2.91E+11,2014,2.07326,6.04E+11,3,412 +Honduras,HND,340,1,54108694276,pc,0,54108694276,19618567447,2014,1.24724,24469062063,3,3050 +Croatia,HRV,191,1,2.01E+11,pc,0,2.01E+11,57682343708,2014,0.99653,57482185975,2,556 +Haiti,HTI,332,1,51057628915,pc,0,51057628915,8776350790,2014,2.11702,18579710149,4,560 +Hungary,HUN,348,1,5.22E+11,pc,0,5.22E+11,1.40E+11,2014,1.25523,1.76E+11,4,3177 +Indonesia,IDN,360,1,3.14E+12,pc,1,3.14E+12,8.91E+11,2014,1.77683,1.58E+12,3,498 +Isle of Man,IMN,833,1,9264848448,nfw,0,,7428280402,2014,1.24724,9264848448,1,24 +India,IND,356,1,5.39E+12,pc,1,5.39E+12,2.04E+12,2014,1.88086,3.84E+12,3,5967 +Ireland,IRL,372,1,7.05E+11,pc,0,7.05E+11,2.58E+11,2014,1.84336,4.76E+11,4,18488 +"Iran, Islamic Republic of",IRN,364,1,1.74E+11,nfw,0,,4.34E+11,2014,0.40076,1.74E+11,2,397 +Iraq,IRQ,368,1,4.13E+11,pc,0,4.13E+11,2.35E+11,2014,1.24724,2.93E+11,2,99 +Iceland,ISL,352,1,71545200032,pc,0,71545200032,17758089312,2014,4.2785,75977985123,2,74 +Israel,ISR,376,1,3.08E+11,nfw,0,,3.10E+11,2014,0.9984,3.10E+11,3,51 +Italy,ITA,380,1,9.22E+12,pc,0,9.22E+12,2.15E+12,2014,3.56756,7.68E+12,4,399014 +Jamaica,JAM,388,1,68040510569,pc,0,68040510569,13852192273,2014,1.18995,16483416195,1,14 +Jersey,JEY,832,1,6335979200,nfw,0,,5080000000,2015,1.24724,6335979200,1,12 +Jordan,JOR,400,1,1.05E+11,pc,0,1.05E+11,36104372355,2014,1.65906,59899320000,3,89 +Japan,JPN,392,1,1.84E+13,pc,1,1.84E+13,4.85E+12,2014,2.25484,1.09E+13,2,1751 +Kazakhstan,KAZ,398,1,5.60E+11,pc,0,5.60E+11,2.21E+11,2014,0.35317,78197337853,2,172 +Kenya,KEN,404,1,1.21E+11,pc,0,1.21E+11,61448046802,2014,0.25139,15447424485,5,7150 +Kyrgyzstan,KGZ,417,1,28983387510,pc,0,28983387510,7468096567,2014,2.06533,15424083882,2,54 +Cambodia,KHM,116,1,27339161652,pc,0,27339161652,16702610842,2014,1.18653,19818148843,3,1621 +Kiribati,KIR,296,1,224133322.6,nfw,0,,179703443.3,2014,1.24724,224133322.6,3,266 +Saint Kitts and Nevis,KNA,659,1,1143541173,nfw,0,,916857359.5,2014,1.24724,1143541173,2,14 +"Korea, Republic of",KOR,410,1,5.15E+12,pc,0,5.15E+12,1.41E+12,2014,3.35981,4.74E+12,2,251 +Kuwait,KWT,414,1,2.27E+11,pc,0,2.27E+11,1.63E+11,2014,1.75938,2.86E+11,1,6 +Lao People's Democratic Republic,LAO,418,1,28477303520,pc,0,28477303520,13268458232,2014,0.97396,12922947580,3,10022 +Lebanon,LBN,422,1,1.40E+11,pc,0,1.40E+11,48296099502,2014,1.40262,67741075084,3,1643 +Liberia,LBR,430,1,4323187651,pc,0,4323187651,3144000000,2014,1.3986,4397198400,2,136 +Saint Lucia,LCA,662,1,1429965253,nfw,0,,1542406296,2014,0.94289,1454319473,1,13 +Liechtenstein,LIE,438,1,8303089863,nfw,0,,6657170923,2014,1.24724,8303089862,1,11 +Sri Lanka,LKA,144,1,1.90E+11,pc,0,1.90E+11,79356449841,2014,0.53274,42276355088,4,13938 +Lesotho,LSO,426,1,937949512.4,nfw,0,,2614566292,2014,0.35874,937949511.7,2,80 +Lithuania,LTU,440,1,1.50E+11,pc,0,1.50E+11,48516371721,2014,0.78454,38063034270,2,60 +Luxembourg,LUX,442,1,1.61E+11,pc,0,1.61E+11,66103853237,2014,1.45266,96026423443,4,139 +Latvia,LVA,428,1,1.83E+11,pc,0,1.83E+11,31335013752,2014,0.64303,20149353893,2,119 +Macao,MAC,446,1,69032237834,nfw,0,,55347998648,2014,1.24724,69032237834,3,22 +Saint Martin (French part),MAF,663,1,700325260,nfw,0,,561500000,2016,1.24724,700325260,0,1 +Morocco,MAR,504,1,3.72E+11,pc,0,3.72E+11,1.10E+11,2014,1.73613,1.91E+11,3,1657 +Monaco,MCO,492,1,8805808959,nfw,0,,7060236168,2014,1.24724,8805808958,2,10 +"Moldova, Republic of",MDA,498,1,40763178666,pc,0,40763178666,9510219299,2014,0.81902,7789059811,1,42 +Madagascar,MDG,450,1,17469942992,pc,0,17469942992,10673516673,2014,0.27116,2894230781,4,1242 +Maldives,MDV,462,1,5452881517,pc,0,5452881517,3697351597,2014,0.33654,1244306706,2,252 +Mexico,MEX,484,1,4.04E+12,pc,1,4.04E+12,1.31E+12,2014,1.46049,1.92E+12,3,73613 +Marshall Islands,MHL,584,1,228396210.2,nfw,0,,183121300,2014,1.24724,228396210.2,1,34 +"Macedonia, the former Yugoslav Republic of",MKD,807,1,31751262345,pc,0,31751262345,11362272838,2014,1.34401,15271008317,2,78 +Mali,MLI,466,1,27538324151,pc,0,27538324151,14345828992,2014,0.22043,3162251085,4,765 +Malta,MLT,470,1,25901526119,pc,0,25901526119,11281702720,2014,1.77699,20047472916,2,68 +Myanmar,MMR,104,1,57323017470,nfw,0,,65446199788,2014,0.87588,57323017470,3,413 +Montenegro,MNE,499,1,7809751547,nfw,0,,4587928884,2014,1.70224,7809756064,1,21 +Mongolia,MNG,496,1,38689247940,pc,0,38689247940,12226514722,2014,2.15345,26329188128,2,338 +Northern Mariana Islands,MNP,580,1,1053917800,nfw,0,,845000000,2014,1.24724,1053917800,2,134 +Mozambique,MOZ,508,1,26594531538,pc,0,26594531538,16961117243,2014,0.20003,3392732282,3,413 +Mauritania,MRT,478,1,15658509866,pc,0,15658509866,5372783880,2014,0.41337,2220947672,3,218 +Montserrat,MSR,500,1,54629112,nfw,0,,43800000,2006,1.24724,54629112,2,23 +Mauritius,MUS,480,1,32715983408,pc,0,32715983408,12803445934,2014,1.94298,24876839380,3,170 +Malawi,MWI,454,1,12643334907,pc,0,12643334907,6047813437,2014,0.06249,377927861.7,3,12641 +Malaysia,MYS,458,1,7.23E+11,pc,0,7.23E+11,3.38E+11,2014,1.20327,4.07E+11,3,932 +Namibia,NAM,516,1,24601704771,pc,0,24601704771,12786078008,2014,0.88332,11294198426,3,5475 +New Caledonia,NCL,540,1,3345530553,nfw,0,,2682347064,2000,1.24724,3345530553,3,34 +Niger,NER,562,1,36522160287,pc,0,36522160287,8229731384,2014,0.45515,3745762239,2,66 +Norfolk Island,NFK,574,1,41346006,nfw,0,,33150000,2016,1.24724,41346006,1,2 +Nigeria,NGA,566,1,5.51E+11,pc,0,5.51E+11,5.68E+11,2014,0.21136,1.20E+11,2,774 +Nicaragua,NIC,558,1,44014586612,pc,0,44014586612,11880438824,2014,0.89594,10644160360,2,153 +Niue,NIU,570,1,12472400,nfw,0,,10000000,2003,1.24724,12472400,1,13 +Netherlands,NLD,528,1,3.19E+12,pc,0,3.19E+12,8.91E+11,2014,1.30987,1.17E+12,2,418 +Norway,NOR,578,1,1.76E+12,pc,0,1.76E+12,4.99E+11,2014,3.04546,1.52E+12,2,430 +Nepal,NPL,524,1,53023440924,pc,0,53023440924,20002968838,2014,1.17025,23408474283,4,3990 +Nauru,NRU,520,1,145952501.2,nfw,0,,117013202.3,2014,1.24724,145943546.5,1,14 +New Zealand,NZL,554,1,7.40E+11,nfw,0,,2.01E+11,2014,3.68045,7.39E+11,3,46085 +Oman,OMN,512,1,1.68E+11,pc,0,1.68E+11,81076723017,2014,1.05352,85415949233,2,61 +Pakistan,PAK,586,1,4.52E+11,pc,0,4.52E+11,2.44E+11,2014,1.32012,3.23E+11,3,396 +Panama,PAN,591,1,94748791203,pc,0,94748791203,49921500000,2014,0.69219,34555163085,3,625 +Peru,PER,604,1,4.88E+11,pc,0,4.88E+11,2.01E+11,2014,2.46386,4.95E+11,3,1832 +Philippines,PHL,608,1,6.28E+11,pc,0,6.28E+11,2.85E+11,2014,1.29374,3.68E+11,3,41954 +Palau,PLW,585,1,306415811.7,nfw,0,,245675100,2014,1.24724,306415811.7,1,16 +Papua New Guinea,PNG,598,1,27844446441,pc,0,27844446441,23210611847,2014,0.87298,20262399930,2,87 +Poland,POL,616,1,1.23E+12,pc,0,1.23E+12,5.45E+11,2014,1.02977,5.62E+11,4,2500 +Puerto Rico,PRI,630,1,1.28E+11,nfw,0,,1.02E+11,2014,1.24724,1.28E+11,4,76112 +"Korea, Democratic People's Republic of",PRK,408,1,49889600000,nfw,0,,40000000000,2016,1.24724,49889600000,2,181 +Portugal,PRT,620,1,9.85E+11,pc,0,9.85E+11,2.30E+11,2014,2.19547,5.04E+11,6,265953 +Paraguay,PRY,600,1,62714262791,pc,0,62714262791,40276532541,2014,1.42619,57441987944,2,250 +French Polynesia,PYF,258,1,4299913703,nfw,0,,3447543138,2000,1.24724,4299913703,3,116 +Qatar,QAT,634,1,3.82E+11,pc,0,3.82E+11,2.06E+11,2014,0.71557,1.48E+11,2,90 +Romania,ROU,642,1,6.61E+11,pc,0,6.61E+11,2.00E+11,2014,0.78863,1.57E+11,4,3159 +Russian Federation,RUS,643,1,5.66E+12,pc,0,5.66E+12,2.06E+12,2014,1.26726,2.61E+12,3,2532 +Rwanda,RWA,646,1,14064159002,pc,0,14064159002,8016591928,2014,0.22223,1781527224,3,439 +Saudi Arabia,SAU,682,1,1.65E+12,pc,0,1.65E+12,7.56E+11,2014,0.75036,5.68E+11,2,118 +Sudan,SDN,729,1,15162718675,nfw,0,,82151588419,2014,0.18457,15162718674,2,130 +Senegal,SEN,686,1,44208085422,pc,0,44208085422,19770840286,2014,0.65464,12942782885,2,45 +Singapore,SGP,702,1,8.21E+11,pc,0,8.21E+11,3.15E+11,2014,2.10049,6.61E+11,2,55 +"Saint Helena, Ascension and Tristan da Cunha",SHN,654,1,38789164,nfw,0,,31100000,2010,1.24724,38789164,2,13 +Solomon Islands,SLB,90,1,846826741.3,pc,0,846826741.3,1172268296,2014,2.02993,2379622582,4,1344 +Sierra Leone,SLE,694,1,5938127723,pc,0,5938127723,5015157816,2014,0.17941,899769463.7,3,160 +El Salvador,SLV,222,1,50320469552,pc,0,50320469552,22593470000,2014,1.86946,42237588426,2,262 +San Marino,SMR,674,1,2230701234,nfw,0,,1788510017,2014,1.24724,2230701234,1,9 +Somalia,SOM,706,1,8184390566,nfw,0,,3340389106,2014,1.24724,4166266908,3,74 +Saint Pierre and Miquelon,SPM,666,1,268530772,nfw,0,,215300000,2016,1.24724,268530772,1,2 +Serbia,SRB,688,1,47169393528,nfw,0,,47062205547,2014,1.06692,50211608342,5,4721 +Sao Tome and Principe,STP,678,1,122370370.2,nfw,0,,348941656.4,2014,0.35069,122370349.5,2,7 +Suriname,SUR,740,1,20141838555,pc,0,20141838555,5240606061,2014,0.73656,3860020800,2,62 +Slovakia,SVK,703,1,3.07E+11,pc,0,3.07E+11,1.01E+11,2014,0.88173,89009088958,3,2927 +Slovenia,SVN,705,1,2.02E+11,pc,0,2.02E+11,49889553216,2014,1.50762,75214488220,3,6030 +Sweden,SWE,752,1,2.23E+12,pc,0,2.23E+12,5.74E+11,2014,1.59733,9.18E+11,3,1460 +Eswatini,SWZ,748,1,18308522517,pc,0,18308522517,4377293816,2014,0.15636,684433661.1,2,55 +Sint Maarten (Dutch part),SXM,534,1,456240392,nfw,0,,365800000,2014,1.24724,456240392,1,8 +Seychelles,SYC,690,1,2229880873,nfw,0,,1343007845,2014,1.66036,2229876506,2,26 +Turks and Caicos Islands,TCA,796,1,788255680,nfw,0,,823968140,2014,1.24724,1027686023,2,34 +Chad,TCD,148,1,17736312374,pc,0,17736312374,13922223234,2014,0.24515,3413033026,2,62 +Togo,TGO,768,1,11266344648,pc,0,11266344648,4568900620,2014,1.34945,6165502942,2,40 +Thailand,THA,764,1,1.11E+12,pc,0,1.11E+12,4.07E+11,2014,0.7957,3.24E+11,2,927 +Tajikistan,TJK,762,1,2.03E+11,pc,0,2.03E+11,9112544556,2014,1.03822,9460826009,2,74 +Turkmenistan,TKM,795,1,1.70E+11,pc,0,1.70E+11,43524210526,2014,0.70678,30762041516,1,6 +Timor-Leste,TLS,626,1,5045584696,nfw,0,,4041636957,2014,1.24724,5040891278,3,442 +Tonga,TON,776,1,703124033,nfw,0,,443911052.3,2014,1.58393,703124033,1,5 +Trinidad and Tobago,TTO,780,1,9878870004,nfw,0,,27477965424,2014,0.36319,9979722262,1,21 +Tunisia,TUN,788,1,1.33E+11,pc,0,1.33E+11,47632326088,2014,2.06298,98264536074,2,264 +Turkey,TUR,792,1,1.69E+12,pc,1,1.69E+12,9.34E+11,2014,1.01903,9.52E+11,2,957 +Tuvalu,TUV,798,1,46510312.4,nfw,0,,37291841.43,2014,1.24724,46511876.3,3,70 +"Taiwan, Province of China",TWN,158,1,2.76E+12,nfw,0,,1.13E+12,2016,2.4467,2.76E+12,2,369 +"Tanzania, United Republic of",TZA,834,1,1.34E+11,pc,0,1.34E+11,49964788814,2014,0.19845,9915512340,3,3643 +Uganda,UGA,800,1,57034050530,pc,0,57034050530,27291879819,2014,0.21253,5800343218,3,1377 +Ukraine,UKR,804,1,9.19E+11,pc,0,9.19E+11,1.34E+11,2014,0.52861,70571238287,2,636 +Uruguay,URY,858,1,1.77E+11,pc,0,1.77E+11,57236013086,2014,1.38601,79329686497,3,4318 +United States of America,USA,840,1,5.56E+13,pc,1,5.56E+13,1.75E+13,2014,1.49579,2.62E+13,5,10535212 +Uzbekistan,UZB,860,1,78659781340,nfw,0,,76658542757,2014,1.24724,95611600869,1,14 +Saint Vincent and the Grenadines,VCT,670,1,849308207.4,nfw,0,,727714407.1,2014,1.16709,849308207.4,1,13 +"Venezuela, Bolivarian Republic of",VEN,862,1,1.74E+12,pc,0,1.74E+12,4.82E+11,2014,0.29407,1.42E+11,2,337 +"Virgin Islands, British",VGB,92,1,623620000,nfw,0,,500000000,2010,1.24724,623620000,1,5 +"Virgin Islands, U.S.",VIR,850,1,4517503280,nfw,0,,3622000000,2014,1.24724,4517503280,2,20 +Viet Nam,VNM,704,1,4.05E+11,pc,0,4.05E+11,1.86E+11,2014,1.23241,2.29E+11,3,688 +Vanuatu,VUT,548,1,829737578.1,nfw,0,,814954307,2014,1.01814,829737578.1,3,621 +Wallis and Futuna,WLF,876,1,74834400,nfw,0,,60000000,2016,1.24724,74834400,2,5 +Samoa,WSM,882,1,2130041480,nfw,0,,805162576.4,2014,2.64548,2130041493,2,43 +Yemen,YEM,887,1,76645017122,pc,0,76645017122,43228585321,2014,1.18584,51262185617,2,333 +South Africa,ZAF,710,1,8.41E+11,pc,1,8.41E+11,3.51E+11,2014,0.94227,3.30E+11,6,86983 +Zambia,ZMB,894,1,90509125812,pc,0,90509125812,27150630607,2014,0.10663,2895071742,3,150 +Zimbabwe,ZWE,716,1,33251251444,pc,0,33251251444,19495519600,2014,0.20161,3930491707,2,91 +Aland Islands,ALA,248,0,,none,0,,,,1.24724,,1,16 +Antarctica,ATA,10,0,,none,0,,810000000,2013,,,none,0 +French Southern Territories,ATF,260,0,,nfw,0,,16000000,2016,,,none,0 +"Bonaire, Sint Eustatius and Saba",BES,535,0,,none,0,,,,,,1,3 +Bouvet Island,BVT,74,0,,none,0,,,,,,none,0 +Cocos (Keeling) Islands,CCK,166,0,,none,0,,,,,,none,0 +Christmas Island,CXR,162,0,,none,0,,,,,,none,0 +Western Sahara,ESH,732,0,,none,0,,,,,,3,31 +Guadeloupe,GLP,312,0,,none,0,,,,,,2,32 +French Guiana,GUF,254,0,,none,0,,,,,,2,22 +Heard Island and McDonald Islands,HMD,334,0,,none,0,,,,,,none,0 +British Indian Ocean Territory,IOT,86,0,,nfw,0,,160000000,2013,,,none,0 +Libya,LBY,434,0,,none,0,,,2014,,,1,22 +Martinique,MTQ,474,0,,none,0,,,,,,2,34 +Mayotte,MYT,175,0,,none,0,,,,,,1,17 +Pitcairn,PCN,612,0,,none,0,,,,,,0,1 +"Palestine, State of",PSE,275,0,,none,0,39943328864,12715600000,2014,,,2,6 +Reunion,REU,638,0,,none,0,,,,,,2,24 +South Georgia and the South Sandwich Islands,SGS,239,0,,nfw,0,,300000,2016,,,none,0 +Svalbard and Jan Mayen,SJM,744,0,,none,0,,,,,,0,1 +South Sudan,SSD,728,0,,none,0,,13282033898,2014,,,2,78 +Syrian Arab Republic,SYR,760,0,,none,0,,40405006007,2007,,,3,267 +Tokelau,TKL,772,0,,none,0,,,,,,1,3 +United States Minor Outlying Islands,UMI,581,0,,none,0,,,,,,none,0 +Holy See,VAT,336,0,,none,0,,,,,,0,1 +Kosovo,XKX,0,0,,none,0,,7386891336,2014,,,1,37 \ No newline at end of file diff --git a/2024_03_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx b/2024_03_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..f8c0e22ed8be8f395b65ab1795d32327cbb622ad GIT binary patch literal 39710 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

PH^dlVWDa__S5pdP$ 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 W0B=@cp~Jwy1%wU2^w=>2!~+1FH_%uB literal 0 HcmV?d00001 diff --git a/2024_03_winterstorms_projections_Europe/functions_projUncWS.py b/2024_03_winterstorms_projections_Europe/functions_projUncWS.py new file mode 100644 index 0000000..6769512 --- /dev/null +++ b/2024_03_winterstorms_projections_Europe/functions_projUncWS.py @@ -0,0 +1,180 @@ +#import matplotlib.pyplot as plt +import xarray as xr +import numpy as np +import copy as cp +import pandas as pd +from scipy import sparse +import cartopy.crs as ccrs +##from timeit import default_timer as timer +#from os import# mkdir, remove, rmdir + +#from climada.engine import Impact, ImpactCalc +#from climada.entity import ImpactFunc,ImpactFuncSet +from climada.hazard import Hazard,Centroids + +## Define functions +def set_centroids(da,stack=True,haztype='WS',timeres="day",plot=False, printout=False): + '''Function which takes a xarray.DataArray as an input and returns a climada.hazard object, with centroids corresponding to + latitude and longitude of the DataArray.''' + + period = da.name + lat = da.lat + lon = da.lon + + # number of points + n_lat = len(lat) + n_lon = len(lon) + + #stack first members and time resolution, and then latitutde and longitude to obtain the event matrix + if stack: + events = da.stack(events=("member",timeres)) #need to be of size n_ev * ncent = nmem*180 * ncent + nmem = len(da["member"]) + else: + events = da.rename({timeres:"events"}) + nmem = 1 + evmat = events.stack(cent=("lat","lon")) + #print('Evmat: '+str(evmat.shape)) + n_ev = len(evmat["events"]) + + #intiate Hazard object, using Centroids.from_pix_bounds + haz = Hazard(haztype) + + #initiate lat and lon array for Centroids.from_lat_lon + lat_ar = lat.values.repeat(len(lon)) + lon_ar = lon.values.reshape(1,n_lon).repeat(n_lat,axis=0).reshape(n_lon*n_lat) + + haz.centroids = Centroids.from_lat_lon(lat_ar,lon_ar) + haz.intensity = sparse.csr_matrix(evmat) + haz.units = 'm/s' + ev_id = np.arange(n_ev, dtype=int) + haz.event_id = ev_id + ev_names = events.coords["events"].to_numpy().tolist() + #ev_names = pd.to_datetime(evmat.events,format='YYYY-MM-DD') + haz.event_name = ev_names + haz.orig = np.zeros(n_ev, bool) + haz.frequency = np.ones(n_ev)/(nmem*30) + haz.fraction = haz.intensity.copy() + haz.fraction.data.fill(1) + haz.centroids.set_meta_to_lat_lon() + haz.centroids.set_geometry_points() + haz.check() + if printout: + print('Lat resolution original: '+str(-latreso)+' ,rounded: '+str(-latres)+ + '\nLon resolution original: '+str(lonreso)+' ,rounded: '+str(lonres)) + print('lat: '+str(n_lat)+', lon: '+str(n_lon)) + print('Check centroids borders:', haz.centroids.total_bounds) + if plot: + haz.centroids.plot() + + return haz + +def sel_reg_exp(reg_ids,exp): + """function that takes a list of country ISO codes reg_ids and a CLIMADA LitPop exposure + object exp as inputs and returns a copy of the exposure object with only the regions selected in reg_ids""" + sel_exp = cp.deepcopy(exp) + sel_exp.gdf = sel_exp.gdf.where(sel_exp.gdf['region_id'].isin(reg_ids)).dropna() + return sel_exp + +def get_lat_lon_res(ds): + '''Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. ''' + lat = ds.coords['lat'] + lon = ds.coords['lon'] + difflat = lat - lat.shift(lat=1) + latres = difflat.mean().to_numpy() + difflon = lon - lon.shift(lon=1) + lonres = difflon.mean().to_numpy() + return latres, lonres + +def make_fn(addlist,basename="",sep="_",filetype=''): + """Function to facilitate the creation of file names that takes a list of + strings addlist, a string basename, a string sep and a string filetype + as input and returns the string consisting of the keywords from addlist separated + by the sep separator and concatenated with the string basename and the string filetype""" + return sep.join(addlist)+sep+basename+filetype + +#each impact function gets a preprocessing function to prepare the hazard data +def mask_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000): + '''Function taking a dateset as an input, and returning it with the values below the quantile q at each grid cell + masked. The mask is computed for each gridcell for the past period. Fields for which less than cutarea is above the + quantile are dropped''' + + Upast = ds[pastname] + Ufut = ds[futname] + if stack: + Upast = Upast.stack(real=("member",timeres)) + Ufut = Ufut.stack(real=("member",timeres)) + dim="real" + else: + dim = timeres + + Upast_qt = Upast.quantile(q,dim=dim) + U_mask_past = Upast.where(Upast>Upast_qt) + U_mask_fut = Ufut.where(Ufut>Upast_qt) + + #mask values below threshold + if mask_abs: + U_mask_past = U_mask_past.where(U_mask_past>=mask_abs) + U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs) + + latres, lonres = get_lat_lon_res(ds) + gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km + threshold = round(cutarea/gcarea) + + U_mask_past = U_mask_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN + U_mask_fut = U_mask_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN + + #unstack and assemble + U_mask_past = U_mask_past.unstack().fillna(0) + U_mask_fut = U_mask_fut.unstack().fillna(0) + if futname != pastname: + U_mask_fut.name = futname + U_mask = xr.combine_by_coords([U_mask_past, U_mask_fut]).fillna(0) + else: + U_mask = U_mask_past + + return U_mask + +def scale_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000): + '''Same as mask_qt but scaling by the q quantile.''' + Upast = ds[pastname] + Ufut = ds[futname] + + if stack: + Upast = Upast.stack(real=("member",timeres)) + Ufut = Ufut.stack(real=("member",timeres)) + dim = "real" + else: + dim = timeres + + Upast_qt = Upast.quantile(q,dim=dim) + U_mask_past = Upast.where(Upast>Upast_qt) + U_mask_fut = Ufut.where(Ufut>Upast_qt) + #mask values below threshold + if mask_abs: + U_mask_past = U_mask_past.where(U_mask_past>=mask_abs) + U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs) + + U_scaled_past = (U_mask_past-Upast_qt)/Upast_qt + U_scaled_fut = (U_mask_fut-Upast_qt)/Upast_qt + + latres, lonres = get_lat_lon_res(ds) + gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km + threshold = round(cutarea/gcarea) + + U_scaled_past = U_scaled_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN + U_scaled_fut = U_scaled_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN + + #unstack and assemble + U_scaled_past = U_scaled_past.unstack().fillna(0) + U_scaled_fut = U_scaled_fut.unstack().fillna(0) + if futname != pastname: + U_scaled_fut.name = futname + U_scaled = xr.combine_by_coords([U_scaled_past, U_scaled_fut]).fillna(0) + else: + U_scaled = U_scaled_past + return U_scaled + +#put processing funcs in a dict +pp_func_dic ={} +pp_func_dic['Sw2010'] = mask_qt +pp_func_dic['CubEOT'] = scale_qt From 87ac8ca7f5bb3bfb445e97537d3a540599eafcc2 Mon Sep 17 00:00:00 2001 From: luseverin <91593121+luseverin@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:37:16 +0200 Subject: [PATCH 2/5] Fix typo name README.md --- 2024_03_winterstorms_projections_Europe/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2024_03_winterstorms_projections_Europe/README.md b/2024_03_winterstorms_projections_Europe/README.md index e62f498..9e4960e 100644 --- a/2024_03_winterstorms_projections_Europe/README.md +++ b/2024_03_winterstorms_projections_Europe/README.md @@ -2,7 +2,7 @@ These scripts reproduce the main results of the paper: Projections and uncertainties of winter windstorm damage in Europe in a changing climate -Luca G. Severino (1), Chahan M. Kropf (2,3) Hilla Afargan-Gerstman (1), Christopher Fairles (2), Andries Jan de Vries (4), Daniela I.V. Domeisen (4,1), and David N. Bresch (2,3) +Luca G. Severino (1), Chahan M. Kropf (2,3) Hilla Afargan-Gerstman (1), Christopher Fairless (2), Andries Jan de Vries (4), Daniela I.V. Domeisen (4,1), and David N. Bresch (2,3) 1 Institute for Atmospheric and Climate Science, ETH Zürich, Zürich, Switzerland 2 Institute for Environmental Decisions, ETH Zürich, Zürich, Switzerland 3 Federal Office of Meteorology and Climatology MeteoSwiss, Zürich, Switzerland @@ -46,4 +46,4 @@ created 28 March 2024 ----- -www.wcr.ethz.ch \ No newline at end of file +www.wcr.ethz.ch From 97e82d350b48d72167d698e5978987b50e828eb0 Mon Sep 17 00:00:00 2001 From: luseverin <91593121+luseverin@users.noreply.github.com> Date: Tue, 2 Apr 2024 16:39:03 +0200 Subject: [PATCH 3/5] Rename folder to respect conventions --- .../1_load_process_data.ipynb | 0 .../2_damage_calc.ipynb | 0 .../3_uncertainty-sensitivity_analyses.ipynb | 0 .../README.md | 0 .../SL_bias_corr.py | 0 .../constants.py | 0 .../data/_metadata_countries_v1_2.csv | 0 .../data/emdat_EU_1960_2022_ETC.xlsx | Bin .../functions_projUncWS.py | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/1_load_process_data.ipynb (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/2_damage_calc.ipynb (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/3_uncertainty-sensitivity_analyses.ipynb (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/README.md (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/SL_bias_corr.py (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/constants.py (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/data/_metadata_countries_v1_2.csv (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/data/emdat_EU_1960_2022_ETC.xlsx (100%) rename {2024_03_winterstorms_projections_Europe => 202403_winterstorms_projections_Europe}/functions_projUncWS.py (100%) diff --git a/2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb b/202403_winterstorms_projections_Europe/1_load_process_data.ipynb similarity index 100% rename from 2024_03_winterstorms_projections_Europe/1_load_process_data.ipynb rename to 202403_winterstorms_projections_Europe/1_load_process_data.ipynb diff --git a/2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb b/202403_winterstorms_projections_Europe/2_damage_calc.ipynb similarity index 100% rename from 2024_03_winterstorms_projections_Europe/2_damage_calc.ipynb rename to 202403_winterstorms_projections_Europe/2_damage_calc.ipynb diff --git a/2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb b/202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb similarity index 100% rename from 2024_03_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb rename to 202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb diff --git a/2024_03_winterstorms_projections_Europe/README.md b/202403_winterstorms_projections_Europe/README.md similarity index 100% rename from 2024_03_winterstorms_projections_Europe/README.md rename to 202403_winterstorms_projections_Europe/README.md diff --git a/2024_03_winterstorms_projections_Europe/SL_bias_corr.py b/202403_winterstorms_projections_Europe/SL_bias_corr.py similarity index 100% rename from 2024_03_winterstorms_projections_Europe/SL_bias_corr.py rename to 202403_winterstorms_projections_Europe/SL_bias_corr.py diff --git a/2024_03_winterstorms_projections_Europe/constants.py b/202403_winterstorms_projections_Europe/constants.py similarity index 100% rename from 2024_03_winterstorms_projections_Europe/constants.py rename to 202403_winterstorms_projections_Europe/constants.py diff --git a/2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv b/202403_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv similarity index 100% rename from 2024_03_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv rename to 202403_winterstorms_projections_Europe/data/_metadata_countries_v1_2.csv diff --git a/2024_03_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx b/202403_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx similarity index 100% rename from 2024_03_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx rename to 202403_winterstorms_projections_Europe/data/emdat_EU_1960_2022_ETC.xlsx diff --git a/2024_03_winterstorms_projections_Europe/functions_projUncWS.py b/202403_winterstorms_projections_Europe/functions_projUncWS.py similarity index 100% rename from 2024_03_winterstorms_projections_Europe/functions_projUncWS.py rename to 202403_winterstorms_projections_Europe/functions_projUncWS.py From 26b149a57ab32cdc5c3ddb6b6d5d6b40e05db367 Mon Sep 17 00:00:00 2001 From: luseverin <91593121+luseverin@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:50:07 +0200 Subject: [PATCH 4/5] Remove warnings from notebooks --- .../1_load_process_data.ipynb | 404 +- .../2_damage_calc.ipynb | 66305 +--------------- .../3_uncertainty-sensitivity_analyses.ipynb | 1033 +- 3 files changed, 498 insertions(+), 67244 deletions(-) diff --git a/202403_winterstorms_projections_Europe/1_load_process_data.ipynb b/202403_winterstorms_projections_Europe/1_load_process_data.ipynb index 8fc7bbf..abeda80 100644 --- a/202403_winterstorms_projections_Europe/1_load_process_data.ipynb +++ b/202403_winterstorms_projections_Europe/1_load_process_data.ipynb @@ -44,178 +44,6 @@ "from timeit import default_timer as timer # try to measure time\n" ] }, - { - "cell_type": "code", - "execution_count": 13, - "id": "5e2c17e2-ae0b-4537-998d-406d01e800c9", - "metadata": { - "execution": { - "iopub.execute_input": "2023-01-08T14:04:52.292987Z", - "iopub.status.busy": "2023-01-08T14:04:52.292498Z", - "iopub.status.idle": "2023-01-08T14:04:52.316144Z", - "shell.execute_reply": "2023-01-08T14:04:52.315579Z", - "shell.execute_reply.started": "2023-01-08T14:04:52.292923Z" - }, - "tags": [] - }, - "outputs": [], - "source": [ - "# define functions\n", - "def read_sfc(filepath, datestart, dateend):\n", - " \"\"\"Read in a time slice of a surface field from datestart to dateend.\n", - " Try using datetime64 and if that doesn't work decode times manually.\n", - " Args:\n", - " filepath (string) = directory where files are located\n", - " datestart (string) = start date for time slice\n", - " dateend (string) = end date for time slice\n", - " \"\"\"\n", - "\n", - " #First try opening and doing the select assuming everything is working ok with the time axis\n", - " try:\n", - " dat = \\\n", - " xr.open_mfdataset\\\n", - " (filepath, coords=\"minimal\", join=\"override\", decode_times=True, use_cftime=True).\\\n", - " sel(time=slice(datestart, dateend))\n", - " try:\n", - " dat=dat.rename({\"longitude\":\"lon\", \"latitude\":\"lat\"}) #problematic coord names\n", - " print(\"changing longitude --> lon, latitude --> lat\")\n", - " except: pass\n", - "\n", - " except:\n", - " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\", decode_times = False)\n", - " try:\n", - " dat=dat.rename({\"longitude\":\"lon\", \"latitude\":\"lat\"}) #problematic coord names\n", - " except: pass\n", - "\n", - " dat = xr.decode_cf(dat, use_cftime = True)\n", - " dat = dat.sel(time=slice(datestart, dateend))\n", - " datetimeindex = dat.indexes['time'].to_datetimeindex()\n", - " dat['time'] = datetimeindex\n", - " print(\"Something's wierd about the time axis, decoding manually\")\n", - "\n", - " return dat\n", - "\n", - "def read_field_v0(filepath, datestart, dateend,latmin,latmax,plev):\n", - " \"\"\"Read in a time slice from datestart to dateend and calculate the zonal mean.\n", - " Try using datetime64 and if that doesn't work decode times manually.\n", - " Args:\n", - " filepath (string) = path to files e.g., \"/path/to/files/*.nc\"\n", - " datestart (string) = start date for time slice\n", - " dateend (string) = end date for time slice\n", - " \"\"\"\n", - "\n", - " try:\n", - " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", - " decode_times=True, use_cftime=True)\n", - "\n", - " except:\n", - " \n", - " print(\"Something's wierd about the time axis, decoding manually\")\n", - " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", - " decode_times=False)\n", - "\n", - " dat=xr.decode_cf(dat, use_cftime=True)\n", - " datetimeindex=dat.indexes['time'].to_datetimeindex()\n", - " dat['time'] = datetimeindex\n", - " \n", - " dat=dat.sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),plev=plev)\n", - " return dat\n", - "\n", - "def read_field(filepath, datestart, dateend,latmin,latmax,lonmin,lonmax,plev):\n", - " \"\"\"Read in a time slice from datestart to dateend and calculate the zonal mean.\n", - " Try using datetime64 and if that doesn't work decode times manually.\n", - " Args:\n", - " filepath (string) = path to files e.g., \"/path/to/files/*.nc\"\n", - " datestart (string) = start date for time slice\n", - " dateend (string) = end date for time slice\n", - " \"\"\"\n", - "\n", - " try:\n", - " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", - " decode_times=True, use_cftime=True).\\\n", - " sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax))\n", - " \n", - " if len(plev) == 1:\n", - " dat = dat.sel(plev=plev,method=\"nearest\", tolerance=1) #avoid issue for models with inaccurate plevs\n", - " else:\n", - " dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method=\"nearest\" is not implemented for slices\n", - "\n", - " except:\n", - " print(\"Something's wierd about the time axis, decoding manually\")\n", - " dat = xr.open_mfdataset(filepath, coords=\"minimal\", join=\"override\",\n", - " decode_times=False)\n", - " \n", - " dat=xr.decode_cf(dat, use_cftime=True)\n", - " \n", - " dat=dat.sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax))\n", - " if len(plev) == 1:\n", - " dat = dat.sel(plev=plev,method=\"nearest\", tolerance=1) #avoid issue for models with inaccurate plevs\n", - " else:\n", - " dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method=\"nearest\" is not implemented for slices\n", - "\n", - " datetimeindex=dat.indexes['time'].to_datetimeindex()\n", - " dat['time'] = datetimeindex\n", - "\n", - " return dat\n", - "\n", - "def get_lat_lon_res(ds):\n", - " \"\"\"Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. \n", - " Args:\n", - " ds (xr.dataset or xr.dataarry) = input dataset from which average lat and lon resolutions must be calculated\n", - " Ouputs:\n", - " latres, lonres = average latitudinal and longitudinal resolutions\n", - " \"\"\"\n", - " lat = ds.coords['lat']\n", - " lon = ds.coords['lon']\n", - " difflat = lat - lat.shift(lat=1)\n", - " latres = difflat.mean().to_numpy()\n", - " difflon = lon - lon.shift(lon=1)\n", - " lonres = difflon.mean().to_numpy()\n", - " return latres, lonres\n", - "\n", - "def def_domain(ds,min_lat,max_lat,min_lon,max_lon):\n", - " \"\"\"Function that takes xr.dataset or xr.dataarry and box coordinates from a domain and crops the dataset or datarray to \n", - " the domain defined by the box coordinates.\n", - " Args:\n", - " ds (xr.dataset or xr.dataarry) = input dataset which lat and lon needs to be cropped\n", - " min_lat, max_lat = minimum and maximum latitudinal coordinates\n", - " min_lon, max_lon = minimum and maximum longitudinal coordinates\n", - " Ouputs:\n", - " ds = xr.dataset or xr.dataarry cropped to the input domain\n", - " \"\"\"\n", - " LatIndexer, LonIndexer = 'lat', 'lon'\n", - " ds = ds.loc[{LatIndexer: slice(min_lat, max_lat),\n", - " LonIndexer: slice(min_lon, max_lon)}]\n", - " return ds\n", - "\n", - "def norm_lon(ds):\n", - " \"\"\"Function that takes xr.dataset or xr.dataarry and normalizes its longitude coordinate\n", - " Args:\n", - " ds (xr.dataset or xr.dataarry) = input dataset which lon coordinates needs to be normalized\n", - " \n", - " Ouputs:\n", - " ds = xr.dataset or xr.dataarry with normalized lon coordinates\n", - " \"\"\"\n", - " ds.coords['lon'] = (ds.coords['lon'] + 180) % 360 - 180\n", - " return ds.sortby(ds.lon)\n", - "\n", - "def get_ONDJFM_day(ds, months=[1,2,3,10,11,12],timedim=\"day\"):\n", - " \"\"\"Function that takes xr.dataset or xr.dataarry and months of the year and returns a dataset corresponding to\n", - " the specified months\n", - " Args:\n", - " ds (xr.dataset or xr.dataarry) = input dataset from which monthly data needs to be selected\n", - " months = months which are requested, in ordinal format (1=January, 2=February, ...,12=December)\n", - " timedim = name of the temporal coordinate of the dataset\n", - " \n", - " Ouputs:\n", - " ds = xr.dataset or xr.dataarry corresponding to the months selected\n", - " \"\"\"\n", - " return ds.isel({timedim:ds[timedim].dt.month.isin(months)})\n", - "\n", - "def make_fn(addlist,basename=\"\",sep=\"_\",filetype=''):\n", - " return sep.join(addlist)+sep+basename+filetype" - ] - }, { "cell_type": "code", "execution_count": 14, @@ -232,12 +60,12 @@ }, "outputs": [], "source": [ - "#setup folders and folder variables. \n", + "#setup folders and folder variables.\n", "# All these variables need to be defined correctly for the code to work.\n", "# The strings in these variables should point to existing folders on your computer.\n", "project_folder = '/home/lseverino/MT/scripts MTP'\n", "data_folder = '/home/lseverino/MT/scripts MTP/data/' #this folder will contain the netcdf files downloaded by this script\n", - "results_folder = '/home/lseverino/MT/scripts MTP/results2/' #this folder will contain results (e.g. climada impact data) \n", + "results_folder = '/home/lseverino/MT/scripts MTP/results2/' #this folder will contain results (e.g. climada impact data)\n", " # produced by this script\n", "file_identifier = '_v01' # this string is added to all files written by this code" ] @@ -796,7 +624,7 @@ "memnamelist = [\"r\"+str(ri)+\"i1p1f1\" for ri in rlist] # use i=1, p=1, and f=1 as default\n", "\n", "## choose base name to save data\n", - "bnSWM = 'SWM_br_day_EU_winE' " + "bnSWM = 'SWM_br_day_EU_winE'" ] }, { @@ -817,7 +645,7 @@ "source": [ "## select dates\n", "#consider ONJDFM: start in D, finishes in M, adjust to have same number of days in both periods\n", - "ybegp = 1980 ; monbegp = 10 ; yendp = 2010 ; monendp = 3 ; daybegp = 1 ; dayendp = 30# dates for Past period, only takes 30th \n", + "ybegp = 1980 ; monbegp = 10 ; yendp = 2010 ; monendp = 3 ; daybegp = 1 ; dayendp = 30# dates for Past period, only takes 30th\n", "#ybegf = 2070 ; monbegf = 1 ; yendf = 2099 ; monendf = 12 ; daybegf = 1 ; dayendf = 31# dates for Future period\n", "ybegf = 2070 ; monbegf = 10 ; yendf = 2100 ; monendf = 3 ; daybegf = 1 ; dayendf = 30# otherwise dont have the same length\n", "\n", @@ -948,27 +776,27 @@ " else:\n", " nmems_av = models_df.loc[modname,['historical','ssp585']].min() #only consider members when available for both hist and ssp585\n", " nmems = min(nmems_av,nmems_max) #take all members if below nmems_max, and nmems_max otherwise\n", - " \n", - " \n", + "\n", + "\n", " for scen in selscen:\n", " #select path\n", " scenpath = pathdic[scen]\n", - " \n", + "\n", " #get nb of available members and their names\n", " memdic = dicscen[scen][modname]\n", " memnb = memdic[0]\n", " memnames = memdic[1]\n", - " memout=np.arange(0,nmems) \n", + " memout=np.arange(0,nmems)\n", " mem_av = 0\n", - " \n", + "\n", " #pick the correct dates\n", " if scen == 'historical':\n", " datebeg = datebegp\n", " dateend = dateendp\n", - " else: \n", + " else:\n", " datebeg = datebegf\n", " dateend = dateendf\n", - " \n", + "\n", " for imem in range(nmems):\n", " memname = memnamelist[imem]\n", " if memname in memnames:\n", @@ -982,29 +810,29 @@ "\n", " scendir = glob(scenpath+tres+\"/\"+var+\"/\"+modname+\"/\"+memname+\"/*/\")\n", " scendir = scendir[0]\n", - " \n", - " #read data \n", + "\n", + " #read data\n", " u=read_sfc(scendir+\"*.nc\", datebeg,dateend)\n", " uread = u[var]\n", - " \n", + "\n", " # get days index as models can have different calendars\n", " daysid = uread.time\n", " ndays = len(daysid)\n", - " \n", + "\n", " #get grid spec (only if first member and keep same specs for following members)\n", - " if imem==0: \n", - " \n", + " if imem==0:\n", + "\n", " #use source horizontal resolution of the first member, assuming all members have the same resolution\n", " latout = uread.lat\n", " lonout = uread.lon\n", - " \n", + "\n", " #initialize empty array\n", - " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]), \n", + " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]),\n", " coords=[daysid, latout, lonout, memout],dims=['time','lat','lon','member'], name=scen)\n", - " \n", + "\n", " #write into da\n", " uread = uread.rename({'time': 'time_o'}) #rename to avoid conflicts between indexing and indexed objects\n", - " \n", + "\n", " try:\n", " uzmem.loc[dict(member=imem)]=uread\n", " except IndexError:#if index error, interpolate on the grid of the target data array\n", @@ -1013,63 +841,63 @@ " uread = uread.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", " uzmem.loc[dict(member=imem)]=uread\n", "\n", - " \n", - " \n", + "\n", + "\n", " #del objects to speed up things?\n", " del u\n", " del uread\n", - " \n", + "\n", " #skip rest if no members were found\n", " if mem_av==0:\n", " continue\n", - " \n", - " \n", + "\n", + "\n", " ## processings\n", " # normalize longitude\n", " uzmemn = norm_lon(uzmem)\n", - " \n", + "\n", " #interpolate nans at 0deg longitude\n", " if np.any(np.isnan(uzmemn.dropna(dim=\"time\",how='all'))):\n", " print('interpolating nans...')\n", " uzmemn = uzmemn.interpolate_na(dim=\"lon\", method=\"linear\")\n", - " \n", + "\n", " #crop to EU domain\n", " Usfc_EU = def_domain(uzmemn,min_lat,max_lat,min_lon,max_lon)\n", - " \n", + "\n", " #set time indexes\n", " dayrange = np.arange(1,ndays+1,1)\n", " Usfc_EU = Usfc_EU.assign_coords({\"day\":(\"time\",dayrange)})\n", - " \n", + "\n", " #select winter months\n", " Usfc_EU_win = get_ONDJFM_day(Usfc_EU,timedim=\"time\")\n", "\n", - " \n", + "\n", " #swap dims to assemble files in the same dataset\n", - " \n", + "\n", " Usfc_EU_win = Usfc_EU_win.swap_dims({\"time\":\"day\"})\n", - " \n", + "\n", " #set time index as a data variable\n", " Usfc_EU_win = Usfc_EU_win.reset_coords()\n", - " \n", + "\n", " if scen == 'historical':\n", " timename = 'timep'\n", " else:\n", " timename = 'timef'\n", " Usfc_EU_win = Usfc_EU_win.rename(time=timename)\n", - " \n", + "\n", " #save to netcdf\n", - " \n", + "\n", " try:# see if file exist and merge to it\n", - " \n", + "\n", " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnSWM+\".nc\",mode=\"a\")\n", " except: #otherwise directly create the file\n", " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnSWM+\".nc\")\n", - " \n", - " \n", + "\n", + "\n", " time_delta_fut = timer() - start_time\n", " print(time_delta_fut)\n", - " \n", - " \n", + "\n", + "\n", "memname_df.to_csv(data_folder+memnames_fn)" ] }, @@ -1132,7 +960,7 @@ }, "outputs": [], "source": [ - "#get member names used for SWM \n", + "#get member names used for SWM\n", "memname_df = pd.read_csv(data_folder+memnames_fn,header=[0],index_col=[0,1])\n", "\n", "#models which have at least 1 member for historical and ssp585\n", @@ -1183,7 +1011,7 @@ "norm=False\n", "\n", "#names to save files\n", - "bnU850 = 'U850_br_day_EU_winE' " + "bnU850 = 'U850_br_day_EU_winE'" ] }, { @@ -1225,7 +1053,7 @@ "\n", "for index, modname in enumerate(modlist):\n", " start_time = timer()\n", - " \n", + "\n", " for scen in selscen:\n", " #select path\n", " scenpath = pathdic[scen]\n", @@ -1233,20 +1061,20 @@ " memdic = dicscen[scen][modname]\n", " memnb = memdic[0]\n", " memnames = memdic[1]\n", - " memout=np.arange(0,nmems) \n", + " memout=np.arange(0,nmems)\n", " mem_av = 0\n", " #select correct dates\n", " if scen == 'historical':\n", " datebeg = datebegp\n", " dateend = dateendp\n", - " else: \n", + " else:\n", " datebeg = datebegf\n", " dateend = dateendf\n", - " \n", + "\n", " for imem in range(nmems):\n", - " \n", + "\n", " memname = memname_df.loc[(modname,0),scen] #pick first members used for SWM data\n", - " \n", + "\n", " if memname in memnames:\n", " print(\"Processing \"+scen+\" for \"+modname+\" \"+memname+\"...\")\n", " #count member actually available\n", @@ -1256,106 +1084,106 @@ " print('Member: ' + memname + 'not available for model: '+modname+' and scen '+ scen)\n", " continue\n", "\n", - " \n", + "\n", " scendir = glob(scenpath+tres+\"/\"+var+\"/\"+modname+\"/\"+memname+\"/*/\")\n", " scendir = scendir[0]\n", " try:\n", " field = read_field(scendir+\"*.nc\", datebeg,dateend,min_lat,max_lat,None,None,plev)\n", - " \n", + "\n", " except ValueError:\n", " #assume first file contains what we need\n", - " fpath = glob(scenpath+tres+var+\"/\"+modname+\"/\"+memname+\"/*//*.nc\")[0] \n", + " fpath = glob(scenpath+tres+var+\"/\"+modname+\"/\"+memname+\"/*//*.nc\")[0]\n", " print(\"Look into: \"+fpath)\n", " field = read_field(fpath,datebeg,dateend,min_lat,max_lat,None,None,plev)\n", - " \n", + "\n", " utemp = field[var]\n", - " \n", + "\n", " #get days, necessayry as models can have different calendars\n", " daysid = utemp.time\n", " ndays = len(daysid)\n", - " \n", + "\n", " #take mean over pressure\n", " utemp = utemp.mean(dim='plev')\n", - " \n", + "\n", " #get grid spec (only if first member and keep same specs for following members)\n", - " if imem==0: \n", - " \n", + " if imem==0:\n", + "\n", " #use source resolution\n", " latout = utemp.lat\n", " lonout = utemp.lon\n", - " \n", + "\n", " #initialize empty array\n", - " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]), \n", + " uzmem = xr.DataArray(np.zeros([ ndays, latout.size, lonout.size, nmems]),\n", " coords=[daysid, latout, lonout, memout],dims=['time','lat','lon','member'], name=scen)\n", - " \n", + "\n", " #read data\n", " if norm: #interpolation if regridding/regularization\n", " uread = utemp.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", - " \n", + "\n", " else: #slicing otherwise\n", " uread = utemp\n", " #uread = utemp.sel(lat=slice(minlato,maxlato),lon=slice(minlono,maxlono))\n", - " \n", + "\n", " #write into da\n", " uread = uread.rename({'time': 'time_o'}) #rename to avoid conflicts between indexing and indexed objects\n", - " \n", + "\n", " try:\n", " uzmem.loc[dict(member=imem)]=uread\n", " except IndexError:#if index error, interpolate on the grid of the target data array\n", " lati = uzmem.lat\n", " loni = uzmem.lon\n", " uread = uread.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": None})\n", - " \n", - " \n", + "\n", + "\n", " #del objects to speed up things?\n", " del field\n", " del utemp\n", " del uread\n", - " \n", + "\n", " #skip rest if no members were found\n", " if mem_av==0:\n", " continue\n", - " \n", - " \n", + "\n", + "\n", " ## processings\n", " # normalize longitude\n", " uzmemn = norm_lon(uzmem)\n", - " \n", + "\n", " #interpolate nans at 0deg longitude\n", " if np.any(np.isnan(uzmemn.dropna(dim=\"time\",how='all'))):\n", " print('interpolating nans...')\n", " uzmemn = uzmemn.interpolate_na(dim=\"lon\", method=\"linear\")\n", - " \n", + "\n", " #crop to domain\n", " Usfc_EU = def_domain(uzmemn,min_lat,max_lat,min_lon,max_lon)\n", - " \n", + "\n", " #set time indexes\n", " dayrange = np.arange(1,ndays+1,1)\n", " Usfc_EU = Usfc_EU.assign_coords({\"day\":(\"time\",dayrange)})\n", - " \n", + "\n", " #select winter months\n", " Usfc_EU_win = get_ONDJFM_day(Usfc_EU,timedim=\"time\")\n", - " \n", - " #swap dims to assemble files in the same dataset \n", + "\n", + " #swap dims to assemble files in the same dataset\n", " Usfc_EU_win = Usfc_EU_win.swap_dims({\"time\":\"day\"})\n", - " \n", + "\n", " #set time index as a data variable\n", " Usfc_EU_win = Usfc_EU_win.reset_coords()\n", - " \n", + "\n", " if scen == 'historical':\n", " timename = 'timep'\n", " else:\n", " timename = 'timef'\n", " Usfc_EU_win = Usfc_EU_win.rename(time=timename)\n", - " \n", + "\n", " #save to netcdf\n", - " \n", + "\n", " try:# see if file exist and merge to it\n", " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnU850+'.nc',mode=\"a\")\n", " except: #otherwise directly create the file\n", " Usfc_EU_win.to_netcdf(path=data_folder+modname+'_'+bnU850+'.nc')\n", - " \n", - " \n", + "\n", + "\n", " time_delta_fut = timer() - start_time\n", " print(time_delta_fut)" ] @@ -1375,7 +1203,7 @@ "metadata": {}, "outputs": [], "source": [ - "import dask " + "import dask" ] }, { @@ -1389,7 +1217,7 @@ "#paths\n", "pathin = \"/net/atmos/data/era5\" #input path for ERA5 data\n", "#time index\n", - "ybegp = 1980 ; monbegp = 1 ; yendp = 2010 ; monendp = 12 ; daybegp = 1 ; dayendp = 31# dates for Past period, only takes 30th \n", + "ybegp = 1980 ; monbegp = 1 ; yendp = 2010 ; monendp = 12 ; daybegp = 1 ; dayendp = 31# dates for Past period, only takes 30th\n", "\n", "years = np.arange(ybegp,yendp+1)\n", "months = [\"01\",\"02\",\"03\",\"10\",\"11\",\"12\"]\n", @@ -1420,8 +1248,7 @@ "for yr in years:\n", " for mn in months:\n", " pathinvar = pathin+\"/\"+str(yr)+\"/\"+mn+'/B'+str(yr)+mn+'??_??'\n", - " pathlist+=glob(pathinvar)\n", - " " + " pathlist+=glob(pathinvar)\n" ] }, { @@ -1441,7 +1268,7 @@ " return ds\n", "def get_ONDJFM_day(ds, months=[1,2,3,10,11,12]):\n", " if \"time\" not in ds.dims:\n", - " ds = ds.swap_dims({\"day\":\"time\"}) \n", + " ds = ds.swap_dims({\"day\":\"time\"})\n", " return ds.isel(time=ds.time.dt.month.isin(months))\n", "\n", "def norm_wind(ds):\n", @@ -1463,8 +1290,8 @@ " #drop useless var\n", " ds = ds['WG10']\n", " #slice domain\n", - " ds = def_domain(ds) \n", - " \n", + " ds = def_domain(ds)\n", + "\n", " return ds\n" ] }, @@ -1490,7 +1317,7 @@ " data_vars='all', coords='minimal', compat='override',preprocess=preprocess,parallel=True)\n", "\n", "time_delta_fut = timer() - start_time\n", - "print(time_delta_fut) " + "print(time_delta_fut)" ] }, { @@ -1513,7 +1340,7 @@ "ds_sort = ds.sortby(ds.time)\n", "ds_day = ds_sort.resample(time=\"1D\").max()\n", "time_delta_fut = timer() - start_time\n", - "print(time_delta_fut) " + "print(time_delta_fut)" ] }, { @@ -1535,7 +1362,7 @@ "start_time = timer()\n", "ds_day_winE = get_ONDJFM_day(ds_day, timedim=\"time\")\n", "time_delta_fut = timer() - start_time\n", - "print(time_delta_fut) " + "print(time_delta_fut)" ] }, { @@ -1665,10 +1492,10 @@ " era_da = era_ds['WG10']\n", "\n", "for modid, modname in enumerate(modlist):\n", - " \n", + "\n", " #read netcdf\n", " fncmip6 = make_fn([modname],bncmip6,filetype=\".nc\")\n", - " \n", + "\n", " with xr.open_dataset(data_folder+fncmip6) as cmip_ds:\n", " if modname == 'NESM3': #drop member r2i1p1f1 of NESM3 because faulty\n", " cmip_ds = cmip_ds.drop_sel(member=1)\n", @@ -1677,37 +1504,37 @@ " lonout = cmip_ds.lon\n", " daysid = cmip_ds.day\n", " memid = cmip_ds.member\n", - " \n", + "\n", " #select past and future period and get correct time coord\n", " past_da = cmip_ds.swap_dims({\"day\":\"timep\"}).reset_coords()[pastname]\n", - " \n", + "\n", " fut_da = cmip_ds.swap_dims({\"day\":\"timef\"}).reset_coords().drop_vars([\"historical\",\"timep\",\"day\"])\n", - " \n", + "\n", " #convert calendars\n", " past_da = past_da.convert_calendar('standard', dim='timep',align_on=\"year\")\n", " past_tid = past_da.timep\n", "\n", " fut_da = fut_da.convert_calendar('standard', dim='timef',align_on=\"year\")\n", " fut_tid = fut_da.timef\n", - " \n", + "\n", " #regrid era5 to the gcm's res\n", " era_qt_rg = era_da.interp(lat=latout,lon=lonout, method='linear',kwargs={\"fill_value\": 'extrapolate'}) #regridded era5\n", - " \n", + "\n", " #initiate dict to store data\n", " da_dict = dict()\n", - " \n", + "\n", " for scen in scen_used:\n", " start_time = timer() #start counting time\n", " last_time = start_time\n", - " \n", + "\n", " ncdfw = cmip_ds[[pastname,scen]] #select scen\n", - " \n", + "\n", " #initialize empty array\n", - " da_scen = xr.DataArray(np.zeros([ daysid.size, latout.size, lonout.size, memid.size]), \n", + " da_scen = xr.DataArray(np.zeros([ daysid.size, latout.size, lonout.size, memid.size]),\n", " coords=[daysid, latout, lonout, memid],dims=['time','lat','lon','member'], name=scen)\n", - " \n", + "\n", " ##bias correction\n", - " \n", + "\n", " #iterate over lat and lon\n", " for ilat in latout:\n", " for ilon in lonout:\n", @@ -1715,31 +1542,31 @@ "\n", " dat_mod = ncdfw_df[pastname].copy()\n", " dat_mod_all = ncdfw_df[scen].copy()\n", - " \n", + "\n", " #correct time index\n", " dat_mod.index = past_tid\n", " dat_mod_all.index = fut_tid\n", - " \n", + "\n", " #keep only date format\n", " dat_mod.index = dat_mod.index.date\n", " dat_mod_all.index = dat_mod_all.index.date\n", - " \n", + "\n", " #select obs gridpoint\n", " dat_obs = era_qt_rg.sel(lat=ilat,lon=ilon).to_dataframe().drop(['lat','lon'],axis=1)['WG10']\n", - " \n", + "\n", " #reindex GCM time data on obs time data\n", " dat_mod = dat_mod.reindex(dat_obs.index.date).dropna()\n", - " \n", + "\n", " dat_mod_all_corrected = bias_correct_ensemble(dat_mod, dat_obs, dat_mod_all, minq=0.001, maxq=1.000, incq=0.001)\n", - " \n", + "\n", " da_scen.loc[dict(lat=ilat,lon=ilon)] = dat_mod_all_corrected\n", - " \n", - " da_dict[scen] = da_scen \n", + "\n", + " da_dict[scen] = da_scen\n", " timef = timer()\n", " time_delta_past3 = timef - start_time\n", " print(\"Time for bias correction model \"+modname+\" and scen \"+scen+\": \"+str(time_delta_past3))\n", - " \n", - " \n", + "\n", + "\n", " #create dataset\n", " bias_corr_ds = xr.Dataset(da_dict)\n", "\n", @@ -1747,11 +1574,10 @@ " bias_corr_ds = bias_corr_ds.rename(time=\"day\")\n", " bias_corr_ds = bias_corr_ds.assign_coords({\"timep\":(\"day\",past_tid.data)}).reset_coords()\n", " bias_corr_ds = bias_corr_ds.assign_coords({\"timef\":(\"day\",fut_tid.data)}).reset_coords()\n", - " \n", + "\n", " ##save files\n", " if savencdf:\n", - " bias_corr_ds.to_netcdf(path=data_folder+modname+\"_\"+bnout+'.nc')\n", - " " + " bias_corr_ds.to_netcdf(path=data_folder+modname+\"_\"+bnout+'.nc')\n" ] }, { diff --git a/202403_winterstorms_projections_Europe/2_damage_calc.ipynb b/202403_winterstorms_projections_Europe/2_damage_calc.ipynb index 9a395df..fde53d6 100644 --- a/202403_winterstorms_projections_Europe/2_damage_calc.ipynb +++ b/202403_winterstorms_projections_Europe/2_damage_calc.ipynb @@ -14,7 +14,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "id": "7a231da9-666d-42d5-928b-7c43b0a5badf", "metadata": { "execution": { @@ -26,33 +26,32 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/dask/dataframe/_pyarrow_compat.py:17: FutureWarning: Minimal version of pyarrow will soon be increased to 14.0.1. You are using 12.0.1. Please consider upgrading.\n", - " warnings.warn(\n" - ] - } - ], + "outputs": [], "source": [ "import matplotlib.pyplot as plt\n", "#import xarray as xr\n", "import numpy as np\n", "#import copy as cp\n", "import pandas as pd\n", + "from scipy import sparse\n", "import cartopy.crs as ccrs\n", "from timeit import default_timer as timer\n", "from os import mkdir, remove, rmdir\n", "\n", "from climada.engine import Impact, ImpactCalc\n", - "from climada.entity import ImpactFunc,ImpactFuncSet\n" + "from climada.entity import ImpactFunc,ImpactFuncSet\n", + "\n", + "import warnings\n", + "warnings.filterwarnings('ignore') #Ignore warnings for making the tutorial's pdf.\n", + "warnings.simplefilter('ignore')\n", + "import logging\n", + "from climada.util.config import LOGGER\n", + "LOGGER.setLevel(logging.ERROR) #Ignore CLIMADA warnings for making the tutorial's pdf." ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "id": "380745ba-2457-4ce1-96d1-1ee62fe3e264", "metadata": { "execution": { @@ -66,17 +65,16 @@ }, "outputs": [], "source": [ - "##function definition\n", - "#from functions import *\n", - "#from climada_functions import *\n", - "from constants import *\n", + "##custom function definition\n", "from SL_bias_corr import *\n", + "from constants import *\n", + "from functions_projUncWS import *\n", "idx = pd.IndexSlice" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 6, "id": "02f038a8-40aa-4900-9275-9cec87405659", "metadata": { "execution": { @@ -102,7 +100,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 7, "id": "26fdf83a-0f12-4ec1-9f84-924fff37a70f", "metadata": { "execution": { @@ -135,181 +133,6 @@ "clist = mpl.rcParams['axes.prop_cycle']" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "fe51a302", - "metadata": {}, - "outputs": [], - "source": [ - "## Define functions\n", - "def set_centroids(da,stack=True,haztype='WS',timeres=\"day\",plot=False, printout=False):\n", - " '''Function which takes a xarray.DataArray as an input and returns a climada.hazard object, with centroids corresponding to\n", - " latitude and longitude of the DataArray.'''\n", - "\n", - " period = da.name\n", - " lat = da.lat\n", - " lon = da.lon\n", - "\n", - " # number of points\n", - " n_lat = len(lat)\n", - " n_lon = len(lon)\n", - "\n", - " #stack first members and time resolution, and then latitutde and longitude to obtain the event matrix\n", - " if stack:\n", - " events = da.stack(events=(\"member\",timeres)) #need to be of size n_ev * ncent = nmem*180 * ncent\n", - " nmem = len(da[\"member\"])\n", - " else:\n", - " events = da.rename({timeres:\"events\"})\n", - " nmem = 1\n", - " evmat = events.stack(cent=(\"lat\",\"lon\"))\n", - " #print('Evmat: '+str(evmat.shape))\n", - " n_ev = len(evmat[\"events\"])\n", - "\n", - " #intiate Hazard object, using Centroids.from_pix_bounds\n", - " haz = Hazard(haztype)\n", - "\n", - " #initiate lat and lon array for Centroids.from_lat_lon\n", - " lat_ar = lat.values.repeat(len(lon))\n", - " lon_ar = lon.values.reshape(1,n_lon).repeat(n_lat,axis=0).reshape(n_lon*n_lat)\n", - "\n", - " haz.centroids = Centroids.from_lat_lon(lat_ar,lon_ar)\n", - " haz.intensity = sparse.csr_matrix(evmat)\n", - " haz.units = 'm/s'\n", - " ev_id = np.arange(n_ev, dtype=int)\n", - " haz.event_id = ev_id\n", - " ev_names = events.coords[\"events\"].to_numpy().tolist()\n", - " #ev_names = pd.to_datetime(evmat.events,format='YYYY-MM-DD')\n", - " haz.event_name = ev_names\n", - " haz.orig = np.zeros(n_ev, bool)\n", - " haz.frequency = np.ones(n_ev)/(nmem*30)\n", - " haz.fraction = haz.intensity.copy()\n", - " haz.fraction.data.fill(1)\n", - " haz.centroids.set_meta_to_lat_lon()\n", - " haz.centroids.set_geometry_points()\n", - " haz.check()\n", - " if printout:\n", - " print('Lat resolution original: '+str(-latreso)+' ,rounded: '+str(-latres)+\n", - " '\\nLon resolution original: '+str(lonreso)+' ,rounded: '+str(lonres))\n", - " print('lat: '+str(n_lat)+', lon: '+str(n_lon))\n", - " print('Check centroids borders:', haz.centroids.total_bounds)\n", - " if plot:\n", - " haz.centroids.plot()\n", - "\n", - " return haz\n", - "\n", - "def sel_reg_exp(reg_ids,exp):\n", - " \"\"\"function that takes a list of country ISO codes reg_ids and a CLIMADA LitPop exposure\n", - " object exp as inputs and returns a copy of the exposure object with only the regions selected in reg_ids\"\"\"\n", - " sel_exp = cp.deepcopy(exp)\n", - " sel_exp.gdf = sel_exp.gdf.where(sel_exp.gdf['region_id'].isin(reg_ids)).dropna()\n", - " return sel_exp\n", - "\n", - "def get_lat_lon_res(ds):\n", - " '''Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. '''\n", - " lat = ds.coords['lat']\n", - " lon = ds.coords['lon']\n", - " difflat = lat - lat.shift(lat=1)\n", - " latres = difflat.mean().to_numpy()\n", - " difflon = lon - lon.shift(lon=1)\n", - " lonres = difflon.mean().to_numpy()\n", - " return latres, lonres\n", - "\n", - "def make_fn(addlist,basename=\"\",sep=\"_\",filetype=''):\n", - " \"\"\"Function to facilitate the creation of file names that takes a list of\n", - " strings addlist, a string basename, a string sep and a string filetype\n", - " as input and returns the string consisting of the keywords from addlist separated\n", - " by the sep separator and concatenated with the string basename and the string filetype\"\"\"\n", - " return sep.join(addlist)+sep+basename+filetype\n", - "\n", - "#each impact function gets a preprocessing function to prepare the hazard data\n", - "def mask_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000):\n", - " '''Function taking a dateset as an input, and returning it with the values below the quantile q at each grid cell\n", - " masked. The mask is computed for each gridcell for the past period. Fields for which less than cutarea is above the\n", - " quantile are dropped'''\n", - "\n", - " Upast = ds[pastname]\n", - " Ufut = ds[futname]\n", - " if stack:\n", - " Upast = Upast.stack(real=(\"member\",timeres))\n", - " Ufut = Ufut.stack(real=(\"member\",timeres))\n", - " dim=\"real\"\n", - " else:\n", - " dim = timeres\n", - "\n", - " Upast_qt = Upast.quantile(q,dim=dim)\n", - " U_mask_past = Upast.where(Upast>Upast_qt)\n", - " U_mask_fut = Ufut.where(Ufut>Upast_qt)\n", - "\n", - " #mask values below threshold\n", - " if mask_abs:\n", - " U_mask_past = U_mask_past.where(U_mask_past>=mask_abs)\n", - " U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs)\n", - "\n", - " latres, lonres = get_lat_lon_res(ds)\n", - " gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km\n", - " threshold = round(cutarea/gcarea)\n", - "\n", - " U_mask_past = U_mask_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", - " U_mask_fut = U_mask_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", - "\n", - " #unstack and assemble\n", - " U_mask_past = U_mask_past.unstack().fillna(0)\n", - " U_mask_fut = U_mask_fut.unstack().fillna(0)\n", - " if futname != pastname:\n", - " U_mask_fut.name = futname\n", - " U_mask = xr.combine_by_coords([U_mask_past, U_mask_fut]).fillna(0)\n", - " else:\n", - " U_mask = U_mask_past\n", - "\n", - " return U_mask\n", - "\n", - "def scale_qt(ds,q,mask_abs=None,timeres='day',stack=True,pastname='historical',futname='ssp585',cutarea=1000000):\n", - " '''Same as mask_qt but scaling by the q quantile.'''\n", - " Upast = ds[pastname]\n", - " Ufut = ds[futname]\n", - "\n", - " if stack:\n", - " Upast = Upast.stack(real=(\"member\",timeres))\n", - " Ufut = Ufut.stack(real=(\"member\",timeres))\n", - " dim = \"real\"\n", - " else:\n", - " dim = timeres\n", - "\n", - " Upast_qt = Upast.quantile(q,dim=dim)\n", - " U_mask_past = Upast.where(Upast>Upast_qt)\n", - " U_mask_fut = Ufut.where(Ufut>Upast_qt)\n", - " #mask values below threshold\n", - " if mask_abs:\n", - " U_mask_past = U_mask_past.where(U_mask_past>=mask_abs)\n", - " U_mask_fut = U_mask_fut.where(U_mask_fut>=mask_abs)\n", - "\n", - " U_scaled_past = (U_mask_past-Upast_qt)/Upast_qt\n", - " U_scaled_fut = (U_mask_fut-Upast_qt)/Upast_qt\n", - "\n", - " latres, lonres = get_lat_lon_res(ds)\n", - " gcarea = latres*lonres*100*100 #gridcell area approximated: 1 deg corresponds to 100km\n", - " threshold = round(cutarea/gcarea)\n", - "\n", - " U_scaled_past = U_scaled_past.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", - " U_scaled_fut = U_scaled_fut.dropna(dim=dim,thresh=threshold) #keep fields for which at least X values are not NaN\n", - "\n", - " #unstack and assemble\n", - " U_scaled_past = U_scaled_past.unstack().fillna(0)\n", - " U_scaled_fut = U_scaled_fut.unstack().fillna(0)\n", - " if futname != pastname:\n", - " U_scaled_fut.name = futname\n", - " U_scaled = xr.combine_by_coords([U_scaled_past, U_scaled_fut]).fillna(0)\n", - " else:\n", - " U_scaled = U_scaled_past\n", - " return U_scaled\n", - "\n", - "#put processing funcs in a dict\n", - "pp_func_dic ={}\n", - "pp_func_dic['Sw2010'] = mask_qt\n", - "pp_func_dic['CubEOT'] = scale_qt\n" - ] - }, { "cell_type": "markdown", "id": "374acd21-51c6-4cd9-83be-72e679d1dd62", @@ -321,7 +144,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 8, "id": "cd5a27bf-d4f4-4b4a-bc62-692044795f8f", "metadata": { "execution": { @@ -362,7 +185,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 9, "id": "f9795221-8048-47ce-85bc-0ced1a73d4be", "metadata": { "collapsed": true, @@ -383,4632 +206,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "2024-03-20 15:32:03,386 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:32:03,581 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:32:19,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,114 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,675 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,682 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:19,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,103 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:22,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,547 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,575 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,582 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,609 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:24,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:25,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:25,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:27,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,219 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,291 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,333 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:29,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:31,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:31,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:31,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:31,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:32,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:34,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:34,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,062 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:35,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:36,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,372 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,886 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,894 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:38,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:39,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,457 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:41,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:46,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,557 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,686 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,693 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:48,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:49,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:51,307 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:32:51,483 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:32:53,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:32:59,225 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:32:59,407 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:33:05,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:07,350 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:33:09,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,103 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:09,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,520 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,525 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,726 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:11,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:12,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:12,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,290 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,540 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,591 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,819 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,954 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:13,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:18,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:22,700 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:33:22,866 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:33:24,676 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:33:30,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:30,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,481 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:31,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:33,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:33,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:33,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "94.88532624999971\n", - "2024-03-20 15:33:38,303 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:33:38,488 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:33:55,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:55,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,756 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,897 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:57,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:58,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:58,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:58,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:59,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:59,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:33:59,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:00,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,746 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:02,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:04,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,071 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,077 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:05,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,785 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:07,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:08,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,909 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:10,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,773 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:11,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,954 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:13,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,559 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,591 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,751 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,786 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:14,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:15,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,626 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:17,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:21,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:21,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:21,801 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:21,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:22,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:22,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:23,891 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:23,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:23,904 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:23,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:23,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:24,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:26,875 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:34:27,318 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:34:28,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:34,860 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:34:35,016 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:34:40,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:42,633 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:34:44,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,756 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,762 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:44,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:46,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:47,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,874 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,893 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:48,991 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,187 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,193 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,253 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:49,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,626 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:53,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:34:58,037 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:34:58,223 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:34:59,974 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:35:05,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:05,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,488 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,581 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,586 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:06,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:08,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:08,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:08,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "95.13195658400036\n", - "2024-03-20 15:35:13,378 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:35:13,557 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:35:29,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,764 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,789 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:29,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:31,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:32,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:34,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:35,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:35,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:37,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,115 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,407 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:39,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,154 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,300 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:42,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:44,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,341 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:45,432 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:46,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,204 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:48,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,000 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,380 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,468 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:49,691 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,601 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:51,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:56,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:58,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:35:59,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:01,151 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:01,350 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:36:02,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:08,841 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:08,997 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:36:14,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:16,483 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:18,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:18,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,525 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,555 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,713 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,818 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,840 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,883 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:20,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:21,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,107 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,407 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,503 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,682 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,945 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:22,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:23,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,496 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:27,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:32,067 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:32,222 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:36:33,978 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:39,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:39,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,642 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,732 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:40,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:42,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:42,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:36:42,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "93.96300625000003\n", - "2024-03-20 15:36:47,439 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:36:47,590 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:37:03,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:03,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,057 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:04,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:05,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,248 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,271 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:06,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,522 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:08,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:09,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:09,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:11,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,541 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,568 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:13,601 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:14,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:16,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:17,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,344 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,348 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,494 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,546 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,609 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,669 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:19,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,399 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,449 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:20,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,468 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,598 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:22,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,248 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,432 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,523 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,610 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,686 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,693 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,710 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,717 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,874 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:23,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,850 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,902 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,976 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:25,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:26,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,492 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,507 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:30,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,815 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:32,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,015 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:33,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:35,674 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:37:35,838 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:37:37,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:43,428 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:37:43,854 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:37:49,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:51,395 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:37:53,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,233 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,455 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:53,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,452 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,598 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,915 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,932 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,956 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:55,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,071 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,274 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:56,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,368 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,387 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,709 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:57,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,003 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,241 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:37:58,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:02,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:07,402 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:38:07,567 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:38:09,392 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:38:15,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,166 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:15,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,209 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:16,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:18,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:18,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:18,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "95.5202155829993\n", - "2024-03-20 15:38:23,247 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:38:23,620 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:38:39,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:39,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:40,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,484 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,648 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,691 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:42,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,976 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:44,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,000 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:45,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,633 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:47,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,764 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,827 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,882 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,920 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,978 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,986 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:49,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,028 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:50,643 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,838 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,849 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,910 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:52,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:53,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,941 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:55,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,026 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,134 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,849 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,870 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:56,986 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:57,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,909 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,919 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,939 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:58,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,702 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,767 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,824 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:38:59,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,150 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,342 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:00,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,426 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,495 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,523 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,642 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,708 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,722 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:02,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:06,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:07,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:07,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:07,030 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:07,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:07,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,142 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,166 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,333 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,400 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,526 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,545 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,570 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:09,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:10,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:12,095 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:39:12,284 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:39:13,957 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:20,903 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:39:21,064 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:39:26,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:28,828 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:39:30,569 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:30,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:32,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,531 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,543 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,576 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:33,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,644 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,650 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,661 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,811 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,929 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,932 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:34,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,177 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,285 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,308 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,341 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,465 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,479 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,534 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,582 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:35,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,047 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,081 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,189 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:40,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:44,715 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:39:44,876 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:39:46,686 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:39:52,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,361 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:52,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,260 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,318 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,327 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,434 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:53,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:55,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:55,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:39:55,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "97.15769558300053\n", - "2024-03-20 15:39:59,953 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:40:00,221 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:40:16,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,701 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:16,794 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,802 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,823 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:18,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,110 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,133 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:19,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,349 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,378 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,421 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:21,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:22,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:22,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,178 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:24,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,368 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,509 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:26,565 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:27,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,413 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:29,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:30,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,353 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,674 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:32,687 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,291 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,352 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:33,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,355 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,380 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,385 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,431 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,514 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,535 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:35,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,203 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,366 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,491 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,615 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,630 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,663 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,672 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,773 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,811 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,856 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:36,886 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,873 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,901 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:38,989 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,197 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,219 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,229 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:39,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,696 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:43,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:49,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:49,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:49,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:49,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:49,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,144 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,300 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:50,957 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:40:52,962 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:40:53,170 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:40:54,834 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:00,804 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:41:01,265 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:41:07,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:09,020 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:41:10,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,774 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:10,991 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:12,956 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:12,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:12,982 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:12,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,127 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,145 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,198 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,388 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,505 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,532 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,547 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,656 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,752 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,781 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:13,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,817 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,831 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,938 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:14,988 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,018 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,100 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,143 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,287 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,307 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,354 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,399 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,428 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,484 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,515 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,606 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,738 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:15,751 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:19,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:19,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:19,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:19,969 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:19,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,107 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:20,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:24,508 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:41:24,660 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:41:26,427 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:41:32,025 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,202 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:32,970 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,108 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,123 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,139 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,204 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,209 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:33,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:35,234 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:35,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:35,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "99.82160608400045\n", - "2024-03-20 15:41:39,954 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:41:40,115 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:41:56,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,406 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,442 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,939 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,947 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,974 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:56,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,040 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:57,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,158 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,180 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,238 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,409 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,504 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,587 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:41:59,611 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,579 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,679 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,776 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,801 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:01,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:02,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:02,562 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,414 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,463 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:04,636 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,707 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,721 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,784 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,798 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,828 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,832 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,848 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,943 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,968 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:06,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,035 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:07,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,719 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,887 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,893 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,914 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:09,931 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:10,593 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,664 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,745 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,772 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,790 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,838 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,885 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,966 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,973 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:12,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,129 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,167 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,175 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,752 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,780 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,866 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,911 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:13,948 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,964 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,979 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:15,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,028 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,053 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,212 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,602 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,665 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,778 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,797 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,804 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,813 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,841 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:16,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,163 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,181 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,194 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,210 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,223 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,303 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,377 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,427 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,441 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:17,470 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,447 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,456 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,538 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,647 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,716 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,732 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,760 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,784 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,792 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:19,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:24,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,317 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,328 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,479 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,501 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,516 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,531 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,552 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,560 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,567 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,574 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,700 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:26,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:27,371 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:29,310 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:42:29,467 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:42:31,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:37,323 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:42:37,477 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:42:43,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:45,035 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:42:46,757 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,793 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,825 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:46,998 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:47,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:47,019 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:47,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:48,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,154 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,172 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,290 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,325 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,337 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,446 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,462 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,487 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,540 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,566 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,654 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,680 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,715 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,736 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,761 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,816 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,853 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:49,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,851 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,880 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,896 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,908 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,946 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:50,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,048 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,091 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,170 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,283 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,439 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,454 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,482 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,489 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,500 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,509 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,561 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,639 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,659 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,688 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,731 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,770 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,785 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,808 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:51,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,044 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,067 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,105 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,148 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,238 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:42:56,247 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:00,613 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:43:00,782 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:43:02,602 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:43:08,195 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:08,376 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,132 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,205 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,282 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,360 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,403 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,430 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,440 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:09,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:11,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:11,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:11,422 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "96.24178916700112\n", - "2024-03-20 15:43:16,087 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:43:16,253 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:43:32,206 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,217 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,221 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,242 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,246 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,251 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,264 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,766 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,835 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,843 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:32,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,857 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,879 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:34,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,160 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,265 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:35,288 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,188 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,215 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,232 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,374 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,404 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,415 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,429 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,467 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:37,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:38,163 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:38,190 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,240 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:40,289 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,518 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,529 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,533 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,542 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,571 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,584 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,594 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,607 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,628 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,649 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,694 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,730 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,755 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,769 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,803 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,825 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,833 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,854 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:42,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:43,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,425 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,458 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,482 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,548 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,575 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,585 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,635 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,641 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,729 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,742 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:45,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:46,444 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,394 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,466 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,510 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,539 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,556 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,581 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,618 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,678 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,727 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,749 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,765 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,834 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,865 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,869 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,904 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,918 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,944 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:48,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,012 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,577 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,622 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,637 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,657 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:49,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,623 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,658 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,666 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,671 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,676 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,685 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,695 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,703 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,718 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,807 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,883 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:51,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,273 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,416 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,478 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,485 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,511 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,541 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,560 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,578 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,592 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,604 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,629 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,673 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,689 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,709 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,734 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,747 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,829 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,839 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,859 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,875 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,884 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,913 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,921 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,965 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:52,994 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,004 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,013 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:53,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,086 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,128 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,280 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,305 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,370 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,401 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,412 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,423 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,443 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,453 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:55,469 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,710 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,720 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:43:59,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:01,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:01,895 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:01,900 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:01,916 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:01,926 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,080 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,094 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,138 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,157 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,258 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,279 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,299 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,331 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:02,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:04,928 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:05,159 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:44:06,775 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:12,805 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:12,967 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:44:18,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:20,405 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:22,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,130 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,150 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,330 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:22,345 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,324 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,382 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,402 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,418 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,506 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,513 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,527 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,563 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,572 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,580 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,603 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,625 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,634 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,640 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,652 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,660 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,667 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,712 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,750 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,758 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,767 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,783 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,826 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,844 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,855 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,876 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,890 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,936 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,971 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:24,985 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,003 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,018 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,032 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,047 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,065 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,140 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,147 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:25,156 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,112 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,120 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,125 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,159 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,173 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,184 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,225 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,297 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,311 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,364 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,438 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,443 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,473 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,651 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,677 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,684 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,692 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,698 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,705 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,723 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,739 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,748 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,771 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,788 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,809 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,822 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,840 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,850 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,868 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,907 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,928 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,940 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,960 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:26,975 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,060 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:27,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,372 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,410 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,424 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,445 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,463 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,472 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,490 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,502 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,512 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,524 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,544 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,551 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,558 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:31,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:36,259 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:36,456 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:44:38,217 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:43,864 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,922 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,930 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,949 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,963 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:43,996 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,010 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,017 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,039 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,782 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,795 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,845 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,860 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,868 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,881 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,888 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,898 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,906 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,917 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,927 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,941 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,953 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,962 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:44,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,002 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,020 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,036 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,062 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,079 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,085 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:45,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:47,069 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:47,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:44:47,097 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "95.63465799999904\n", - "2024-03-20 15:44:51,822 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:44:51,965 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:45:07,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:07,987 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:07,993 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:07,999 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,005 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,038 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,051 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,519 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,530 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,553 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,565 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,597 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,613 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,619 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,627 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,646 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:08,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,631 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,662 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,683 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,724 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,741 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,759 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,903 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,924 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,951 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:10,995 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:11,073 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:11,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:11,096 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,106 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,162 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,256 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,266 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,272 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,308 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,319 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,334 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,381 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,391 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:13,435 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:14,024 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:14,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:15,892 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:15,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:15,937 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:16,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:16,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:16,087 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:16,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,011 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,029 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,046 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,070 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,116 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,141 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,151 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,174 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,196 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,237 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,263 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,276 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,332 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,340 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,362 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,398 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:18,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:20,925 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:20,955 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:20,961 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:20,967 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:20,983 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,007 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,014 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,037 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,043 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,052 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,061 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,095 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,117 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,211 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,218 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,250 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:21,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,871 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,878 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,942 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,950 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,973 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,981 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:23,997 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,008 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,022 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,059 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,076 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,082 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,099 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,155 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,161 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,186 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,199 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,224 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,270 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,292 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,351 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,395 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,433 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,451 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,477 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,486 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:24,499 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,055 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,068 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,083 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,093 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,122 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,137 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,152 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,164 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,171 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:25,259 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,207 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,228 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,236 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,243 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,262 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,358 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,378 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,448 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,461 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,475 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,483 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,508 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,863 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,872 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,881 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,902 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:27,945 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,001 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,021 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,031 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,042 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,063 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,084 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,101 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,131 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,165 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,183 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,200 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,216 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,230 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,255 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,281 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,312 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,323 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,459 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,471 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,480 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,498 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,517 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,528 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,536 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,559 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,569 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,589 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,600 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,621 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,645 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,655 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,668 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,681 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,699 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,721 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,768 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:28,799 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,779 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,797 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,805 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,812 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,821 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,867 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,891 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,901 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,920 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,958 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:30,984 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,027 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,041 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,058 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,074 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,088 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,098 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,113 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,135 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,146 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,153 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:31,169 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,583 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,595 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,608 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,616 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,820 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:35,836 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:37,830 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:37,837 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:37,842 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:37,861 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:37,872 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,006 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,033 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,049 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,054 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,075 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,092 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,104 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,124 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,226 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,249 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,257 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,269 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,284 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,304 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,315 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:38,899 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:40,820 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:45:40,989 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:45:42,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:48,731 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:45:49,146 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:45:54,791 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:56,803 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:45:58,535 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,550 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,564 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,588 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,599 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,620 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,772 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,787 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,800 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,806 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:45:58,814 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,847 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,862 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,877 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,889 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,912 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,934 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,952 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,972 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:00,992 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,016 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,034 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,056 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,064 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,078 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,090 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,111 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,118 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,126 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,136 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,149 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,168 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,176 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,182 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,192 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,213 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,252 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,301 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,306 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,314 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,359 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,386 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,392 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,411 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,426 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,436 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,450 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,464 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,481 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,497 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,521 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,537 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,554 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,573 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,590 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,612 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,632 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,653 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,670 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,690 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,706 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,737 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,744 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:01,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,704 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,714 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,728 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,735 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,740 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,754 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,777 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,796 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,810 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,846 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,858 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,882 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,894 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,905 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,919 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,933 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,959 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:02,990 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,009 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,023 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,045 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,050 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,066 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,072 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,089 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,102 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,119 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,261 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,267 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,294 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,313 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,326 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,336 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,343 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,367 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,383 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,420 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,437 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,460 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,474 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,493 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,505 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,522 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,561 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,584 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,596 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,614 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,624 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,638 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,697 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,711 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,725 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,733 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,743 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,753 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:03,763 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,201 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,220 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,239 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,277 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,295 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,305 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,322 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,329 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,339 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,347 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,357 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,379 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,389 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,397 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:08,408 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:12,685 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:46:12,859 - climada.util.finance - WARNING - No data for country, using mean factor.\n", - "2024-03-20 15:46:14,627 - climada.util.finance - WARNING - No data available for country. Using non-financial wealth instead\n", - "2024-03-20 15:46:20,179 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,235 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,245 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,268 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,278 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,286 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,298 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,309 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,320 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,338 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,346 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:20,365 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,109 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,121 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,171 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,185 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,191 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,208 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,214 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,222 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,227 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,231 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,244 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,254 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,275 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,293 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,302 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,310 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,316 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,321 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,335 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,350 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,356 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,363 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,369 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,375 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,390 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,396 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,405 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:21,417 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:23,384 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:23,393 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "2024-03-20 15:46:23,419 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020\n", - "96.2678586660004\n" + "102.989449\n" ] } ], @@ -5018,10 +216,10 @@ "import geopandas as gpd\n", "\n", "#select values for the m and n LitPop parameters to generate exposure layers, different values of m and n are needed for the uncertainty and sensitivity analysis\n", - "mlist = [0.75,1,1.25]\n", - "nlist = [0.75,1,1.25]\n", - "##mlist = [1]\n", - "#nlist = [1]\n", + "#mlist = [0.75,1,1.25]\n", + "#nlist = [0.75,1,1.25]\n", + "mlist = [1]\n", + "nlist = [1]\n", "\n", "#mask exposure below a threshold, i.e. neglect exposure points where values is below exp_thres USD\n", "exp_thres = 1\n", @@ -5057,7 +255,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 10, "id": "f3d6379d-9eeb-4754-93cf-ff6ff5820074", "metadata": { "execution": { @@ -5087,7 +285,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 11, "id": "df13c639-1513-4b5e-a7fe-4043f634e650", "metadata": { "execution": { @@ -5130,7 +328,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 12, "id": "cce40be1-f4c7-4ea0-8a10-531c914837ca", "metadata": { "execution": { @@ -5143,44 +341,6 @@ "tags": [] }, "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2498: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n", - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/shapely/predicates.py:798: RuntimeWarning: invalid value encountered in intersects\n", - " return lib.intersects(a, b, **kwargs)\n" - ] - }, { "data": { "image/png": "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j0MChACCoAgSBPB6zGCAe9bPuaKAc9/n836/fT+rHJfP55dhhCKr23r4PSIiIiIiIiIisp4otrz8zidOrRj1+dO/RxERERERERGR10axwOWh+N/5W1JyKmRv2Ln+kYqIiIiIiMjK0ee2uXp7ewGYmpo66zan153eVmS90+8REREREREREZH1RzGhi0Mx6tdG/x5FRERERERERC4exV6Wj+J/GXOlByAiIiIiIiJyMezevRuAQ4cOEUXRgtvs27dvzrYiIiIiIiIiIiIiIstBMWoREREREREREZG1S/G/jJJTRUREREREZE265ZZbcByHbrfL448/Pm99GIb84Ac/AOB1r3vdpR6eiIiIiIiIiIiIiKxhilGLiIiIiIiIiIisXYr/ZZScKiIiIiIiImtSpVLhLW95CwB/+qd/Om/9X//1X1Ov1+nv7+e+++67xKMTERERERERERERkbVMMWoREREREREREZG1S/G/jJJTRUREREREZM36j//xP2IYBn/yJ3/CAw88MLP8qaee4iMf+QgA/+7f/Ttc112pIYqIiIiIiIiIiIjIGqUYtYiIiIiIiIiIyNql+B8YaZqmKz0IERERERERkYvlN3/zN/n1X/91AHbu3EmpVOLZZ58lSRLuv/9+/v7v/x7LslZ4lCIiIiIiIiIiIiKyFilGLSIiIiIiIiIisnat9/ifklNFRERERERkzfvCF77ARz/6UR577DHCMGT37t3883/+z/nQhz60pj/0i4iIiIiIiIiIiMjKU4xaRERERERERERk7VrP8T8lp4qIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIjIkpkrPQARERERERERERERERERERERERERERERERERERERWT2UnCoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiS6bkVBERERERERERERERERERERERERERERERERERERFZMiWnioiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiMiSKTlVRERERERERERERERERERERERERERERERERERERJZMyakiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIismRKThURERERERERERERERERERERERERERERERERERGRJVNyqoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgsmZJTRURERERERERERERERERERERERERERERERERERGTJlJwqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIkum5FQRERERERERERERERERERERERERERERERERERERWTIlp4qIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIjIkik5VURERERERERERERERERERERERERERERERERERESWTMmpIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIrJkSk4VERERERERERERERERERERERERERERERERERERkSVTcqqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiILJmSU0VERERERERERERERERERERERERERERERERERERkyZScKiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiJLpuRUEREREREREREREREREREREREREREREREREREREVkyJaeKiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIyJIpORW47777MAxjyV89PT3Luv/ZjnE+4xUREREREREREVmtLkZ87nzOJSIiIiIiIiIiIqvLxZrz91u/9VuLnvetb33rgvv9xm/8xrxtF9rOtm3y+TwDAwNceeWVvPWtb+UjH/kIX//618/7PQjDkKGhoXnnyOVyTE5Oztn2wIED5/V+LfT18z//8+c9RhERERERERFZ25ScKiIiIiIiIiIiIiIiIiIiIiIiIiLr3v/+3/+bOI4XXPfCCy/w4IMPXtDx4zim2+0yMTHBnj17ePDBB/noRz/KW97yFq6++mr+4R/+YcnH+sIXvsDY2Ni85b7v88ADD1zQOEVERERERERElkLJqSIiIiIiIiIiIiIiIiIiIiIiIiKy7h0+fJjPfvazC6772Mc+dlHP/dJLL/GOd7yD//pf/+uStv/EJz7xmtaJiIiIiIiIiCwXe6UHcLnav3//WdeZ5rlzei90fxERERERERERkfVM8TURERERERERERE5H8sVU/zYxz7Gj/3Yj81ZVqvV+PM///PXPDaA173udfzlX/4lcRwzOTnJE088wSc/+UkeeuihmW3SNOU//af/xNDQEL/8y7981mONjY3x5S9/+azrH330UZ577jmuu+46ADZv3rzg+3PkyBHuvffeOct+7Md+jN/5nd+Zt22pVDrnNYqIiIiIiIjI+qLk1LPYvn37iu4vIiIiIiIiIiKynim+JiIiIiIiIiIiIufjQmKKhmGQpikA//iP/8gzzzzDDTfcMLP+4x//OM1mc9625yOXy82McdeuXdxxxx388i//Mh/96Ef5yEc+Mmfbj3zkI7zvfe9jaGhowWN96lOfIgzDmdcjIyOMjIzw6KOPziz7xCc+wX//7/8dANu2l/z+lEolxWdFREREREREZEnUYkBERERERERERERERERERERERERE1q3bb7+d3t7emdd/8Ad/MPNzkiT84R/+4czrt7/97ct67n/zb/4Nv/iLvzhnWavV4vd///fPus8nP/nJOa9/5md+hg9+8INzln3qU58ijuPlG6iIiIiIiIiIyKsoOVVERERERERERERERERERERERERE1q1CocAv/MIvzLz+1Kc+xfT0NABf+tKX2Lt378y6D3/4w8t+/n//7//9vGVf/OIXF9z2ySef5Kmnnpqz7IMf/CA/9VM/hW3bM8tGR0f5yle+srwDFRERERERERE5g5JTz8IwjLN+/e7v/u5F319ERERERERERGQ9U3xNREREREREREREzseFxhR/9Vd/FcuyAGi323z84x8HmNPBdPfu3bzjHe9Y9rHv2rWLzZs3z1n29NNPkyTJvG3/7M/+bM7rG2+8kRtvvJGhoSHe+ta3zln3iU98YtnHKiIiIiIiIiJympJTRURERERERERERERERERERERERGRd2759O+9+97tnXv/hH/4hzz//PA8++ODMsg996EMYhnFRzr9p06Y5r5MkYWJiYs6yMAx54IEH5iz74Ac/OPPzBz7wgTnrPv/5zzM5ObnMIxURERERERERySg5VURERERERERERERERERERERERETWvQ9/+MMzP+/bt4+f/MmfJE1TAMrlMj//8z9/0c59+jxnenUi7Be+8AXGxsZmXpumyc/8zM/MvH7f+95HqVSaee37/rxkVhERERERERGR5WKv9AAuV/v37z/rur6+vmXf3zRfe57wxarEJiIiIiIiIiIislLOJ76m2JqIiIiIiIiIiIhc6Jw/gB/6oR/i+uuv59lnnwWY+Q7wcz/3c1QqlQsb5CKOHj0657VpmvPG/YlPfGLO6x/+4R9mZGRk5nWhUOD9738/f/7nfz5nn1/91V9d/gGLiIiIiIiIyLqn5NSz2L59+yXdf6GgVbfbJZfLzVvebrfnvK5Wq+d1LhERERERERERkcvd+cTXFFsTERERERERERGRC53zd9qHP/xhfuVXfmXOMsMw5nRVXW579uyZl5x60003zSnMNzY2xpe//OU523zta187ZwG+Rx99lOeee47rrrtu+QYsIiIiIiIiIgK89pYCsqw2b948b9nevXsX3PbVFd4W2ldERERERERERGS9UGxNRERERERERERElssHPvABent75yx729vexpVXXnnRzvnf/tt/m7fsne9855zXn/rUpwjD8DUd/9UdV0VEREREREREloOSUy8Td99997xln/70p+ct+/rXv874+PicZffcc89FG5eIiIiIiIiIiMjlTrE1ERERERERERERWS6FQoFf+IVfmLPs137t1y7a+T760Y/yp3/6p3OWFYvFeZ1aP/nJT77mc3zqU58ijuPXvL+IiIiIiIiIyELslR7A5erAgQOLrh8ZGcF13WXb/73vfS8DAwNzJsf95m/+Jr7v8973vpdCocDDDz/Mf/gP/2HesX7xF39x0XOJiIiIiIiIiIisNucTX1NsTURERERERERERC50zt+Zfu3Xfo00TQHI5XK84x3vuNDh0e12OXDgAEmSMDk5yeOPP84nPvEJHn744Xnb/o//8T8YHh6eef3kk0/y1FNPzdnm05/+NHfeeeeC5zp48CD33XffzOvR0VG+8pWvcP/991/wdYiIiIiIiIiInKbk1LPYsWPHouufeOIJbr755mXbv1Ao8NGPfpQPfvCDM8uSJOG3f/u3+e3f/u2zHudXfuVXuO222xY9l4iIiIiIiIiIyGpzPvE1xdZERERERERERETkQuf8nWnLli38zu/8zjKMatYjjzxyzjGapsn//X//3/zKr/zKnOV/9md/Nud1pVLh/e9/P47jLHic7du3s2vXLvbu3Tuz7BOf+ISSU0VERERERERkWZkrPQCZ9YEPfIA//uM/Jp/PL2n7D3/4w3zsYx+7yKMSERERERERERG5/Cm2JiIiIiIiIiIiIqvZtddeyz/8wz/w67/+63OWh2HIAw88MGfZ29/+9rMmpp726kTUz3/+80xOTi7PYEVEREREREREUOfUy84v/uIv8p73vIePf/zjfOMb3+C5555jcnKSOI7p6elh165d3H333fyLf/EvuPbaa1d6uCIiIiIiIiIiIpcNxdZERERERERERETkcmYYBo7jUCqV6O/vZ9u2bdxwww285z3v4b777ltwny9+8YuMjY3NWfaud73rnOe6//77+f3f//2Z177v88ADD/Crv/qrF3QNIiIiIiIiIiKnGWmapis9CBERERERERERERERERERERERERERERERERERERFZHcyVHoCIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIrB5KThURERERERERERERERERERERERERERERERERERGRJVNyqoiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgsmZJTRURERERERERERERERERERERERERERERERERERGTJlJwqIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIkum5FQRERERERERERERERERERERWfP279/PH//xH/NLv/RL3HTTTdi2jWEY/Nf/+l/Pus8TTzzBf/7P/5k3velNDAwM4DgOQ0NDvOMd7+Dv/u7vLuHoRURERERERERE5FJTTFFkcfZKD0BERERERERERERERERERERE5GL7vd/7PX7v935vydvv3buXW2+9deb1jh072L59O/v27eMrX/kKX/nKV/i5n/s5Pv7xj2Oaqg8vIiIiIiIiIiKy1iimKLK4dZ2c2u12CYJgpYchIiIiIiKXiOu65HK5c263Vj4rLPV6RUREVspa+ZsrIiIiIiJyqa23WOfZnG8MdGBggHe9613ceeed3HHHHfzJn/wJn/nMZ866fZqmbNy4kX/9r/81H/zgB9m4cSMASZLwv/7X/+LXfu3X+OQnP8ntt9/Ohz70oQu+HhERObe1/rdNRERERETkYlFMMaOYosjyWrfJqd1ul2q+l4DuSg9FREREREQukQ0bNrB///5FAwvdbpcd20qMnowv4cgujqVcr4iIyEpRfE5EREREROS1W2+xzrM53xjor//6r895/Zd/+ZeLbr9582ZeeeUVCoXCnOWmafKhD32I5557jj/6oz/ij//4jzWRTETkElBMUURERERE5LVTTDGjmKLI8lq3yalBEBDQ5R7eiY2z6Lb5TQ59txXw+m0M05i3/sADk8TtZM4yp9di64/2Mv1sm4lH2ss6dhGRlbD5R3voHgsY/55+p4lcLuyKSf+dRYpbXQDqL3YZf6i1wqNa39r/36u5amwSN0lIgcm8x7MbBvGdU/ebRrro/rv+3aMLrzBhw1srFDa7nL4bDUyTRzaO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", @@ -5215,7 +375,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 13, "id": "54e8f41b-9f95-4161-aba7-6cb6e2266afd", "metadata": { "execution": { @@ -5243,7 +403,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 14, "id": "aaff44fe-adbd-4261-a0c8-ddbe230e0a65", "metadata": { "execution": { @@ -5277,7 +437,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 15, "id": "2917b622-c086-47bc-a2cc-7e197175149d", "metadata": { "execution": { @@ -5353,7 +513,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 23, "id": "b6beb769-3aae-44a2-9598-3a485328aa28", "metadata": { "execution": { @@ -5374,7 +534,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 24, "id": "e6546796-5863-4e11-b4b6-1c076435c97e", "metadata": { "execution": { @@ -5420,7 +580,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 25, "id": "2f4be380", "metadata": { "execution": { @@ -5444,7 +604,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 26, "id": "5eccaf53-bd73-4138-8485-9634e27596c0", "metadata": { "execution": { @@ -5461,8 +621,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "0.14598533299999872\n", - "0.16866670800004613\n" + "0.15488383299998532\n", + "0.1855051249999633\n" ] } ], @@ -5566,7 +726,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 27, "id": "c9ba6d3c-5fb9-4567-a4c5-883efc83fe28", "metadata": { "execution": { @@ -5618,11 +778,11 @@ " \n", " \n", " CubEOT\n", - " 1.845924e+12\n", - " 3.234635e+11\n", - " 1.873108e+12\n", - " 2.081061e+12\n", - " 2.765842e+12\n", + " 3.073582e+09\n", + " 5.385877e+08\n", + " 3.118846e+09\n", + " 3.465101e+09\n", + " 4.605306e+09\n", " \n", " \n", "\n", @@ -5631,10 +791,10 @@ "text/plain": [ " aai_agg 1 10 15 30\n", "Sw2010 1.929322e+09 3.210859e+08 2.606342e+09 3.339136e+09 3.600549e+09\n", - "CubEOT 1.845924e+12 3.234635e+11 1.873108e+12 2.081061e+12 2.765842e+12" + "CubEOT 3.073582e+09 5.385877e+08 3.118846e+09 3.465101e+09 4.605306e+09" ] }, - "execution_count": 17, + "execution_count": 27, "metadata": {}, "output_type": "execute_result" } @@ -5645,7 +805,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 28, "id": "2a6d27bf-2829-45b7-80d7-8507fc7e74fb", "metadata": { "execution": { @@ -5662,19 +822,21 @@ "name": "stdout", "output_type": "stream", "text": [ - "0.001665064740389263\n" + "1.0\n" ] } ], "source": [ "## Compute correction factor for CubEOT\n", + "aai_agg_emdat = 1000*3073582.5 # taken from EM-DAT: Guha-Sapir, D.: EM-DAT, CRED / UCLouvain, Brussels, Belgium, www.emdat.be, (last access: 13 November 2021), 2021.\n", + "\n", "CubEOT_corr_fact = aai_agg_emdat/res_df.loc[\"CubEOT\",\"aai_agg\"]\n", "print(CubEOT_corr_fact)" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 29, "id": "a17292bb-05cd-401b-b6f3-9ad9a134ba5e", "metadata": { "execution": { @@ -5697,7 +859,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 30, "id": "eab122fa-3cc3-449c-8e6b-d43e759c8c50", "metadata": { "execution": { @@ -5742,7 +904,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 31, "id": "5ec861d6-a7ed-4d61-92d8-1cd022f8e9cc", "metadata": { "execution": { @@ -5754,16 +916,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/openpyxl/styles/stylesheet.py:226: UserWarning: Workbook contains no default style, apply openpyxl's default\n", - " warn(\"Workbook contains no default style, apply openpyxl's default\")\n" - ] - } - ], + "outputs": [], "source": [ "#read EMDAT data\n", "fnemdat = 'emdat_EU_1960_2022_ETC.xlsx'\n", @@ -5785,7 +938,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 32, "id": "c85125a4-fd2c-4a7f-b06a-4de1ee471f08", "metadata": { "execution": { @@ -5797,58 +950,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:19: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_start = pd.to_datetime(dft_start,format='YYYY-MM-DD')[0]\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_71424/2192775261.py:20: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", - " dti_end= pd.to_datetime(dft_end,format='YYYY-MM-DD')[0]\n" - ] - } - ], + "outputs": [], "source": [ "#get days of actual storms\n", "strm_idx = ETC_small['Event Name'].unique() #storm event names\n", @@ -5886,7 +988,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 33, "id": "ad2b7c79-aef9-44d2-a418-632f159a3ca8", "metadata": { "execution": { @@ -5898,22 +1000,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-28 11:47:53,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-28 11:47:57,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - } - ], + "outputs": [], "source": [ "#Compute statistics with respect to EM-DAT events\n", "impflist = ['CubEOT','Sw2010']\n", @@ -5978,7 +1065,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 34, "id": "6d945e8e-4633-43cf-98e6-523b1659b96d", "metadata": { "execution": { @@ -6120,7 +1207,7 @@ "Xynthia 6.940000e+08 7.550000e+09 4.170000e+08 7.550000e+09" ] }, - "execution_count": 29, + "execution_count": 34, "metadata": {}, "output_type": "execute_result" } @@ -6131,7 +1218,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 35, "id": "90afa4a6-f805-4478-bdb3-47d20995d871", "metadata": { "execution": { @@ -6166,7 +1253,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 36, "id": "f8201619-4277-49a5-b0bf-fd7d1b1d256c", "metadata": { "execution": { @@ -6203,7 +1290,7 @@ "source": [ "## Damage calculation\n", "Use stack=True to stack model members on top of each other, set stack=False to consider each member separately.\n", - "Use savehaz, saveimpcsv, saveimpmat to save hazards or/and imapcts.\n", + "Use savehaz, saveimpcsv, saveimpmat to save hazards or/and impacts.\n", "1) Loop over impact functions\n", "2) Loop over scenarios\n", "3) Loop over climate models\n", @@ -6212,7 +1299,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 47, "id": "c384ad5e-2d3c-4644-8bc4-04293257edc3", "metadata": { "execution": { @@ -6230,8 +1317,12 @@ "#climate models\n", "#modlist_allscen represents GCMs for which at least 3 members for scenarios ssp126, ssp245, ssp357, and ssp585 are available\n", "#modlist_ssp585 contains the GCM names for which only at least one member of the ssp585 is available\n", - "modlist = modlist_allscen[:4]#+modlist_ssp585\n", "\n", + "modlist_allscen = ['CanESM5','CNRM-CM6-1','CNRM-ESM2-1','EC-Earth3-Veg','EC-Earth3-Veg-LR','IPSL-CM6A-LR','MIROC-ES2L',\n", + " 'UKESM1-0-LL','MRI-ESM2-0','FGOALS-g3','ACCESS-ESM1-5','MIROC6','MPI-ESM1-2-LR','KACE-1-0-G']\n", + "modlist_ssp585 = ['AWI-CM-1-1-MR','BCC-CSM2-MR','CNRM-CM6-1-HR','EC-Earth3','EC-Earth3-CC','HadGEM3-GC31-LL',\n", + " 'GISS-E2-1-G','GFDL-CM4','CMCC-CM2-SR5','CMCC-ESM2','HadGEM3-GC31-MM','NESM3','MPI-ESM1-2-HR','INM-CM4-8','INM-CM5-0','ACCESS-CM2']\n", + "modlist = modlist_allscen[:4] #modlist used for calculations\n", "#scenarios\n", "scen_used= ['historical','ssp126','ssp245','ssp370','ssp585']\n", "#scen_used= ['historical','ssp585']\n", @@ -6277,7 +1368,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 48, "id": "40fb7c32-b4d1-43ed-ac31-9514c8fec44a", "metadata": { "execution": { @@ -6310,7 +1401,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 49, "id": "bec09316-3d9f-4c91-b131-9a641a5822a5", "metadata": { "execution": { @@ -6322,74 +1413,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08311566699995865\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0817263339999954\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08336274999999205\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0656817500000102\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06836987500003033\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06312700000000859\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06253812500000322\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06816337499998326\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06373341599999094\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06081966699997565\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06609133299997438\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06236216700000341\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06606841699999677\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0719252499999925\n", - "Computed impacts for CanESM5, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0630985829999986\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08434541600001921\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08331304199998613\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08273641599998882\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09069308300001921\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08079683300002216\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08295166599998538\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08663074999998344\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08053350000000137\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08191041700001733\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0920070829999986\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0871764160000339\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08163983399998642\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.1154730000000086\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08384462499998335\n", - "Computed impacts for CNRM-CM6-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08078991700000415\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08385591699999395\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08475795900000094\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08456891600002336\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07501262499999939\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07138620899996795\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06866237499997396\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08145633399999497\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07523149999997258\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07576358299996855\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07395116700001836\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06779779100003225\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.06956945799998948\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08138087500003621\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0714784170000371\n", - "Computed impacts for CNRM-ESM2-1, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07554870799998525\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09719433399999389\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09335504199998468\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09688354099995422\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.10981912500000135\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08605412499997556\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07447049999996125\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08977704099999073\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08861058299999058\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07707679100002451\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08917566600001692\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.08554370799998878\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.07315995799996244\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.09316820800000869\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0956266670000332\n", - "Computed impacts for EC-Earth3-Veg, historical, ssp126, ssp245, ssp370, ssp585, EU, Sw2010, CubEOT: 0.0772387500000491\n" - ] - } - ], + "outputs": [], "source": [ "##main calculation cell.\n", "\n", @@ -6513,7 +1537,7 @@ " mkdir(results_folder+'impact/')\n", " imp.write_sparse_csr(results_folder+'impact/'+savenameimp+'.npz')\n", " time_delta_past = timer() - start_time\n", - " print(\"Computed impacts for \"+modname+\", \"+\", \".join(scen_used)+\", \"+\", \".join(reglist)+\", \"+\", \".join(impf_dict.keys())+\": \"+str(time_delta_past))\n", + " #print(\"Computed impacts for \"+modname+\", \"+\", \".join(scen_used)+\", \"+\", \".join(reglist)+\", \"+\", \".join(impf_dict.keys())+\": \"+str(time_delta_past))\n", " ncdf.close()\n", "\n", "res_df = res_df.astype(np.float64)" @@ -6529,7 +1553,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 50, "id": "69daa08b-181c-4db3-9a74-98aab83b9f40", "metadata": { "execution": { @@ -6541,980 +1565,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-13 11:08:32,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-13 11:08:32,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:34,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:37,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:38,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:41,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:42,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:08:45,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - } - ], + "outputs": [], "source": [ "## First, import impact data\n", "#select simulation\n", @@ -7525,15 +1576,13 @@ "reglist = ['EU']+regions4\n", "periods = ['historical','ssp585']\n", "impf_namelist = ['CubEOT','Sw2010']\n", + "stack = True\n", "\n", "bnSWM_proc = 'qt98pst_mask_abs15_cutarea1-5E5_gst1-00_bias_corrWG10_SWM_br_day_EU_winE'\n", "\n", "#initiate df to save results\n", "metrics = ['aai_agg',1,10,15,30] # impact metrics to be computed, select aai_agg for Average Annual Damage, and integers for rps\n", - "#metnames = ['rp'+str(rp) for rp in metrics if rp != 'aai_agg']\n", - "#if 'aai_agg' in metrics:\n", - "# metnames.append('aai_agg')\n", - "#iterables = [metnames,periods,impf_namelist]\n", + "\n", "metddict = {}\n", "for metric in metrics:\n", " if metric!= 'aai_agg':\n", @@ -7567,14 +1616,6 @@ " imp = Impact()\n", " imp = imp.from_csv(results_folder+'impact/'+savenameimp+'.csv')\n", "\n", - " #for idm, metric in enumerate(metrics):\n", - " # if metric == 'aai_agg':\n", - " # stat = imp.aai_agg\n", - " # else:\n", - " # stat = imp.calc_freq_curve(return_per=metric).impact\n", - " # res_df.loc[modname,(metnames[idm],period,impfname)] = stat\n", - " # #reg_df.loc[modname,(reg,metnames[idm],period,impf)] = stat\n", - "\n", " for metric, metname in metddict.items():\n", " if metric == 'aai_agg':\n", " stat = imp.aai_agg\n", @@ -7592,7 +1633,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 51, "id": "a5f8c30b-a2d5-43e1-a6dd-215a4c1f6489", "metadata": { "execution": { @@ -7605,23 +1646,13 @@ "tags": [] }, "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_88025/63872412.py:51: UserWarning: The palette list has more values (10) than needed (3), which may not be intended.\n", - " sns.boxplot(ax=ax1,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n", - "/var/folders/y5/t1z41tgj7dv50sm2_29dn8740000gp/T/ipykernel_88025/63872412.py:52: UserWarning: The palette list has more values (10) than needed (3), which may not be intended.\n", - " sns.boxplot(ax=ax2,x=\"region\",order=sel_reg, y=\"value\",data=stacked_all_met,hue=\"metric\",hue_order=met_set,palette=cpal)#palette=\"colorblind\"\n" - ] - }, { "data": { "text/plain": [ - "[]" + "[]" ] }, - "execution_count": 50, + "execution_count": 51, "metadata": {}, "output_type": "execute_result" }, @@ -7744,7 +1775,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 52, "id": "e67e5c70-5f37-4de7-a8ab-e4089457482d", "metadata": { "execution": { @@ -7787,7 +1818,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 53, "id": "f7d48f37-9df9-4ac2-bb4f-7428ba88f297", "metadata": { "execution": { @@ -7799,140 +1830,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-13 12:57:22,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "1.4999986888142303e-06\n", - "2024-03-13 12:57:22,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2919990695081651e-06\n", - "2024-03-13 12:57:22,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "8.329989213962108e-07\n", - "2024-03-13 12:57:22,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.333999534836039e-06\n", - "2024-03-13 12:57:22,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.375001374981366e-06\n", - "2024-03-13 12:57:22,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.45800004247576e-06\n", - "2024-03-13 12:57:22,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.207999957841821e-06\n", - "2024-03-13 12:57:22,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0839994502021e-06\n", - "2024-03-13 12:57:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.375001374981366e-06\n", - "2024-03-13 12:57:22,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "8.750012057134882e-07\n", - "2024-03-13 12:57:22,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4170000213198364e-06\n", - "2024-03-13 12:57:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:22,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:22,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.8330010789213702e-06\n", - "2024-03-13 12:57:22,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:22,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0419989848742262e-06\n", - "2024-03-13 12:57:22,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "9.57999873207882e-07\n", - "2024-03-13 12:57:22,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1249994713580236e-06\n", - "2024-03-13 12:57:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4170000213198364e-06\n", - "2024-03-13 12:57:22,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.541999154142104e-06\n", - "2024-03-13 12:57:22,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:23,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1669999366858974e-06\n", - "2024-03-13 12:57:23,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3330009096534923e-06\n", - "2024-03-13 12:57:23,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2920008884975687e-06\n", - "2024-03-13 12:57:23,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1669999366858974e-06\n", - "2024-03-13 12:57:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.5420009731315076e-06\n", - "2024-03-13 12:57:23,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0419989848742262e-06\n", - "2024-03-13 12:57:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "9.57999873207882e-07\n", - "2024-03-13 12:57:23,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2919990695081651e-06\n", - "2024-03-13 12:57:23,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0000003385357559e-06\n", - "2024-03-13 12:57:23,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2910004443256184e-06\n", - "2024-03-13 12:57:23,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1249994713580236e-06\n", - "2024-03-13 12:57:23,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "8.329989213962108e-07\n", - "2024-03-13 12:57:23,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2090004020137712e-06\n", - "2024-03-13 12:57:23,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.5420009731315076e-06\n", - "2024-03-13 12:57:23,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.583999619469978e-06\n", - "2024-03-13 12:57:23,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.333999534836039e-06\n", - "2024-03-13 12:57:23,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.5410005289595574e-06\n", - "2024-03-13 12:57:23,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1669999366858974e-06\n", - "2024-03-13 12:57:23,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.45800004247576e-06\n", - "2024-03-13 12:57:23,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2919990695081651e-06\n", - "2024-03-13 12:57:23,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0410003596916795e-06\n", - "2024-03-13 12:57:23,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1249994713580236e-06\n", - "2024-03-13 12:57:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2089985830243677e-06\n", - "2024-03-13 12:57:23,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2499986041802913e-06\n", - "2024-03-13 12:57:23,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4999986888142303e-06\n", - "2024-03-13 12:57:23,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "7.920007192296907e-07\n", - "2024-03-13 12:57:23,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1249994713580236e-06\n", - "2024-03-13 12:57:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.2500004231696948e-06\n", - "2024-03-13 12:57:24,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4590004866477102e-06\n", - "2024-03-13 12:57:24,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4589986676583067e-06\n", - "2024-03-13 12:57:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.333999534836039e-06\n", - "2024-03-13 12:57:24,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.4170000213198364e-06\n", - "2024-03-13 12:57:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.3749995559919626e-06\n", - "2024-03-13 12:57:24,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "5.04200033901725e-06\n", - "2024-03-13 12:57:24,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0839994502021e-06\n", - "2024-03-13 12:57:24,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.0830008250195533e-06\n", - "2024-03-13 12:57:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "1.1669999366858974e-06\n", - "2024-03-13 12:57:24,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "9.590003173798323e-07\n" - ] - } - ], + "outputs": [], "source": [ "## Load damage data and compute spatial distribution of the damage metrics for each GCM\n", "## Spatial maps are stored in a dict structure\n", @@ -7962,7 +1860,7 @@ " imp_met = imp_met.reshape((imp_met.shape[1],))\n", "\n", " time_delta_past = timer() - start_time\n", - " print(time_delta_past)\n", + " #print(time_delta_past)\n", " data_dict[scen][met][modname] = imp_met\n", "\n", " del imp_met\n", @@ -7971,7 +1869,7 @@ }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 54, "id": "b9e9036a-870a-4174-8e89-507529e648ea", "metadata": { "execution": { @@ -7984,23 +1882,6 @@ "tags": [] }, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-13 12:57:25,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2754: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_val['geometry'] = gpd.GeoSeries(\n", - "/Users/lseverino/Documents/PhD/workspace/climada_python/climada/util/coordinates.py:2497: FutureWarning: You are adding a column named 'geometry' to a GeoDataFrame constructed without an active geometry column. Currently, this automatically sets the active geometry column to 'geometry' but in the future that will no longer happen. Instead, either provide geometry to the GeoDataFrame constructor (GeoDataFrame(... geometry=GeoSeries()) or use `set_geometry('geometry')` to explicitly set the active geometry column.\n", - " df_poly['geometry'] = apply_box(points_df)\n" - ] - }, { "data": { "image/png": "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", @@ -8152,7 +2033,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 55, "id": "36d0cacc-327a-4a2d-9f7c-011856d4498e", "metadata": { "execution": { @@ -8164,60016 +2045,9 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2024-03-13 11:39:30,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:30,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:31,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:34,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:35,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:37,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:38,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:41,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:42,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:45,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:47,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:48,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:49,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:50,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:51,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:52,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:53,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:54,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:55,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:56,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:57,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:58,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:39:59,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:00,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:01,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:03,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:04,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:05,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:06,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:07,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:08,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:09,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:10,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:11,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:12,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:15,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:16,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:17,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:18,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:19,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:20,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:22,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:23,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:24,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:26,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:27,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:29,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:30,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:31,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:33,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:34,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:35,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:36,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:37,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:38,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:40,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:41,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:42,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:43,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:45,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:47,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:48,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:49,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:50,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:51,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:53,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:54,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:55,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:57,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:40:59,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:00,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:03,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:04,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:05,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:06,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:07,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:08,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:09,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:10,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:12,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:13,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:14,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:15,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:17,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:18,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:19,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:20,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:22,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:23,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:25,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:26,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:27,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:30,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:32,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:33,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:34,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:35,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:36,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:37,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:39,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:40,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:41,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:42,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:45,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:46,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:47,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:48,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:50,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:52,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:53,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:54,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:55,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:56,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:58,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:41:59,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:00,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:01,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:02,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:03,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:04,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:05,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:06,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:07,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:08,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:09,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:10,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:12,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:14,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:15,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:16,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:17,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:19,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:20,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:22,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:23,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:24,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:26,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:27,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:28,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:29,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:30,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:33,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:34,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:35,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:38,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:39,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:40,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:41,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:42,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:45,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:46,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:47,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:48,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:49,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:51,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:52,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:54,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:55,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:56,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:57,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:42:59,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:00,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:01,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:02,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:03,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:04,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:06,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:07,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:08,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:09,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:12,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:14,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:15,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:16,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:17,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:18,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:19,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:20,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:21,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:23,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:24,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:25,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:26,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:27,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:29,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:32,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:33,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:35,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:36,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:37,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:38,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:39,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:40,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:41,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:42,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:43,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:45,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:46,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:47,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:48,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:50,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:52,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:53,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:54,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:55,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:56,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:57,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:43:59,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:00,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:01,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:02,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:03,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:04,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:05,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:06,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:07,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:08,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:09,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:10,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:11,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:12,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:13,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:14,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:15,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:16,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:17,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:18,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:19,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:20,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:21,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:22,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:23,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:24,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:25,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:26,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:27,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:28,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:29,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:30,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:31,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:32,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:33,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:34,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:36,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:37,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:38,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:41,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:43,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:44,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:45,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:46,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:47,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:48,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:49,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:50,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:51,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:52,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:55,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:56,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:57,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:58,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:44:59,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:00,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:01,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:02,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:04,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:05,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:06,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:07,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:08,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:09,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:10,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:12,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:14,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:15,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:16,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:17,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:18,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:19,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:20,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:22,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:24,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:25,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:26,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:27,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:28,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:30,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:32,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:33,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:34,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:37,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:38,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:39,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:40,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:41,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:42,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:43,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:45,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:47,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:48,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:49,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:50,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:51,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:52,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:53,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:54,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:55,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:56,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:57,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:45:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:00,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:01,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:02,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:04,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:05,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:06,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:07,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:08,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:09,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:11,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:13,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:15,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:16,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:17,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:18,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:19,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:21,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:22,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:24,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:25,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:26,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:27,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:28,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:29,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:30,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:31,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:34,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:35,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:36,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:37,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:38,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:40,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:42,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:43,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:45,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:46,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:47,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:48,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:49,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:50,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:51,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:53,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:54,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:55,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:57,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:46:59,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:00,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:01,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:02,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:03,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:04,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:05,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:06,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:07,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:08,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:09,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:10,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:11,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:12,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:13,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:14,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:16,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:17,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:18,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:20,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:21,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:22,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:23,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:24,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:26,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:27,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:31,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:32,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:33,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:36,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:37,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:38,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:39,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:40,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:41,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:42,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:43,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:44,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:47,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:48,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:49,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:51,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:52,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:53,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:55,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:57,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:58,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:47:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:00,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:02,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:04,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:05,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:06,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:07,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:08,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:09,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:10,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:11,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:12,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:13,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:14,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:15,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:16,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:17,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:19,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:20,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:21,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:22,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:23,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:24,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:25,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:26,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:28,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:31,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:33,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:34,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:35,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:37,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:39,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:40,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:41,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:42,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:43,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:44,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:45,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:47,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:48,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:51,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:53,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:54,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:55,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:56,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:57,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:58,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:48:59,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:00,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:01,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:04,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:05,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:06,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:07,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:08,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:09,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:10,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:11,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:12,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:13,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:14,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:15,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:16,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:17,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:19,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:20,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:21,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:22,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:23,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:24,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:25,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:26,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:28,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:30,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:31,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:32,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:35,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:37,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:38,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:39,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:40,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:41,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:42,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:45,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:46,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:47,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:48,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:50,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:54,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:55,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:56,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:57,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:49:59,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:02,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:04,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:05,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:06,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:07,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:08,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:09,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:10,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:12,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:13,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:14,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:15,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:16,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:17,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:18,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:19,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:20,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:22,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:23,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:24,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:26,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:27,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:28,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:29,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:30,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:31,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:32,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:33,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:34,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:35,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:37,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:38,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:40,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:41,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:42,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:43,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:44,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:45,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:47,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:48,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:49,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:50,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:51,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:52,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:53,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:54,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:55,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:56,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:58,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:50:59,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:00,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:01,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:02,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:03,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:04,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:05,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:06,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:07,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:08,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:09,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:10,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:11,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:12,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:13,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:14,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:16,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:17,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:18,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:20,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:21,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:22,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:23,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:24,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:25,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:26,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:27,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:28,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:29,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:32,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:33,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:34,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:36,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:37,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:38,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:40,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:43,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:44,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:45,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:46,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:47,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:48,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:49,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:50,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:52,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:54,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:58,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:51:59,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:00,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:01,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:02,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:04,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:05,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:06,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:07,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:09,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:11,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:13,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:14,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:15,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:16,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:17,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:19,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:20,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:21,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:22,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:23,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:24,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:25,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:27,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:28,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:29,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:30,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:31,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:32,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:34,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:35,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:36,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:37,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:39,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:42,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:43,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:44,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:45,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:46,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:47,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:48,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:50,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:51,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:52,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:53,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:54,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:55,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:56,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:57,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:58,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:52:59,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:00,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:01,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:03,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:04,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:05,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:06,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:08,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:09,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:10,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:11,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:12,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:13,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:14,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:15,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:16,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:17,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:18,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:19,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:20,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:21,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:22,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:23,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:26,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:27,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:28,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:29,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:30,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:31,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:32,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:33,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:34,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:35,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:36,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:40,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:41,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:42,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:44,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:46,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:47,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:48,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:50,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:51,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:52,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:53,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:54,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:55,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:56,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:57,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:53:59,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:01,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:02,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:03,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:04,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:05,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:06,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:09,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:10,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:12,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:13,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:14,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:15,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:17,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:18,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:19,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:20,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:21,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:22,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:24,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:25,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:26,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:27,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:28,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:29,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:31,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:32,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:33,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:34,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:36,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:37,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:38,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:39,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:40,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:41,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:42,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:43,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:44,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:45,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:46,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:47,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:48,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:49,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:50,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:51,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:52,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:53,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:54,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:56,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:57,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:58,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:54:59,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:00,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:01,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:02,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:04,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:05,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:06,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:07,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:08,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:09,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:12,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:13,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:14,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:15,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:16,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:17,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:19,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:20,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:21,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:22,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:25,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:27,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:29,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:30,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:31,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:33,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:34,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:36,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:37,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:38,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:39,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:40,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:42,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:43,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:44,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:45,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:46,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:47,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:48,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:49,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:50,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:51,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:52,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:53,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:54,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:55,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:56,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:57,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:58,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:55:59,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:00,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:01,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:02,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:03,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:04,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:05,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:06,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:07,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:08,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:09,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:10,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:11,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:12,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:13,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:14,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:16,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:17,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:18,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:19,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:20,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:21,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:22,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:25,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:27,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:28,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:29,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:30,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:31,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:32,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:33,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:34,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:35,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:37,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:38,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:39,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:40,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:41,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:43,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 11:56:44,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:54,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:55,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:56,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:57,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:58,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:12:59,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:24,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:25,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:26,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:27,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:28,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:29,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:31,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:32,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:33,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:34,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:35,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:36,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:37,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:38,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:39,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:40,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:41,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:43,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:44,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:45,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:46,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:48,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:49,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:50,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:51,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:52,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:53,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:54,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:55,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:56,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:57,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:58,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:18:59,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:00,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:01,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:02,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:03,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:04,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:05,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:06,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:07,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:08,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:09,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:10,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:11,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:12,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:13,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:14,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:15,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:16,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:17,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:18,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:19,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:23,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:24,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:25,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:26,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:28,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:29,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:30,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:31,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:34,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:35,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:36,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:37,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:39,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:40,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:41,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:42,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:43,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:45,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:46,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:47,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:49,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:50,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:51,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:52,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:53,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:54,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:55,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:56,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:57,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:58,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:19:59,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:00,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:01,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:02,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:03,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:04,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:05,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:06,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:07,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:08,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:09,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:10,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:11,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:12,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:13,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:14,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:15,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:16,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:17,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:18,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:19,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:20,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:21,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:22,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:23,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:24,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:25,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:26,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:27,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:28,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:29,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:30,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:31,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:32,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:34,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:35,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:36,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:37,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,204 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:38,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:39,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:40,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:41,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:42,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:43,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:44,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:45,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:46,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:47,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:48,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:49,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:50,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:51,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:52,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:53,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:54,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:55,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:56,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:57,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:58,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:20:59,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:00,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:01,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:02,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:03,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:04,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:05,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:06,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:07,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:08,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:09,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:10,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:11,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:12,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:13,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:14,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:15,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:16,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:17,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:19,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:20,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:21,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:22,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:23,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:24,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:25,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:26,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:27,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:28,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:29,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:30,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:31,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:32,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:33,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:34,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:35,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:36,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:37,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:38,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:39,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:40,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:41,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:42,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:43,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:44,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:45,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:46,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:48,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:50,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:51,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:52,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:53,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:54,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:55,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:56,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:57,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:58,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:21:59,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,785 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:00,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:01,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:02,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:03,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:04,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:06,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:07,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:08,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:09,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:10,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:11,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:12,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:13,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:14,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:15,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:16,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:17,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:18,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:19,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,127 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:20,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:21,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:22,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:23,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:24,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:25,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:27,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:28,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:29,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:30,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:31,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:32,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:33,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:34,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:35,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:37,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,020 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:38,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:39,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,160 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:40,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:41,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,425 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:42,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,871 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:44,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:45,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:46,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:47,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:48,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,783 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:49,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:50,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,500 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:51,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:52,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:53,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,042 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:54,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,797 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:55,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,661 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:56,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:57,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:58,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:22:59,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:00,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:01,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:02,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,566 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:03,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:04,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:05,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:06,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,274 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,326 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:07,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,565 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,793 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:08,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,065 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,379 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:09,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:10,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:11,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:12,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,086 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:13,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,061 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,556 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:14,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,453 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:15,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:16,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:17,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,236 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,811 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:18,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:19,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,052 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:20,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,535 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,579 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,908 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:21,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,152 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,176 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,341 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,362 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,463 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,567 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,699 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,835 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:22,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,782 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,883 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:23,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,090 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,399 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:24,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,350 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,421 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:25,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,588 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:26,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,267 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:27,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,695 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:28,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,041 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:29,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,544 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,904 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:30,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:31,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:32,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,255 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,663 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:33,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,318 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,597 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:34,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:35,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,970 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:36,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,213 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,675 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,697 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:37,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,147 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,338 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,717 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:38,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,032 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,613 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:39,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,283 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,643 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:40,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,250 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,480 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:41,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,306 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,457 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,600 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:42,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,768 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,911 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:43,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,232 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,516 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,606 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,631 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:44,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,489 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,817 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:45,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:46,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,102 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,474 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,703 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,758 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:47,996 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,108 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,301 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,398 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,753 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:48,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,183 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,271 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,349 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,439 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,560 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,706 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,861 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:49,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,044 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:50,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,122 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,172 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,197 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,252 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,446 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,542 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,807 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,855 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:51,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,174 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,226 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,304 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,754 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:52,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,097 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,276 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,409 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,433 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,529 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,589 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,766 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,791 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,919 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,972 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:53,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,240 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,383 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,917 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:54,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,009 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,034 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,135 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,188 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,310 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,436 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,727 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,843 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:55,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,128 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,384 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,408 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,511 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,653 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,828 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,856 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:56,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,053 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,080 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,246 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,345 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,507 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,630 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,656 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,707 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:57,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,315 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,635 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,722 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:58,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,487 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,562 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,677 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,839 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,900 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,962 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:23:59,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,096 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,214 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,323 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,354 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,466 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,561 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,672 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:00,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,013 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,125 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,262 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,313 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,683 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,761 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,884 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:01,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,022 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,116 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,452 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,476 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,499 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,538 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,582 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,694 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,928 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:02,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,334 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,541 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,587 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,679 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,750 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,837 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,903 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,926 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:03,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,014 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,370 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,397 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,731 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,809 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,939 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:04,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,006 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,027 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,098 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,149 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,196 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,266 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,373 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,592 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,614 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,905 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,960 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:05,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,088 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,115 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,853 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:06,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,019 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,067 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,087 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,259 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,364 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,394 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,442 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,609 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,800 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:07,988 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,010 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,265 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,353 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,515 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,578 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,670 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,770 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:08,999 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,028 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,105 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,129 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,201 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,228 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,282 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,356 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,424 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,445 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,512 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,794 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,886 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,914 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,937 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:09,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,029 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,078 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,121 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,145 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,193 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,242 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,290 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,419 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,649 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,696 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,805 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,873 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:10,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,074 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,120 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,185 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,203 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,366 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,478 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,501 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,616 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,667 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,858 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,906 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,932 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:11,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,063 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,237 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,472 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,546 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,591 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,682 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,704 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,892 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,933 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:12,982 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,045 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,069 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,189 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,215 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,264 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,321 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,372 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,477 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,502 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,718 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:13,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,192 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,217 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,329 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,374 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,396 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,440 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,533 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,610 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,714 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,738 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,973 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:14,998 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,100 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,123 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,223 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,291 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,357 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,381 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,422 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,447 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,536 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,724 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,747 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,838 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,859 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,879 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,954 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:15,980 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,076 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,182 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,281 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,309 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,361 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,387 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,412 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,465 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,492 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,521 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,621 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,644 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,668 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,733 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,777 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,823 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,897 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:16,992 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,142 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,227 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,287 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,355 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,426 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,455 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,509 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,534 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,559 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,876 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:17,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,132 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,157 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,179 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,229 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,272 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,324 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,343 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,464 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,485 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,523 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,625 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,666 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,781 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,827 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,945 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:18,994 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,077 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,104 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,284 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,308 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,468 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,662 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,701 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,877 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:19,984 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,159 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,247 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,569 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,594 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,744 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,820 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,875 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,951 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:20,975 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,049 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,133 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,177 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,206 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,257 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,278 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,368 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,393 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,415 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,434 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,458 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,598 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,671 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,692 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,712 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,732 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,757 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,872 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,947 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:21,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,031 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,155 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,181 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,233 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,316 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,342 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,420 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,449 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,497 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,545 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,563 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,647 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,698 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,721 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,742 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,769 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,799 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,844 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,887 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:22,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,005 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,030 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,050 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,091 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,150 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,198 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,222 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,293 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,531 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,584 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,633 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,737 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,818 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:23,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,173 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,239 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,294 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,317 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,336 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,382 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,427 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,522 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,570 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,639 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,680 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,728 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,749 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,816 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,865 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,915 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:24,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,071 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,099 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,151 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,178 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,205 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,330 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,359 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,593 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,612 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,638 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,739 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,762 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,787 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,810 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,830 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,901 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,950 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:25,974 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,000 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,046 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,072 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,136 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,162 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,184 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,238 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,339 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,367 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,391 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,417 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,495 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,548 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,604 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,627 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,650 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,673 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,700 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,723 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,748 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,822 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,849 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:26,978 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,002 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,118 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,144 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,230 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,253 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,277 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,300 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,365 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,388 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,410 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,508 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,622 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,645 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,690 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,764 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,790 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,842 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,869 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,894 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,929 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,955 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:27,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,056 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,171 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,199 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,251 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,333 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,407 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,461 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,510 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,550 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,573 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,646 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,669 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,691 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,765 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,789 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,851 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,878 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,902 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,967 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:28,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,036 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,106 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,126 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,191 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,212 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,260 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,335 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,363 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,390 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,443 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,471 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,572 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,599 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,624 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,648 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,726 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,868 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,896 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,921 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,946 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:29,971 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,023 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,066 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,163 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,209 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,258 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,280 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,325 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,369 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,456 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,482 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,504 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,524 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,553 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,575 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,596 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,617 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,641 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,659 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,681 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,705 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,752 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,775 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,802 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,831 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,860 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,913 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:30,989 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,017 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,068 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,095 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,119 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,169 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,298 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,327 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,481 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,590 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,615 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,640 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,664 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,759 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,825 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,847 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,866 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,885 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,910 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,936 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,958 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:31,981 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,003 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,051 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,073 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,092 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,156 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,180 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,295 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,402 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,428 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,454 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,506 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,532 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,585 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,658 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,708 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,814 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,840 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,918 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,940 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,961 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:32,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,026 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,047 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,075 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,101 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,146 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,263 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,288 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,311 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,351 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,376 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,400 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,423 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,448 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,470 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,543 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,583 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,693 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,746 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,773 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,798 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,824 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,848 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,899 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,925 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,949 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:33,977 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,001 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,054 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,114 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,140 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,194 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,218 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,249 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,275 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,302 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,331 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,435 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,479 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,498 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,618 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,637 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,709 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,756 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,776 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,795 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,815 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,863 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,891 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,941 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,963 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:34,990 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,038 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,130 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,154 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,202 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,231 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,256 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,279 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,307 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,332 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,386 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,411 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,441 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,493 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,528 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,554 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,632 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,655 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,734 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,788 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,812 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,846 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,870 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,895 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,922 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,944 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,964 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:35,986 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,016 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,039 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,093 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,138 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,211 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,234 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,312 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,340 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,360 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,380 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,404 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,469 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,494 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,517 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,539 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,558 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,580 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,620 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,688 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,735 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,760 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,784 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,806 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,832 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,857 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,935 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,959 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:36,985 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,011 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,109 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,134 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,164 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,190 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,216 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,244 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,268 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,299 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,392 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,418 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,450 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,491 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,514 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,557 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,605 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,678 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,711 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,736 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,778 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,889 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,916 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,942 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:37,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,012 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,059 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,079 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,103 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,124 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,148 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,221 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,243 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,273 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,303 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,328 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,385 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,413 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,438 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,513 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,537 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,568 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,623 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,651 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,729 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,755 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,779 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,808 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,836 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,867 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,890 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,923 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,948 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,969 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:38,991 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,015 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,037 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,058 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,082 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,107 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,131 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,153 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,175 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,200 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,225 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,248 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,286 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,305 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,337 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,358 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,473 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,496 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,518 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,540 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,564 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,586 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,608 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,626 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,652 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,676 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,719 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,743 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,796 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,821 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,845 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,874 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,898 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,927 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,953 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:39,976 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,004 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,033 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,057 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,167 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,219 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,346 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,403 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,429 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,451 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,475 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,503 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,525 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,555 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,581 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,611 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,636 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,684 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,713 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,741 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,767 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,792 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,819 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,841 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,862 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,912 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,934 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,966 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:40,993 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,018 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,043 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,070 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,094 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,117 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,141 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,166 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,186 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,210 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,245 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,292 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,352 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,377 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,405 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,432 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,488 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,520 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,549 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,576 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,607 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,634 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,660 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,687 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,716 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,774 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,803 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,833 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,864 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,888 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,924 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,952 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:41,979 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,007 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,035 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,064 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,089 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,111 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,143 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,165 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,187 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,208 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,270 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,297 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,322 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,378 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,406 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,430 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,459 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,483 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,530 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,571 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,601 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,654 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,674 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,702 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,725 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,780 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,826 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,881 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,930 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,957 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:42,987 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,021 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,048 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,083 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,112 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,170 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,224 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,254 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,285 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,314 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,347 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,375 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,401 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,431 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,460 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,486 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,519 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,547 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,577 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,603 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,628 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,685 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,715 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,740 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,763 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,786 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,813 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,834 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,854 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,893 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,920 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,943 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,965 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:43,997 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,024 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,060 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,084 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,158 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,195 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,220 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,241 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,269 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,296 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,320 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,344 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,371 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,395 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,416 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,444 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,467 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,490 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,526 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,551 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,602 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,629 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,657 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,689 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,720 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,745 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,772 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,801 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,852 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,880 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,909 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,938 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,968 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:44,995 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,025 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,055 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,081 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,113 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,139 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,168 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,207 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,235 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,261 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,289 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,319 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,348 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,389 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,414 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,437 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,462 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,484 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,505 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,527 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,552 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,574 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,595 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,619 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,642 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,665 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,686 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,710 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,730 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,751 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,771 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,804 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,829 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,850 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,882 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,907 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,931 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,956 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:45,983 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,008 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,040 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,062 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,085 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,110 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,137 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n", - "2024-03-13 12:24:46,161 - climada.engine.impact - WARNING - The Impact.tot_value attribute is deprecated.Use Exposures.affected_total_value to calculate the affected total exposure value based on a specific hazard intensity threshold\n" - ] - } - ], + "outputs": [], "source": [ - "from random import choices\n", + "from random import choices, seed\n", "\n", "#stacked EFC, for the whole multimodel ensemble, with bootstrap, first subsampling then stacking, to have equal rpz of each GCM\n", "#select data\n", @@ -68195,6 +2069,7 @@ "#rps = np.arange(1,400)\n", "#rps = np.append(rps,[450,500,750,1000,1280,rp_max])\n", "rps = np.arange(1,rp_max)\n", + "seed(10) #set seed for reproducibility\n", "\n", "#efc lists\n", "efcs_past = []\n", @@ -68269,7 +2144,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 56, "id": "8d805c1b-0e6b-4af5-843d-51fb6f47fdf3", "metadata": { "execution": { @@ -68284,7 +2159,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA/MAAALHCAYAAADCYBKsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3xcd53v/9eZrlHvsuQq914TO7bjJE5PSAgkIXS49AV298L+7u5yN9uAS9kFFnZhgewCoYSQDYFUcAgOKS5pdtx7tyWrSzOaGU095/fHsSUrthNJlnQ00vv5eOjhmVM/Y1vSvOfbDMuyLEREREREREQka7icLkBERERERERE+kdhXkRERERERCTLKMyLiIiIiIiIZBmFeREREREREZEsozAvIiIiIiIikmUU5kVERERERESyjMK8iIiIiIiISJZRmBcRERERERHJMgrzIiIiIiIiIllGYV5EREREREQkyyjMn/GLX/yCT37ykyxbtgy/349hGNx///2Ddv2XX36Zt7/97ZSVleH3+5kxYwb/8A//QFdX16DdQ0RERERERMYGj9MFjBT33nsvx48fp6ysjHHjxnH8+PFBu/ZvfvMb7rnnHtxuN3feeSdVVVVs3LiRL33pSzz77LOsX78ev98/aPcTERERERGR0U0t82f893//N8eOHaO5uZlPfepTg3bdrq4uPvnJT2IYBhs3buSBBx7gm9/8Jps3b+Yzn/kMGzdu5N/+7d8G7X4iIiIiIiIy+inMn3HdddcxadKkPh/f1NTE5z73OaZNm4bf76esrIw777yTXbt29Tpu48aNtLS0cMcdd7B06dLu7YZh8OUvfxmAH/zgB1iWNTgvREREREREREY9hfkBOHz4MEuXLuU73/kO06ZN48///M+55ZZbWLduHStWrODll1/uPraxsRGAKVOmnHedoqIiiouLOX78OEeOHBm2+kVERERERCS7acz8AHzwgx+koaGBp59+muuvv757+7333suyZcv4+Mc/zo4dOwAoLy8H4OjRo+ddJxQK0d7eDsCBAweYOnXqMFQvIiIiIiIi2U4t8/30+uuvs2nTJj70oQ/1CvIAM2bM4OMf/zg7d+7s7m6/cuVKCgoKePTRR3n99dd7Hf/3f//33Y87OjqGvHYREREREREZHdQy308vvfQSAA0NDfzTP/3Tefv37dvX/ee8efPIy8vjW9/6Fh/72Me44ooruOuuu6iqqmLTpk1s2bKFWbNmsW/fPtxu93C+DBEREREREcliCvP91NbWBsBTTz3FU089ddHjotFo9+OPfvSjVFdX8y//8i889thjZDIZli1bxvr16/n617/Ovn37urvji4iIiIiIiLwVhfl+KigoAOA//uM/+OxnP9vn826++WZuvvnm87Z/4AMfwOVysWTJkkGrUUREREREREa3rBszn8lk+K//+i+uuuoqysrKCAQCTJo0iTvuuIPHHntsyO+/fPlyADZv3nzJ19q4cSPHjh3jpptuorCw8JKvJyIiIiIiImNDVoX59vZ2Vq9ezSc+8QlefPFFysrKmDdvHqlUiscee4yf//znQ17D5ZdfzvLly3nwwQd56KGHzttvmibPP/98r23hcPi84+rr6/nYxz6Gx+PhS1/60pDVKyIiIiIiIqOPYVmW5XQRfWGaJldddRUbNmzgne98J9/5zncYP3589/5Tp05x5MgR1qxZM6Dr//d//zcbNmwAYOfOnWzdupVVq1Yxbdo0AO644w7uuOMOwF5m7pprruH48eOsWLGCpUuXEggEOHHiBJs3b6a5uZl4PN597S9/+cv84he/YPXq1VRUVHDy5Ekee+wxYrEYP/rRj/jQhz40wL8VERERERERGYuyZsz8fffdx4YNG7jmmmt4+OGHcbl6dyoYP358r3DfXxs2bOCnP/1pr20bN25k48aNAEyePLk7zE+ZMoXXX3+db33rWzz66KP8+Mc/xu12M27cONasWcNdd93V6zorV67k+eef54knnqC9vZ3S0lJuueUW/uZv/obFixcPuGYREREREREZm7KmZX727Nns27ePDRs2sGrVKqfLEREREREREXFMVoT5gwcPMmPGDEpKSmhpaeHxxx/n4Ycf5vTp05SXl3PdddfxgQ98AL/f73SpIiIiIiIiIkMuK8L8r371K97znvewcuVKpkyZwgMPPHDeMbNmzWLdunVMmjTJgQpFREREREREhk9WjJk/ffo0AK+++iqbNm3iYx/7GPfeey9VVVVs2LCBT3ziE+zbt48777yTV1555bzx9ACJRIJEItH93DRN2traKC0txTCMYXstIiIiIiIikv0sy6Kzs5Pq6uoLZtChlhVhPhqNApBKpbjyyiv5r//6r+591157Lb/5zW9YvHgxW7Zs4amnnuK2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TE1NDU8++SS//vWv+dnPfsY999wzqscere9973t8/vOfp7S0lOrqanbv3s3PfvYzNmzYwMaNG3nggQf47ne/y7Rp06iqqmLPnj388Ic/ZPfu3bz88ssnDACtW7eOW265hc7OTkKhEDNmzKCjo4O1a9eydu1a7r//fr71rW8NuU1vby9XXXUVb7/9NoZhMG/ePDzP4zvf+Q5r165l5syZp/U11dfXc+utt2KaJgUFBVRXVxOJRDh8+DD/8i//wuOPP8769espKCgY9vYbN24ceKNg5syZ1NTUsGnTJu68804SiQT33nvv6X2ThThHZKj0bPNc2PsOJKJQUK63xSOw9n91QAfILNBT7I+XiEJLLfj8UFgFH/97uPoj1LW7PLKul+IskxXVw4T/93A9xe82xWjr0WXjM1MMbl0VGrcgH0/qvvTxhOKm5UEe/GCaBHkhhBDiAnH//ffz0EMPUVdXx8aNG6mvr+fqq6+mp6dn1MXpnn76adavX8+iRYs4cuQIu3fv5p133qG2tpaGhgb+9V//Fb9fv+b55Cc/yWuvvTZw29dee23IR2FhIQCbN2/m85//PEop/vmf/5n6+nreeecdGhoa+NM//VNisRgf+chHqK+vH/ac/v7v/56Pf/zjNDY2smHDBg4cOMCdd9550q+jq6uLm2++mbq6Oq6//nqOHDnCjh07ePfdd+ns7OSVV17h2muvHXKb++67j61bt9Le3s7OnTvZuHEjTU1NPPXUU4RCIT772c/S3d09qu/jaD344IM88sgjHD16lM2bN7N//36qq6vZuXMnd999Nw8//DAvvPACBw4cYPv27WzatIns7GzWrVvH73//+yH3VVdXx+23305XVxf/8A//QHt7O1u3bqWmpobXX3+dkpISvv3tb/Ob3/xmyO3+7u/+jrfffpuKigq2bdvGtm3bBr5XjY2N/PKXvzytryktLY2f/vSnNDc3DzwXd+3aRX19PZ/73Oc4fPgwX/7yl0/6PfnEJz5BU1MTGzZsoLGxkQceeACABx54ANd1T+t8hDhXJMyfbW/9Dp76d12h3jDAScK6x6CrVe9PzYIr7tShvV9PB/z+IX15/hr46Fegcj49MY/v/bYHyzK4bknwlFPjXU/xwpY4ta36F1DIb/CB5SFC/jOfUu96HpsOJviftRFe2xUnP9OiPM+HbclTSgghhLhQfOpT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", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA/MAAALHCAYAAADCYBKsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3hkZ333//eZqt6lVd/eu3e93etuvDY2BmMMPIAdOoQkP8iVwhOHJECAhEAghCeEBGLAjea4go29rrsua2/19q7VqtcZTS/n/P44u9LKW6zVSjoqn9d16dLonDMz33GR5jP3fX9vw7IsCxEREREREREZM1xOFyAiIiIiIiIiF0dhXkRERERERGSMUZgXERERERERGWMU5kVERERERETGGIV5ERERERERkTFGYV5ERERERERkjFGYFxERERERERljFOZFRERERERExhiFeREREREREZExRmFeREREREREZIxRmD/lvvvu4zOf+QzLly/H7/djGAb33nvvkD3+66+/znve8x5KSkrw+/3MmjWLr3zlK0Sj0SF7DhEREREREZkYPE4XMFrcc8891NXVUVJSQkVFBXV1dUP22A8//DB33nknbreb22+/nfLycjZv3szXvvY1nnvuOTZu3Ijf7x+y5xMREREREZHxTSPzp/z3f/83x48fp62tjc9+9rND9rjRaJTPfOYzGIbB5s2buf/++/nOd77Dq6++yh//8R+zefNm/vVf/3XInk9ERERERETGP4X5U6677jomT5484OtbW1v54he/yIwZM/D7/ZSUlHD77beze/fuftdt3ryZ9vZ2brvtNpYtW9Z73DAMvv71rwPwox/9CMuyhuaFiIiIiIiIyLinMD8IR44cYdmyZXz/+99nxowZ/Mmf/Ak33XQTTz31FKtWreL111/vvbalpQWAqVOnnvU4BQUFFBYWUldXx9GjR0esfhERERERERnbtGZ+ED72sY/R3NzM008/zfXXX997/J577mH58uV86lOfYteuXQCUlpYCcOzYsbMeJxAI0NXVBcDBgweZPn36CFQvIiIiIiIiY51G5i/S9u3beeWVV7jrrrv6BXmAWbNm8alPfYq33nqrd7r9mjVryMvL45FHHmH79u39rv/bv/3b3tvd3d3DXruIiIiIiIiMDxqZv0ivvfYaAM3Nzfz93//9Wef379/f+33BggXk5OTw3e9+l09+8pOsXr2a97///ZSXl/PKK6+wdetW5syZw/79+3G73SP5MkRERERERGQMU5i/SJ2dnQA8+eSTPPnkk+e9LhwO997+xCc+QWVlJf/8z//Mo48+SjqdZvny5WzcuJF/+qd/Yv/+/b3T8UVERERERETeicL8RcrLywPgBz/4AV/4whcGfL8NGzawYcOGs45/9KMfxeVycdlllw1ZjSIiIiIiIjK+jbk18+l0mv/6r//iyiuvpKSkhIyMDCZPnsxtt93Go48+OuzPv3LlSgBeffXVS36szZs3c/z4cW688Uby8/Mv+fFERERERERkYhhTYb6rq4t169bx6U9/mpdffpmSkhIWLFhAMpnk0Ucf5Re/+MWw17BixQpWrlzJgw8+yC9/+cuzzpumyYsvvtjvWDAYPOu6xsZGPvnJT+LxePja1742bPWKiIiIiIjI+GNYlmU5XcRAmKbJlVdeyaZNm3jf+97H97//faqrq3vPnzx5kqNHj7J+/fpBPf5///d/s2nTJgDeeusttm3bxtq1a5kxYwYAt912G7fddhtgbzN39dVXU1dXx6pVq1i2bBkZGRmcOHGCV199lba2NmKxWO9jf/3rX+e+++5j3bp1lJWVUV9fz6OPPkokEuEnP/kJd9111yD/qYiIiIiIiMhENGbWzP/4xz9m06ZNXH311fz617/G5eo/qaC6urpfuL9YmzZt4mc/+1m/Y5s3b2bz5s0ATJkypTfMT506le3bt/Pd736XRx55hJ/+9Ke43W4qKipYv34973//+/s9zpo1a3jxxRd5/PHH6erqori4mJtuuom/+qu/YunSpYOuWURERERERCamMTMyP3fuXPbv38+mTZtYu3at0+WIiIiIiIiIOGZMhPlDhw4xa9YsioqKaG9v57HHHuPXv/41TU1NlJaWct111/HRj34Uv9/vdKkiIiIiIiIiw25MhPmHHnqID33oQ6xZs4apU6dy//33n3XNnDlzeOqpp5g8ebIDFYqIiIiIiIiMnDGxZr6pqQmAN954g1deeYVPfvKT3HPPPZSXl7Np0yY+/elPs3//fm6//Xa2bNly1np6gHg8Tjwe7/3ZNE06OzspLi7GMIwRey0iIiIiIiIy9lmWRU9PD5WVlefMoMNtTIT5cDgMQDKZ5IorruC//uu/es9de+21PPzwwyxdupStW7fy5JNP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", "text/plain": [ "

" ] @@ -68311,7 +2186,7 @@ "\n", "#initiate figure\n", "fig = plt.figure(constrained_layout=True,figsize=(10,7))\n", - "axi = fig.subplots(nrows=1, ncols=ncols,sharex=False,sharey=False)\n", + "axi = fig.subplots(nrows=1, ncols=1,sharex=False,sharey=False)\n", "\n", "\n", "#compute stats\n", diff --git a/202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb b/202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb index 1e16bdb..d3ed50e 100644 --- a/202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb +++ b/202403_winterstorms_projections_Europe/3_uncertainty-sensitivity_analyses.ipynb @@ -7,12 +7,12 @@ "source": [ "# Projections and uncertainties of future winter windstorm damage in Europe\n", "## Notebook 3: Uncertainty and sensitivity quantification\n", - "This notebook reproduces the results of the uncertainty and sensitivity analysis of the publication Projections and uncertainties of future winter windstorm damage in Europe. The hazard data must be pre-processed beforehand using the notebook 1. The CLIMADA package needs to be installed. See tutorial on https://github.com/CLIMADA-project/climada_python/blob/main/doc/guide/Guide_Installation.ipynb for guidance to install CLIMADA. See tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/1_main_climada.ipynb for guidance to use CLIMADA. Exposure data is loaded using LitPop (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb). The uncertainty and sensitivity analysis is done using the delta_impact submodule of the unsequa module (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_engine_unsequa.ipynb). The delta_impact module can be find under the feature/unsequa_delta_climate branch of the CLIMADA githbu project (https://github.com/CLIMADA-project/climada_python/blob/feature/unsequa_delta_climate/doc/tutorial/climada_entity_LitPop.ipynb).\n" + "This notebook reproduces the results of the uncertainty and sensitivity analysis of the publication Projections and uncertainties of future winter windstorm damage in Europe. The hazard data must be pre-processed beforehand using the notebook 1. The CLIMADA package needs to be installed. See tutorial on https://github.com/CLIMADA-project/climada_python/blob/main/doc/guide/Guide_Installation.ipynb for guidance to install CLIMADA. See tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/1_main_climada.ipynb for guidance to use CLIMADA. Exposure data is loaded using LitPop (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_entity_LitPop.ipynb). The uncertainty and sensitivity analysis is done using the delta_impact submodule of the unsequa module, available on the develop branch (see tutorial https://github.com/CLIMADA-project/climada_python/blob/main/doc/tutorial/climada_engine_unsequa.ipynb).\n" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "id": "c91b3d37-14bb-4155-b451-068f8f0c80d6", "metadata": { "execution": { @@ -26,12 +26,11 @@ }, "outputs": [ { - "name": "stdout", + "name": "stderr", "output_type": "stream", "text": [ - "The autotime extension is already loaded. To reload it, use:\n", - " %reload_ext autotime\n", - "time: 1.09 ms (started: 2023-01-04 11:52:15 +01:00)\n" + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/dask/dataframe/_pyarrow_compat.py:17: FutureWarning: Minimal version of pyarrow will soon be increased to 14.0.1. You are using 12.0.1. Please consider upgrading.\n", + " warnings.warn(\n" ] } ], @@ -42,8 +41,7 @@ "import scipy as sp\n", "import geopandas as gpd\n", "import seaborn as sns\n", - "import countryinfo\n", - "from timeit import default_timer as timer \n", + "from timeit import default_timer as timer\n", "\n", "#CLIMADA\n", "from climada.engine import Impact\n", @@ -51,13 +49,23 @@ "from climada.entity.impact_funcs import storm_europe\n", "from climada.hazard import Hazard\n", "from climada.engine.unsequa import InputVar, CalcImpact, CalcDeltaImpact\n", - "%load_ext autotime\n", - "idx = pd.IndexSlice" + "idx = pd.IndexSlice\n", + "\n", + "#custom\n", + "from constants import *\n", + "from functions_projUncWS import *\n", + "\n", + "import warnings\n", + "warnings.filterwarnings('ignore') #Ignore warnings for making the tutorial's pdf.\n", + "warnings.simplefilter('ignore')\n", + "import logging\n", + "from climada.util.config import LOGGER\n", + "LOGGER.setLevel(logging.ERROR) #Ignore CLIMADA warnings for making the tutorial's pdf." ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "3b641fa9-a62f-4602-b670-4ed631596b4e", "metadata": { "execution": { @@ -69,15 +77,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 965 µs (started: 2023-01-04 11:52:16 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "#plotting params\n", "import matplotlib.pyplot as plt\n", @@ -101,37 +101,7 @@ }, { "cell_type": "code", - "execution_count": 4, - "id": "380745ba-2457-4ce1-96d1-1ee62fe3e264", - "metadata": { - "execution": { - "iopub.execute_input": "2023-01-04T10:52:19.319272Z", - "iopub.status.busy": "2023-01-04T10:52:19.318981Z", - "iopub.status.idle": "2023-01-04T10:52:19.324916Z", - "shell.execute_reply": "2023-01-04T10:52:19.324523Z", - "shell.execute_reply.started": "2023-01-04T10:52:19.319248Z" - }, - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 3.49 ms (started: 2023-01-04 11:52:19 +01:00)\n" - ] - } - ], - "source": [ - "##function definition\n", - "from functions import *\n", - "from climada_functions import *\n", - "from constants import * " - ] - }, - { - "cell_type": "code", - "execution_count": 49, + "execution_count": 3, "id": "9574ab62-3db0-499b-a6c3-ad922bf47ff8", "metadata": { "execution": { @@ -142,22 +112,14 @@ "shell.execute_reply.started": "2023-01-09T08:59:43.109153Z" } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 3.89 ms (started: 2023-01-09 09:59:43 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ - "#setup folders and folder variables. \n", + "#setup folders and folder variables.\n", "# All these variables need to be defined correctly for the code to work.\n", "# The strings in these variables should point to existing folders on your computer.\n", - "project_folder = '/home/lseverino/MT/scripts MTP'\n", - "data_folder = '/home/lseverino/MT/scripts MTP/data/' #this folder will contain the netcdf files downloaded by this script\n", - "results_folder = '/home/lseverino/MT/scripts MTP/results2/' #this folder will contain results (e.g. climada impact data) \n", + "project_folder = '/Users/lseverino/Documents/Publi MT/Model code Proj.-unc.-WS-damage'\n", + "data_folder = project_folder+'/data/' #this folder will contain the netcdf files downloaded by this script\n", + "results_folder = project_folder+'/results/' #this folder will contain results (e.g. climada impact data)\n", " # produced by this script\n", "file_identifier = '_v01' # this string is added to all files written by this code" ] @@ -167,12 +129,13 @@ "id": "acc6f6eb-ca9a-4969-b5cc-2c3d73df22d3", "metadata": {}, "source": [ - "### Prepare data" + "### Prepare data\n", + "First define countries for regional assessments" ] }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 4, "id": "96d75ad9-fac4-4b7a-a058-d700eb4eca22", "metadata": { "execution": { @@ -184,36 +147,29 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 24.7 ms (started: 2023-01-09 10:00:44 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "##Prepare country lists for regional damage assessment\n", "\n", - "EU_countries = ['Andorra', 'Albania', 'Austria', 'Belgium', 'Bulgaria', 'Belarus', 'Czechia', 'Germany', \n", - " 'Denmark', 'Estonia', 'Finland', 'France', 'Greece', 'Hungary', 'Italy', 'Liechtenstein', 'Lithuania', \n", - " 'Luxembourg', 'Latvia', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Romania', \n", - " 'Sweden', 'Slovenia', 'Slovakia', 'San Marino', 'Ukraine', 'Bosnia and Herzegovina', 'Croatia', 'Moldova', \n", - " 'Monaco', 'Montenegro', 'Serbia', 'Spain', 'Switzerland', 'United Kingdom of Great Britain and Northern Ireland', 'Vatican City State', 'Ireland', \n", - " 'Moldova, Republic of', 'Kosovo', 'Macedonia, the former Yugoslav Republic of']#'United Kingdom','Czech Republic'\n", - "#regions \n", - "BI = ['United Kingdom of Great Britain and Northern Ireland','Ireland'] \n", + "EU_countries = ['Andorra', 'Albania', 'Austria', 'Belgium', 'Bulgaria', 'Belarus', 'Czechia', 'Germany',\n", + " 'Denmark', 'Estonia', 'Finland', 'France', 'Greece', 'Hungary', 'Italy', 'Liechtenstein', 'Lithuania',\n", + " 'Luxembourg', 'Latvia', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Romania',\n", + " 'Sweden', 'Slovenia', 'Slovakia', 'San Marino', 'Ukraine', 'Bosnia and Herzegovina', 'Croatia', 'Moldova',\n", + " 'Monaco', 'Montenegro', 'Serbia', 'Spain', 'Switzerland', 'United Kingdom of Great Britain and Northern Ireland', 'Vatican City State', 'Ireland',\n", + " 'Moldova, Republic of', 'Macedonia, the former Yugoslav Republic of']#'United Kingdom','Czech Republic'\n", + "#regions\n", + "BI = ['United Kingdom of Great Britain and Northern Ireland','Ireland']\n", "IP = ['Spain', 'Portugal','Andorra']\n", "WEU = ['France','Monaco','Netherlands','Luxembourg','Belgium']#'Kingdom of the Netherlands'\n", "CEU = ['Switzerland','Germany','Liechtenstein','Czechia', 'Austria']#'Czech Republic'\n", "SC = ['Denmark','Sweden','Finland','Norway','Estonia','Latvia','Lithuania']\n", "MED = ['Italy','Albania','Bosnia and Herzegovina','Croatia','Montenegro','Malta','Greece','San Marino',\n", - " 'Slovenia','Macedonia, the former Yugoslav Republic of','Bulgaria','Serbia','Kosovo']\n", + " 'Slovenia','Macedonia, the former Yugoslav Republic of','Bulgaria','Serbia']\n", "EEU = [ctr for ctr in EU_countries if ctr not in (BI+IP+WEU+CEU+SC+MED)] # eastern Europe\n", "\n", "\n", "reg_ctrnames_dict = {'BI':BI, 'IP':IP, 'WEU':WEU , 'CEU':CEU, 'SC':SC, 'MED':MED,'EEU':EEU, 'EU':EU_countries}\n", + "ltpop_info = pd.read_csv(data_folder+'_metadata_countries_v1_2.csv',sep=',') #load litpop metadata\n", "\n", "#construct dict with region ids to select regional exposure\n", "reg_ctrids_dict = {}\n", @@ -223,9 +179,17 @@ " reg_ctrids_dict[reg] = reg_ids" ] }, + { + "cell_type": "markdown", + "id": "048a556e", + "metadata": {}, + "source": [ + "Paths of the different exposure files are stored in a list. Exposure layers need to be generated for each parameterization of LitPop, as in section Prepare exposure data from notebook2." + ] + }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 5, "id": "e878fae2-4cee-4803-b4f7-420ca26fe464", "metadata": { "execution": { @@ -237,15 +201,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 1.55 ms (started: 2023-01-09 10:06:56 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "## Litpop files\n", "from climada.entity import LitPop\n", @@ -261,19 +217,25 @@ "nlist = [0.75,1,1.25]\n", "\n", "\n", - "\n", - "litpop_list = []\n", - "litpop_dict = {} #to store file names\n", + "litpop_list = [] #to store file names\n", + "litpop_filesdesc_list = [] #to store file description\n", "for m in mlist:\n", " for n in nlist:\n", - " expfn = \"_\".join([\"exp\",\"m\"+str(m).replace(\".\",\"-\"),\"n\"+str(n)])+expbn\n", - " litpop_dict[(m, n)] = results_folder+'exposure/'+expfn\n", + " expfn = \"_\".join([\"exp\",\"m\"+str(m).replace(\".\",\"-\"),\"n\"+str(n).replace(\".\",\"-\")])+expbn\n", " litpop_list.append(results_folder+'exposure/'+expfn)" ] }, + { + "cell_type": "markdown", + "id": "b749b919", + "metadata": {}, + "source": [ + "Hazard data needs to be loaded and store in a dictonary. One hazard data file for each of combination of the 14 GCMs, 5 SSPs, and 3 ensemble members needs to be prepared and saved using the damage calculation section of the notebook 2: 2_damage_calc.ipynb. " + ] + }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 6, "id": "816eba86-ca0b-4baf-83b4-71f6c4e62498", "metadata": { "execution": { @@ -285,21 +247,13 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 2.36 ms (started: 2023-01-09 10:06:58 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "## Hazard files\n", "#base name\n", "bn = 'SWM_br_day_EU_winE'\n", "\n", - "#preprocessing \n", + "#preprocessing\n", "gst_fact = 1.00\n", "qt = 0.98\n", "cut=1.5E5\n", @@ -307,27 +261,25 @@ "bias_corr = \"bias_corrWG10\"\n", "\n", "#naming\n", - "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cut,'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-')]\n", + "processings = [\"qt\"+str(qt)[-2:]+\"pst\",\"mask_abs\"+format(mask_abs,'.0f'),\"cutarea\"+format(cut,'.1E').replace(\"+0\",'').replace('.','-'),\"gst\"+format(gst_fact,'.2f').replace(\".\",'-'),bias_corr]\n", "bn_proc = make_fn(processings,bn)\n", "\n", - "#unc param to consider: GCMs, SSPs, and members (and impf type?)\n", "#modlist = ['CanESM5', 'CNRM-CM6-1', 'CNRM-ESM2-1', 'EC-Earth3-Veg', 'EC-Earth3-Veg-LR', 'IPSL-CM6A-LR', 'MIROC-ES2L', 'UKESM1-0-LL', 'MRI-ESM2-0', 'FGOALS-g3', 'ACCESS-ESM1-5', 'MIROC6', 'MPI-ESM1-2-LR', 'KACE-1-0-G']\n", - "modlist = ['CanESM5', 'IPSL-CM6A-LR']\n", + "modlist = modlist_allscen\n", "\n", "scenlist= ['ssp126','ssp245','ssp370','ssp585']\n", "nmems_max = 3\n", "memlist = [str(i) for i in np.arange(0,nmems_max)]\n", "impflist = ['Sw2010','CubEOT']\n", "impf_procdict = {'CubEOT':'scale_qt','Sw2010':'mask_qt'}\n", - "reglist = regions4\n", "\n", "haz_dict = {}\n", "for mod in modlist:\n", " for scen in scenlist+['historical']:\n", " for mem in memlist:\n", " for impf,impf_proc in impf_procdict.items():\n", - " haz_fn = make_fn(['haz',bias_corr,'nmem'+mem,scen,mod,impf_proc]+processings,bn,filetype='.h5')\n", - " haz_dict[(mod,scen,mem,impf)] = results.joinpath('hazards/memsep/'+scen+'/'+haz_fn)" + " haz_fn = make_fn(['haz','nmem'+mem,impf_proc,scen,mod]+processings,bn,filetype='.h5')\n", + " haz_dict[(mod,scen,mem,impf)] = results_folder+'hazard/'+haz_fn" ] }, { @@ -340,7 +292,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 7, "id": "8a8e8b2a-035a-4e1b-87d2-1f63a277f28d", "metadata": { "execution": { @@ -352,32 +304,18 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 10 ms (started: 2023-01-09 10:08:19 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "#Define the input variable for the loading files\n", "def haz_func_fut(modid, scenid, memid ,impfid=0, modlist=modlist, scenlist=scenlist, memlist=memlist,\n", " impflist=impflist, filename_dict=haz_dict):\n", - " \n", + "\n", " mod = modlist[int(modid)] #map variables\n", " scen = scenlist[int(scenid)]\n", " mem = memlist[int(memid)]\n", " impf = impflist[int(impfid)]\n", " filename = filename_dict[(mod,scen,mem,impf)]\n", - " global haz_base\n", - " if 'haz_base' in globals():\n", - " if isinstance(haz_base, Hazard):\n", - " if haz_base.tag.file_name != str(filename):\n", - " haz_base = Hazard.from_hdf5(filename)\n", - " else:\n", - " haz_base = Hazard.from_hdf5(filename)\n", + " haz_base = Hazard.from_hdf5(filename)\n", "\n", " haz = cp.deepcopy(haz_base)\n", " return haz\n", @@ -392,20 +330,13 @@ "\n", "def haz_func_past(modid, memid=0 ,impfid=0, modlist=modlist, memlist=memlist,\n", " impflist=impflist, filename_dict=haz_dict):\n", - " \n", + "\n", " mod = modlist[int(modid)] #map variables\n", " scen = 'historical'\n", " mem = memlist[int(memid)]\n", " impf = impflist[int(impfid)]\n", " filename = filename_dict[(mod,scen,mem,impf)]\n", - " global haz_base\n", - " if 'haz_base' in globals():\n", - " if isinstance(haz_base, Hazard):\n", - " if haz_base.tag.file_name != str(filename):\n", - " haz_base = Hazard.from_hdf5(filename)\n", - " else:\n", - " haz_base = Hazard.from_hdf5(filename)\n", - "\n", + " haz_base = Hazard.from_hdf5(filename)\n", " haz = cp.deepcopy(haz_base)\n", " return haz\n", "\n", @@ -415,7 +346,7 @@ "}\n", "haz_iv_past = InputVar(haz_func_past, haz_distr_past)\n", "\n", - "def impf_func(impfid=0, impflist=impflist, x_scale=1, y_scale=1, _id=1): \n", + "def impf_func(impfid=0, impflist=impflist, x_scale=1, y_scale=1, _id=1):\n", " impf = impflist[int(impfid)] #map variables\n", " x_scale = np.float64(x_scale)\n", " y_scale = np.float64(y_scale)\n", @@ -425,8 +356,8 @@ " imp_fun.id = _id\n", " imp_fun.intensity = imp_fun.intensity*x_scale #perturb intensity\n", " imp_fun.mdd = imp_fun.mdd*y_scale #perturb mdd\n", - " \n", - " \n", + "\n", + "\n", " elif impf == 'CubEOT':\n", " imp_fun = ImpactFunc()\n", " imp_fun.haz_type = 'WS'\n", @@ -440,10 +371,10 @@ " imp_fun.mdd = CubEOT_corr_fact*imp_fun.mdd #add correction factor\n", " imp_fun.intensity = imp_fun.intensity*x_scale #perturb intensity\n", " imp_fun.mdd = imp_fun.mdd*y_scale #perturb mdd\n", - " \n", + "\n", " else:\n", " raise ValueError('Unknown impact function.')\n", - " \n", + "\n", " imp_fun.check()\n", " impf_set = ImpactFuncSet()\n", " impf_set.append(imp_fun)\n", @@ -453,7 +384,7 @@ " \"impfid\": sp.stats.randint(low=0, high=len(impflist)),\n", " \"x_scale\": sp.stats.uniform(0.8, 0.4),\n", " \"y_scale\": sp.stats.uniform(0.8, 0.4) #with impf param uncertainty\n", - "} \n", + "}\n", "\n", "impf_iv = InputVar(impf_func, impf_distr)" ] @@ -468,7 +399,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 8, "id": "fa05fdda-f716-4e05-a4d0-6941b0bf39f9", "metadata": { "execution": { @@ -481,465 +412,74 @@ "tags": [] }, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:08:20,955 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,956 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,958 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,959 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,961 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,962 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,964 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:20,965 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, { "name": "stderr", "output_type": "stream", "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:08:27,799 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,800 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,802 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,802 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,804 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,805 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,806 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:27,807 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:08:35,719 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,721 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,722 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,723 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,724 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,725 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,726 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:35,727 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:08:44,179 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,180 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,181 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,183 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,184 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,185 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,186 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:44,187 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:08:52,340 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,341 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,343 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,343 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,344 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,346 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,347 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:08:52,348 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:09:04,184 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,186 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,187 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,189 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,190 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,191 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,193 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:04,194 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:09:12,369 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,370 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,371 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,372 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,373 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,374 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,376 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:12,377 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "2023-01-09 10:09:21,310 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,311 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter f_exp is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,313 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,315 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter x_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,316 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter y_scale is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,318 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter modid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,320 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter memid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n", - "2023-01-09 10:09:21,321 - climada.engine.unsequa.calc_base - WARNING - \n", - "\n", - "The input parameter impfid is shared among at least 2 input variables. Their uncertainty is thus computed with the same samples for this input paramter.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n", - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/scipy/stats/_discrete_distns.py:1035: RuntimeWarning: divide by zero encountered in true_divide\n", - " g2 = -6.0/5.0 * (d*d + 1.0) / (d*d - 1.0)\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 1min 22s (started: 2023-01-09 10:08:20 +01:00)\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/home/lseverino/.conda/envs/climada_env/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide\n", - " Y = (Y - Y.mean()) / Y.std()\n" + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n" ] } ], @@ -948,29 +488,21 @@ "\n", "\n", "#sampling params\n", - "N = 2**5\n", + "N = 2**5#2**11\n", "D = 7 #nb of param\n", "N_sample = N*(2*D+2)\n", + "reglist = reg_ctrids_dict.keys()\n", "\n", "res_dict = {} #dict to save results\n", "\n", "for reg in reglist:\n", - " \n", + "\n", " #need to define func here\n", - " def exp_func(f_exp=4, reg=reg, reg_dict=regids_dict ,filename_list=litpop_list):\n", - " #m = mlist[int(mid)] #map variables\n", - " #n = nlist[int(nid)]\n", - " #filename = filename_dict[(m,n)]\n", + " def exp_func(f_exp=4, reg=reg, reg_dict=reg_ctrids_dict ,filename_list=litpop_list):\n", " filename = filename_list[int(f_exp)]\n", - " global exp_base\n", - " if 'exp_base' in globals():\n", - " if isinstance(exp_base, Exposures):\n", - " if exp_base.tag.file_name != str(filename):\n", - " exp_base = Exposures.from_hdf5(filename)\n", - " else:\n", - " exp_base = Exposures.from_hdf5(filename)\n", + " exp_base = Exposures.from_hdf5(filename)\n", " if reg is not None:\n", - " reg_ids = regids_dict[reg]\n", + " reg_ids = reg_dict[reg]\n", " exp = sel_reg_exp(reg_ids,exp_base)\n", " else:\n", " exp = exp_base.copy()\n", @@ -978,37 +510,19 @@ "\n", " exp_distr = {\n", " 'f_exp': sp.stats.randint(low=0, high=len(litpop_list))}\n", - " \n", + "\n", " exp_iv = InputVar(exp_func, exp_distr)\n", - " \n", + "\n", " calc_imp = CalcDeltaImpact(exp_iv, impf_iv, haz_iv_past, exp_iv, impf_iv, haz_iv_fut)\n", - " \n", + "\n", " output_imp = calc_imp.make_sample(N=N) #sampling_kwargs={'skip_values': 2*N_sample}) #use N=100*(2*D+2)~1000\n", - "#\n", - " ##order samples\n", - " output_imp.order_samples(by=['f_exp','modid','scenid','memid','impfid'])\n", - " \n", - " \n", - " \n", + "\n", " #compute uncertainty\n", - " pool = Pool()\n", - " output_imp = calc_imp.uncertainty(output_imp,rp=[1,15,30],calc_eai_exp=False, calc_at_event=False,pool=pool)\n", - " pool.close() #Do not forget to close your pool!\n", - " pool.join()\n", - " pool.clear()\n", - " \n", - " #reorder samples back in place\n", - " idx = output_imp.samples_df.index.values\n", - " output_imp.samples_df.sort_index(inplace=True)\n", - " for metric in output_imp.uncertainty_metrics:\n", - " df = output_imp.__dict__[metric + '_unc_df']\n", - " df.index = idx\n", - " df.sort_index(inplace=True)\n", - " output_imp.__dict__[metric + '_unc_df'] = df\n", - " \n", + " output_imp = calc_imp.uncertainty(output_imp,rp=[1,15,30],calc_eai_exp=False, calc_at_event=False)#,pool=pool\n", + "\n", " #sensitivity calculation\n", " output_imp = calc_imp.sensitivity(output_imp)\n", - " \n", + "\n", " #save into dict\n", " res_dict[reg] = output_imp" ] @@ -1023,7 +537,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 9, "id": "e04a978c-d07c-4b97-a686-362654d46a57", "metadata": { "execution": { @@ -1035,15 +549,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 36.6 ms (started: 2023-01-09 10:09:47 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "## prepare dataframe for uncertainty distribution plots\n", "reg_unc_dict = {}\n", @@ -1054,14 +560,14 @@ " unc_dict[metric] = df\n", " unc_df = pd.concat(unc_dict,axis=1)\n", " unc_df.columns = unc_df.columns.droplevel(0)\n", - " reg_unc_dict[reg] = unc_df.drop('tot_value',axis=1)\n", + " reg_unc_dict[reg] = 100*unc_df #percentage value\n", "reg_unc_df = pd.concat(reg_unc_dict,axis=1,names=[\"region\",\"metric\"])\n", "stacked_df = pd.DataFrame(reg_unc_df.stack(level=[\"region\",\"metric\"]),columns=[\"value\"]).reset_index().drop('level_0',axis=1)\n" ] }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 10, "id": "071dd853-af00-4b4a-b06b-3357c0af49a4", "metadata": { "execution": { @@ -1076,20 +582,13 @@ "outputs": [ { "data": { - "image/png": "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8G//9m+49NJLi9rddddd+Pa3v12V1W018fjjj+NXv/oV3nrrLSSTSSxYsADnnXcePvKRj8DhcKCnp6dkzNozzzyDxsZGTd/RwxFHHIGLLroIn/3sZ6fiUqqK5557Dj/96U/x2muvIZlMoq2tDaeddhouu+wy1NTUKO2i0Sjuvvtu/PnPf0ZPTw98Ph8OO+wwXH755Vi/fv0MXkFpsDHvkksuwZe//OWi/b29vUoW6XPPPYd7770Xt956q+H3HXPMMbjzzjs1380gCAJCoRA2bNiAK664AqtWrary1UwOF154IZ5//nnD/V/4whdw+umnH5LvQjn35vvf/z7e9773FbX55je/iSeeeAJ/+9vfpvJUZyUEQcAtt9yC5cuX4/bbb1e2/+Uvf4HD4cC6devgdruxfv16PP744/joRz+qtHniiSewefPmOR8meMgQSQA47bTTcMkllwCQBET37duH73//++jt7VUGyEMRP/3pTxXTejabxY4dO/Bf//Vf2LlzJ377298WxXXMNmzevBmPPfYYRkZGUFdXp2x/7rnnEAqF8Oyzz2rai6KIbdu24WMf+xgGBgbQ0dGB//t//6/ud88FIm2E//iP/8Cvf/1rfOhDH8LHPvYxeL1ePP/88/jud7+Lf/7zn7j55puVtp///OeLqjAwhEKh6TnhacLTTz+NK664AmeffTYuuOACuN1uvP322/jRj36Ef/3rX7j33nvB8zwOHDiAT37yk4hGo7jooouwatUqxGIx/OY3v8H555+Pm266SXdSnU0ghOAvf/mLLpF87LHHira53W78/Oc/1/2uQvdb4Xh64MAB/OxnP8NHP/pR/OxnP8PGjRurcAXVw4YNG3TvAwC0tLQgk8kAOLTeBQar98aGPq644gp87Wtfw4033oiTTjoJr7/+Om677TZceOGFaGtrAwBcfvnl+PSnP40bbrgBJ598Mv74xz9i27ZtuGce6FwfUkSyoaFBoyC/adMmCIKAr3zlK+jt7VUe+KGGVatWaQjYEUccgfHxcdx888149dVXZ73qPqsksG3bNsXCkkql8PLLL+Oyyy7DLbfcgp07dyqZd++88w7Gx8exZcsWPPTQQ3C73bP+GsvFgw8+iF/+8pf4xje+oVkBH3XUUVi6dCmuu+46PPzww0q884IFC+bdPTDCT3/6Uxx99NH45je/qWzbsmULFi1a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\n", + "image/png": "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mwRBEARBEObRow2Iik/YrkNJEARBEARBEAQRrmzYsIF5mj179tR9DglKgiAIgiAIgiCICkavXr2YLuknCIKhoJskKAmCIAiCIAiCICooDGYwmqJSBuUhCIIgCIIgCIIIB8xaKc2eTxZKgiAIgiAIgiCICoq0goRRXn/9deTl5Rk+nwQlQRAEQRAEQRBEBSU+Ph7Tp083fP77779vSlCSyytBEARBEARBEEQFxOr5kwBZKAmCIAiCIAiCICocTz31FACYXuvz0UcfRXZ2tuHzSVASBEEQBEEQBEFUMN58800m6bz00kumzieXV4IgCIIgCIIgiDCnsLAQ586dg8PhYJouCUqCIAiCIAiCIIgwZdeuXbjllltQtWpVNGjQAFWrVkXv3r2xZ88eJumToCQIgiAIIuzweDxWZ4EgCMJy9u7di549e2LDhg1wu90QRREulwvr1q1Djx49sHfvXtPXIEFJEARBEERY8d1336F///64fPmy1VkhCIKwlGnTpqGgoAB2ux233nor/vnPf6JXr16w2+3Iz883tdyIBAXlIQiCIAgirJgzZw4AYPv27bjrrrsszg1BEIR1bNy4EYIgYMuWLejcubO8/Y8//kC3bt2wYcMG09cgCyVBEARBEGEJD+uzEQRBhJKHHnoIly5dCrg/Ly8PMTExuO6663y2d+7cGVFRUcjLyzOdBxKUBB566CEIgoBFixZZnRWCIAiCYAYJSoIgwp3FixejVatWeOeddzTnjjdt2hSFhYX45z//ic2bN+PEiRPYtGkThg0bhqKiIjRt2tR0Hrh0eR0/fjwuXrxodTZ0k5ycjPnz51udDYIgCIIgAAiCYHUWCIIgQsoNN9yAbdu24amnnsJHH32E//f//h+6desm73/wwQfxwgsvYNmyZVi2bJnPuYIgYOTIkabzwKWgvHjxItLPnYcYHW91VoJGcORanQXD1K1bF61atUJiYqLVWSEIgiAIgiAIIki2bt2Kjz/+GM899xz++usv9OjRAyNHjsRrr72G5ORkTJo0Cbt27cKKFSv8zh0yZAgmTZpkOg9cCkoAEKPjUdBxqNXZCJrYP7+yOguGmT17NmbPnm11NgiCIAiCIAiC0Mno0aMxePBgvPjii3jvvfewePFirFq1CjNnzsT//d//YdmyZfjtt9/w888/IyMjAzVr1sTtt9+Om2++mcn1uRWUBEEQBEEQZiCXV4IgKgsJCQl466238PDDD2P8+PHYsGGDjxvsrbfeiltvvTUk16agPByzf/9+TJ8+HTfeeCPq1q2LqKgo1K1bF4MGDcKWLVv8jne73fjmm28wZswYtGvXDomJiahSpQratGmDSZMmBVyPi0VQnoKCAnzxxRcYNmwYWrVqhfj4eMTHx6Njx46YNWtWqRGkLl68iHHjxqFevXqIiYlB69atMXv2bLhcLvTq1QuCIGD9+vV+5+Xk5GDSpElo3LgxYmJi0KRJE0yePBl5eXkUaIggCIKgoDwEQVQ62rdvj/Xr1+Ozzz5DnTp1ZDfY0aNHlxoN1gwkKDnm3//+N15++WUcPnwY1apVQ/v27eFyubBy5Ur07NkTS5Ys8Tn+3LlzGDBgAD755BNkZmaiefPmaNSoEVJTUzF37lx06dIFFy5cCEled+3aheHDh2P58uXIz89HmzZtUK9ePRw4cAAvvvgievbsiYKCAr/z/v77b3Tp0gULFizA5cuX0bZtW4iiiOeffx5DhgwJeL3s7GzcfPPNmDt3Ls6cOYOWLVsiLi4Oc+fOxS233IKioqKQ3CdBEARRcSBBSRBEZWX48OE4evQonn32WURERGDx4sVo2bIl3nnnHeZ1IwlKjnnsscewd+9eZGZm4uDBg9i1axcuXryIVatWITY2Fv/617+Qk5MjH1+1alUsWrQIly5dQnp6Onbt2oVDhw7h3LlzeOKJJ5CamoopU6aEJK8NGzbE0qVLkZmZiTNnzmDHjh04evQozpw5gyFDhmD37t3yQtPqe0xLS0Pnzp1x8uRJ7N69G0eOHMGGDRvw+++/a1piAeD555/Hnj170LRpU+zfvx979+7F/v37sW/fPly8eNEvihVBEARR+SCXV4IgKgOZmZl48cUX0a1bN7Ru3Ro9e/bEa6+9BpvNhjlz5uCvv/7CbbfdhqysLDz11FPo1KkTtm7dyuz6JCg5ZsiQIWjfvr3PNkEQ0L9/f/z73/9GdnY2Vq9eLe9LTEzEqFGjUL16dZ9zkpKSMH/+fFn0uVwu5nlt1KgR7rvvPsTH+0bmrVOnDhYvXoyoqCh8/vnnPvuOHDmC77//HpGRkVi6dCkaNGgg7+vRowfefPNNOJ1Ov2tlZWXho48+AuBde6dNmzbyvnbt2mHRokWa5xEEQRCVC7JQEgQR7pw/fx6dO3fGK6+8gm3btuHYsWPYvHkznn/+edx0003Iy8tD69atsXbtWnz99ddo2LAh/vzzT9x0003M3GApKA/npKWlYcmSJdi9ezcuX74su3JK63T+9ddfGD58uM85v/32G1avXo2jR48iJydHXuQ0KysL+fn5OHbsmI8IY4XH48Hq1auxdu1anDx5Erm5uXJjLggCjh07hvz8fFSpUgUA8PPPPwMAevXqhSZNmvilN2zYMDz++ON+rrIbN25EYWEhWrRoge7du/udJ6V36tQp1rdIEARBVCDIQkkQRLgzdepUuc8bExODatWqISMjA0VFRfjzzz/x+uuvY/r06QCAwYMH46677sJ//vMfvPHGG/jkk0/w7bffIiMjw1QeSFByzCeffILHHnsMhYWFAY+5cuWK/LmoqAhDhw7FqlWrSk1XeQ4rrl69irvuuqtM83lmZqYsKI8dOwYA6NChg+axMTExaNGiBfbu3euzvazzAO+EZBKUBEEQBEEQRDjzww8/QBAEzJ8/H+PGjYPdbkdRURFee+01TJ8+Hd9//70sKAEgNjYWs2bNwpgxY/Dkk0/ixx9/NJ0HcnnllBMnTuCRRx5BYWEhnnnmGezZswfZ2dnweDwQRREffPABAPi4dr766qtYtWqV7GaampqKwsJCiKIIURRla14o3EEnTJiArVu3olWrVli+fDnOnj0Lh8MhX7t+/fp+15Yiv1atWjVgulr7jJ5HEARBEARBEOFERkYGYmJi8Pjjj8NutwMAoqKi8NRTT8n7tWjatCm+++47n+lzRiELJacsXboUTqcTw4YNw+uvv+63/8yZM37bpDmKixYtwu233x7UOSxwuVxYunQpAOCbb75Bq1at/PafP3/e77y4uDgAQG5ubsC0lUGHzJ5HEARBEARBEOFE3bp1cebMGTz//PMYP348kpOTcfbsWcyePVveXxp33XWX6TyQhZJTUlNTAQDdunXT3P/XX3/pOicjIwNnz55llj8lly5dQl5eHqpXr+4nJgHvepput9tve8uWLQHAz6VVwuFwyO6tes4DgH379gWVd4IgCIIgCIKoqAwYMACiKOK1115DgwYNEBUVhSZNmmDBggUQBAGDBg0KeR5IUHJKbGwsAGiuG3n48GFN83Rp57zxxhuaoo4F0nWzs7M115rUWi4EAPr06QMAWLduHU6fPu23/6uvvtJM76abbkJMTAyOHj2qOWdzw4YNNH+SIAiCIAiCCHtefvlldOzYUZ5mpvzr3bs3nnzyyZDngQQlp9x0000AgHfffRd//vmnvP3o0aO47777EBUVFfCcZ555RnYHFUURixcvxuuvv46YmJiQ5DUpKQnt2rWDy+XC008/LUeidbvdeO211/DVV19p5rdly5bo168fnE4n7r//fqSnp8v7Nm/ejKeffhqRkZF+5yUmJmLs2LEAgAcffBBHjhyR9x08eBCjRo3SPI8gCIIgCIIgwomEhARs3boV77//Pu6//3707t0bw4cPx6effooff/wRERGhn+FIgpJTBgwYgK5duyIzMxOdO3dG27Zt0b59e7Ru3RoZGRmYOnWq3zkvvfQSoqOj8e2336J+/fro3LkzGjRogFGjRmHYsGG44YYbQpbf2bNnQxAE/O9//0PdunXRpUsX1KlTB1OmTMELL7wQ0H/7/fffR0pKCrZv347GjRujU6dOaN26NW666SbcdNNNuPHGGwFAnmQs8corr6Bjx444ceIE2rZti2uvvRYdOnTANddcg5o1a2Lw4MGa5xEEQRAEQRBEOBEdHY1HH30UX375JdauXYvPPvsMI0aMgM1WPlKP26A8giMXsX9+ZXU2gkZw5AKIZ5ZeREQE1qxZg6lTp2L58uU4fvw4ateujbFjx+Lll1/GmjVr/M7p1KkTNmzYgKlTp2Lr1q04fPgwWrRogSlTpuCJJ57ALbfcwix/au655x78+OOPePnll7Fnzx4cOXIE7dq1w3//+1+MGDECixcv1jyvQYMG2L59O6ZNm4Zvv/0WBw4cQEpKCl5++WVMmTJFng+qjtqakJCADRs24OWXX8bSpUtx+PBh1K1bF08//TReeukljB49WvM8giAIgiAIgiDYIYjSyvMmyM7ORmJiIrKyspCQkFDqsYWFhTh16hSaNGkS0AVz/PjxuHjxotlslTvJycmYP3++1dkIGzweD6pXr46srCxcuXIF1apVC/rc9u3bY//+/dizZw86duwY1DnBlE2CIAiCf3r27AkAmDx5Mvr162dxbgii8qFHGxDGkTzx6tSpYyr4Zr169XDhwgUIggCXy6X7fC4tlCTKCABYsWIFsrKy0LZtW11icseOHdi/f788t5MgCIIgCIIgwg3JLmjWPigF8TEKzaEkLOXChQuYM2eO36KrP/30Ex577DEAkP+ref75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2blzZ8Z5ssGOW7NmjY5vbj3WrVuHq666CpMnT0ZtbS2cTifa29tx9tln4+GHH1YUYVa7jtX+xo4dq/iMQseRpUuXguM4LFiwwPwvamF27dqF6667DlOmTEFNTQ1cLhc6OzsxZ84cfP/738fLL7+c9b1btmzBtddei2OOOQb19fVwOBxobm7GaaedhjvvvDPr/VUpyO/366+/Puexd911l+I6lbNgwYKCru2lS5fmfZ/H40F7eztOPvlk3HDDDdi4caPZX7us6BljaVw2H619Sv1JECK0htIEjjjiCDQ1NQEAkskk9u7diy1btmDLli14/PHHsXbt2gxjkDAPp9OJ448/HgCQSCSwfft2rF27FmvXrsXKlSvxpz/9aVSk9J44cSKam5uxf/9+rFu3Duecc07GMWvXrpX+/8Ybb+DCCy/MOOaNN94AINZaSr9u5de6Gs3NzTpbXxkMDQ1hyZIlePbZZwEA1dXVmDBhAlwuFz7//HOsWrUKq1atwo9//GO8/PLLmDp1qvRe+XWsRmtra9HbXym8+uqrOO+88xAMBmGz2TBmzBg0NTWhp6cHb775JtavX4/HHnsMBw8eVLwvkUjge9/7Hu69914kk0nY7XZ0d3fD6/Vi//79WL16NVavXo2f/OQnWLlyZUmKaZebJ598Er/61a9gs9lU969YsSLvOcaMGZNz7VG2ffL3RaNR9PT0YO3atXj99dfxm9/8BgsWLMCyZcvQ1dVVwDcZGegZY2lcNh/qU4LQBglKE7jpppsyvARvv/02zj77bHz++ee48cYbJQOTMJ+WlhaFUAKAZ555Bpdccglee+013HnnnfjBD35QptaVlvnz52PlypV44403sgpKlg6bCUe1Y9i50lG71gmRWCyG008/HevWrUNLSwt++ctf4sILL4TL5ZKO+fDDD3H33XfjkUcewSeffKIQlGrXMaGd/v5+XHzxxQgGgzjrrLNw7733KgRHb28vXnjhBdUx+etf/zqeffZZeL1e3Hbbbbj88svh8/mk/Tt37sQDDzyAu+++G++//37FC8pJkyZh69atWL16Nc4444yM/Vu3bsWmTZuk47JxxRVXZHghC0Htff39/fj973+PpUuXYs2aNZg5cyY2bdqEMWPGaD6/FdEzxtK4bD7UpwShDQp5LRLTp0/HzTffDABYvXp1mVsz+rj44ovxzW9+EwAU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", "text/plain": [ - "
" + "
" ] }, "metadata": {}, "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 1.22 s (started: 2023-01-09 10:09:52 +01:00)\n" - ] } ], "source": [ @@ -1115,7 +614,7 @@ "fig = plt.figure(figsize=(10,7))\n", "\n", "nrows = 2\n", - " \n", + "\n", "gridspec={'height_ratios':np.repeat([1/3,2/3],nrows/2)}\n", "axs = fig.subplots(nrows=nrows,ncols=1,sharey=False,sharex=True,gridspec_kw=gridspec)\n", "fig.subplots_adjust(hspace=0.1) # adjust space between axes\n", @@ -1167,14 +666,14 @@ " linestyle=\"none\", color='k', mec='k', mew=1, clip_on=False)\n", "ax1.plot([0, 1], [0, 0], transform=ax1.transAxes, **kwargs)\n", "ax2.plot([0, 1], [1, 1], transform=ax2.transAxes, **kwargs)\n", - " \n", + "\n", "if saving:\n", " fig.savefig(savelocation+savefileName,transparent=False,bbox_inches='tight')" ] }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 11, "id": "b8b7850a-c6b7-42dd-9617-dca5c69479e1", "metadata": { "execution": { @@ -1186,15 +685,7 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 75.5 ms (started: 2023-01-09 10:09:58 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "## prepare dataframe for sensitivity plots\n", "reg_sens_dict = {}\n", @@ -1209,13 +700,115 @@ " sens_dict[metric] = df\n", " sens_df = pd.concat(sens_dict,axis=1)\n", "\n", - " reg_sens_dict[reg] = sens_df.drop('tot_value',axis=1).droplevel(0,axis=1)\n", + " reg_sens_dict[reg] = sens_df.droplevel(0,axis=1)\n", "reg_sens_df = pd.concat(reg_sens_dict,axis=1,names=[\"region\",\"metric\"])\n" ] }, + { + "cell_type": "markdown", + "id": "155ba424", + "metadata": {}, + "source": [ + "## Plot sensitivity Europe" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "3f40348d", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n", + "/Users/lseverino/miniforge3/envs/climada_env/lib/python3.9/site-packages/pandas/core/dtypes/common.py:1636: DeprecationWarning: Converting `np.inexact` or `np.floating` to a dtype is deprecated. The current result is `float64` which is not strictly correct.\n", + " npdtype = np.dtype(dtype)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA90AAAKyCAYAAADIG729AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAACPSklEQVR4nOzdd3wU1f7/8fekh1QgJNJC6AREKVIkgCiIckERbAEVEWzXq6gIKIoYRa9Y4CJ6sQGCilhBo3hREVCaoIAIEpCeSJVASCE98/uD3+6XdTc9k7av5+OxD3bPnHPmM5nsks+eM2cM0zRNAQAAAACACudR1QEAAAAAAFBbkXQDAAAAAGARkm4AAAAAACxC0g0AAAAAgEVIugEAAAAAsAhJNwAAAAAAFiHpBgAAAADAIiTdAAAAAABYhKQbAAAAAACLkHS7icmTJ8swDBmGIS8vL+3du9e+LS4uzr7NMAxFRUWVaR9PPvmkwz527txZQdEDAAAAQM1E0u0GkpKSNGvWLPvrm266Sa1atarw/Tz00EMKDAyUJOXn52vSpEkVvg8AAAAAqElIut3AE088oaysLEmSYRh64oknLNlP/fr1de+999pfL1u2TCtXrrRkXwAAAABQE5B013JJSUn64IMP7K8vvfRSdejQwbL93X333Q6vX3jhBcv2BQAAAADVHUl3LffWW28pPz/f/vqWW26xdH+tW7fWJZdcYn/93Xffad++fZbuEwAAAACqK5LuWqygoEDz5s2zvzYMQzfeeGOJ22/ZskWxsbFq2LChfH191aJFCz300EM6efJkke1iY2Ptz03T1Ny5c0sfPAAAAADUAiTdtdi2bdt09OhR++vo6Gg1aNCgRG0XLFigHj166KOPPtKxY8eUk5OjAwcO6JVXXlHHjh2LXJm8T58+Dq//97//le0AAAAAAKCGI+muxVavXu3wukePHiVqd+zYMd15553Ky8srdPu1116rjIwMl9s7deokX19f++vffvtNp06dKlnQAAAAAFCLkHTXYps2bXJ4fdFFF5WoXXZ2tjw9PTV9+nRt3bpV33zzjXr16uVQZ9++ffrvf//rsr2Pj4/atWtnf22apn7++edSRg8AAAAANR9Jdy12/tRySSWeWi5J06dP16OPPqpOnTpp4MCBWrFihSIiIhzqvPfee4W2DwsLc3h97NixEu8bAAAAAGoLku5a7K+//nJ4Xa9evRK3HTNmjMNrf39/jRgxwqHs999/V1pamsv29evXd3h94sSJEu8bAAAAAGoLku5azDRNh9eGYZSoXd26dRUSEuJU3rx5c6f+C0umy7pvAAAAAKhNSLprsfDwcIfXycnJJWpXWIL890S6qLp/XzitNFPbAQAAAKC2IOmuxS644AKH18XdX9vm1KlTSklJcSo/ePCgw2vDMApNpv8+tf3vsQAAAACAOyDprsW6devm8Pq3334rcdv58+c7vM7MzNTixYsdytq3b6+goCCntjk5Odq1a5f9tWEYTrEAAAAAgDvwquoAYJ3LLrvM4fXfbyFWlMmTJysvL08DBw7UiRMn9PTTT+v48eMOdW677TaXbbdu3aqcnBz764suuqhUi7gBAAAAQG1B0l2Lde7cWREREfZkeefOnUpOTnZaWfzvPD09lZOTo0cffVSPPvqoyzrNmzfXv/71L5fb1qxZ4/B60KBBZYgeAAAAAGo+ppfXYp6enho7dqz9dUFBgT755JNi2zVp0kQvv/xyoYukhYeHKz4+XoGBgS63nz8N3TAM3XnnnaWMHAAAAABqB5LuWu7uu++Wh8f/neYPPvigRO0eeeQRrVmzRsOGDVN4eLh8fHwUFRWlcePGafv27brwwgtdtvvjjz+0ZcsW++sBAwaoZcuW5TsIAAAAAKihDNPVfaBQq9x22216//33JZ0bed6xY4fat29vyb4mTJigGTNm2F9///33uuKKKyzZFwAAAABUdyTdbiAxMVFt27ZVVlaWJGnkyJFatGhRhe8nOTlZUVFRSk9PlyQNHjxYX331VYXvBwAAAABqCrecXn7gwAG9/fbbuuuuu3TxxRfLy8tLhmHo2WefLVN/W7du1dSpU3XZZZcpLCxM3t7eCg8P16BBg7R06dJC2y1YsECGYRT5WL58eVkP0y4yMlIPPfSQ/fVHH32kvXv3lrvfv3vllVfsCbenp6defPHFCt8HAAAAANQkbjnS/dBDD+mVV15xKp82bZqmTJlSqr727dunVq1a2V83b95c9erV0/79+3X69GlJ0u2336758+c7XFstnUu677jjDoWHh6t169Yu+58xY4Z69OhRqpgAAAAAANWDW94yLCwsTEOGDFH37t3VrVs3zZ07V5999lmZ+jJNUw0bNtRDDz2k2267TQ0bNpR0bqXwOXPmaNy4cVq4cKEuueQS3X///S77GDRokBYsWFDWwwEAAAAAVFNumXT/fTT7ww8/LHNfTZo00d69e1WnTh2Hcg8PD91///36/fff9cYbb+jtt98uNOkGAAAAANRObnlNd0Xy8/NzSrjPN3DgQEnnbqUFAAAAAHAvbjnSXZlsK4b7+/sXWmfbtm0aOXKkjh07puDgYHXu3Fm33nprme5vXVBQoCNHjigoKEiGYZQ5bgAAAABA4UzTVFpamho1auS0ftf5SLot9vHHH0uSYmJiCq3z66+/6tdff7W//uKLLzRt2jQ9/fTTeuKJJ0q1vyNHjqhp06ZlihUAAAAAUDpJSUlq0qRJodtJui307bff6vPPP5ckTZw40Wl7aGioHnjgAcXGxqpVq1YKCQlRQkKCZs6cqffee09TpkxRSEhIkdeCZ2dnKzs72/7athh9UlKSgoODK/aAAAAAAACSpNTUVDVt2lRBQUFF1iPptkhiYqJuueUWSdJ9992nvn37OtW57rrrdN111zmUderUSe+++67q16+vWbNmacqUKbr99tsLPZHPP/+8nn76aafy4OBgkm4AAAAAsFhxl/WykJoFTp06pUGDBunkyZPq16+fZs6cWeo+nn76afn6+urMmTNauXJlofUmT56sM2fO2B9JSUnlCR0AAAAAUIFIuitYenq6/vGPf2jnzp3q2rWr4uPj5evrW+p+goOD1aFDB0nS3r17C63n6+trH9VmdBsAAAAAqheS7gqUnZ2toUOHauPGjWrfvr2WL19e7Pz+onh7e0uS8vLyKipEAAAAAEAlIumuIHl5ebrpppu0cuVKtWjRQt99953CwsLK3F9+fr52794tSUWuhAcAAAAAqL5IuiuAaZoaPXq04uPj1ahRI61YsUKNGjUqV5/z5s1TSkqKPD091a9fv4oJFAAAAABQqUi6S2jWrFmKiopSbGys07YHH3xQixYtUlhYmFasWKHmzZsX219qaqpGjBihTZs2OZTn5+fr7bff1oMPPihJGjt2rBo3blwxBwEAAAAAqFSGabuxsxtZt26dhg4dan+dnp6u7Oxs1alTR/7+/vbyrVu3qmnTppKkuLg4Pf3007rsssu0evVqe50NGzaoV69ekqSmTZsqMjKy0P2uXbvW/jwlJUV169aVdO5+3c2bN5eXl5f27NmjlJQUSdKgQYO0ZMkS+fn5lfjYUlNT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6XJfF110kaKiorR///5SXbN+vlGjRpW6zRdffCHp3JR+27T26oRrugEAAABA5+7THR4eLtM0dezYMe3fv1/e3t7q1q2b6tatW+J+GjdurBtvvFGffPKJWrVqpcsvv1z9+vVTnz591LNnT/sorisjRozQli1bdNlll+nLL79UUFBQuY6pZcuWTmUNGjQo0fb09HSH8u3bt0s6d535v//9b5f7O3nypKRzi5qV5Jr1v4uOji5V/bS0NB0+fFiS1LNnz1LvrzKQdAMAAACAzt2n+/wVtdetW6frrrtOEyZMUEREhG699dYS9/Xuu++qffv2mjt3rr799lv77cYaNGigSZMmOUz5Pt/evXslSW3bti13wi25Xvzt/NHgorabpulQfubMGUnS5s2bi91vZmZmqeK0CQgIKFX91NRU+/OQkJAy7dNqTC8HAAAAABdiYmL09ttvS5IefPBBhwSvOH5+foqLi9Off/6phIQEvfnmm7rmmmuUnJysiRMnFnrd8yeffKILLrhAb731lh566KGKOIwKExgYKOnc4nKmaRb56NevX6XEdP4XE7YvBaobkm4AAAAAKMR1112nnj176tSpU2VeIKxdu3a6++67FR8fb1/Z25bM/12bNm30/fffq0GDBnrllVf06KOPljn2ita+fXtJ0o4dO0rVzsrrrIODg+3T2H/66SfL9lMeJN0AAAAAUITHHntMkjR79myn65xLy3bd8ZEjRwqt0759e61YsUL16tXTiy++qKlTp5ZrnxVl+PDhks79HP4+9bwotnttl3XKeXGuu+46SbLfF726IekGAAAAgCJce+21io6O1unTp/X6668XW//777/XxIkTtXPnTofy9PR0vfTSS5KkLl26FNnHRRddpG+//VYhISGaNm1aoQuXVaZ77rlHLVq00KpVq3TLLbfo6NGjDtvT09P18ccfa/z48Q7ltnuSr1+/Xnl5eRUe18SJExUSEqLvvvtOY8eO1enTp+3bCgoK9PXXX+urr76q8P2WFEk3AAAAABTBMAxNmDBBkjRz5kxlZWUVWT8tLU0vv/yyOnTooPDwcHXr1k2dOnVSRESEFi1apJCQEP3nP/8pdr9du3bVN998o6CgID3xxBPluv91RQgMDNSyZcvUvHlzLV68WE2aNFH79u3Vs2dPtW3bVqGhobr55pu1fv16h3YDBw5U3bp1tXbtWkVGRqp3797q16+fpk+fXiFxRUZG6tNPP1VQUJDmz5+viIgIderUSRdddJGCg4M1ePBg/fLLLxWyr7Ig6QYAAACAYtx6661q1KiRjh07pvnz5xdZt0+fPpo9e7auueYaBQYGaufOnTp48KBatWqlSZMmadeuXcWOdNv06NFDX3/9tQICAvTII4/otddeq4jDKbN27dpp27Ztmj59urp166bDhw/r119/VU5Oji677DK9/PLL+vDDDx3aBAcH69tvv9WgQYOUnZ2tDRs26IcfftCuXbsqLK4BAwZox44duv/++9WsWTPt2rVLSUlJatmypSZOnKjbbrutwvZVWoZZmsn4qPZSU1MVEhKiM2fOKDg4uKrDASpVRkaGfVXN9PT0Ut9yAgAA1A5ZWVk6cOCAmjdvLj8/v6oOBzVIaX53Spp7MdINAAAAAIBFSLoBAAAAALAISTcAAAAAABYh6QYAAAAAwCIk3QAAAAAAWISkGwAAAAAAi5B0AwAAAABgEZJuAAAAAAAsQtINAAAAAIBFSLoBAAAAALAISTcAAAAAABYh6QYA1DgZGRkyDEOGYSgjI6OqwwEAACgUSTcAAAAAABYh6QYAAAAAwCIk3QAAAAAAWISkGwAAAAAAi5B0AwAAAAAK1bFjRxmGIX9/f6Wmppa4XU5OjsLCwmQYhpo2baqCgoIi6/fr18++UKrtERgYqMaNG+uyyy7ThAkTtGnTpvIeTqUj6QYAAAAAuPTrr79qx44dkqSsrCx9+umnJW779ddfKzk5WZL0559/avXq1SVq17RpU8XExCgmJkbt27eXv7+/1q5dqxkzZqhHjx66/PLLdejQoVIfS1XxquoAAAAAAKA6iXpsWVWHUCoHpw+2rO/33ntPkhQaGqqUlBS99957GjNmTJnbXnHFFcW2GzNmjOLi4hzKUlNTtWTJEsXFxWn16tXq3r27fvnlFzVt2rR0B1QFGOkGAAAAADjJz8/X4sWLJUmvvfaaPD099cMPPygxMbHYtqdPn9ayZee+vJgzZ44k6bPPPtPZs2fLFEtwcLBGjx6tLVu2qGPHjjpx4oRGjRpVpr4qG0k3AAAAAMDJihUrdPToUV1wwQWKjY3VFVdcIdM0tWjRomLbfvzxx8rOzla3bt00YsQItWnTRmlpafriiy/KFVO9evW0cOFCSdLq1av1008/lau/ykDSDQAAAABw8u6770qSbr75Znl6euqWW26R9H/TxkvSduTIkQ7/lqRtcTp37qwePXpIkn00vToj6QYAAAAAOEhPT9fnn38uSfZke/jw4fL391dCQoI2b95caNv9+/dr/fr18vT0VGxsrEMf3377rY4fP17u+Hr37i1J+vnnn8vdl9VIugEAbicjI8N+K5KMjIyqDgcAgGrHdv11q1at1K1bN0lSUFCQhgwZIqnoEWvbtssvv1wXXHCBJNn7Of868fKwLaB24sSJcvdlNZJuAAAAAIADW+JsmxZuYxuxXrx4sfLy8ly2ff/994tsWxFTzAMCAiRJaWlp5e7LaiTdAAAAAAC7w4cPa9WqVZKcE+dBgwapbt26OnHihL799lunths2bNDevXvl6+ur4cOHO2yLjY2Vp6entmzZop07d5YrxvT0dEnnVjWv7ki6AQAAAAB2ixYtUkFBgbp06aK2bds6bPPx8dGNN94oyfWIta1s8ODBCgkJcdgWERGh/v37F9q2NGy3LQsPDy9XP5XBq6oDAAAAAABUH7aEeMuWLTIMo9B6X3zxhVJTU+2jzTk5Ofroo48kSUuWLCmy7aJFi/Tvf/+7yDpFWbt2rSSpe/fuZWpfmUi6AQAAAACSpK1bt2rHjh0yDKPIUeTTp08rMzNTn332me644w5J527fderUKXl5eal+/fqFtj158qSSkpK0evVqXX755aWOccuWLfZVywcPHlzq9pWN6eUAAAAAAEn/N8rdt29fHTt2rNDHI4884lD//Oe33HJLkW1vuukmp7YlderUKd1+++2SpP79+9eIkW6SbgAAAACAw+28brvttiLr3nrrrZKk1atXKykpSadPn9ayZctK1fbTTz9VZmZmiWJLTU3VwoUL1aVLF+3YsUMXXHCBFixYUKK2VY3p5QAAAAAAfffddzp27Jj8/Px0ww03FFm3ffv26ty5s7Zu3apFixYpNDRUOTk5aty4cbFTxgcOHKjw8HCdOHFCX3zxhWJjYx22z58/XytWrJAk5ebm6tSpU9q/f78KCgoknbv/98KFC9WkSZNyHG3lIekGAAAAANine19zzTVOK4+7cuutt2rr1q167733FBoaKuncLcY8PIqeUO3l5aWbb75Zr776qt577z2npDspKUlJSUmSpDp16igkJEQxMTHq3r27br75ZnXr1q0MR1d1DNM0zaoOorIdOHBAK1as0KZNm7Rp0yb9/vvvys/P17Rp0zRlypQy97thwwZNnz5d69evV3p6upo3b64RI0Zo4sSJ8vPzK7RdQkKCnn32Wa1cuVKnT59W48aNNWzYME2ZMsX+y1tSqampCgkJ0ZkzZ2rEPeuAipSRkaHAwEBJ5+7dGBAQUMURwSrlPdf8rgBA7ZaVlaUDBw6oefPmRf4dDvxdaX53Spp7ueVI9yuvvKJXXnmlQvtctGiRbr/9duXn56tx48Zq2rSpduzYoalTp+rLL7/U6tWrVadOHad2q1at0uDBg5WZmakGDRqoQ4cO2rVrl2bMmKGlS5dq/fr1ioiIqNBYAQAAAACVwy0XUgsLC9OQIUP0zDPP6H//+5+uv/76cvV38OBBjR07Vvn5+XrxxReVlJSkLVu2aM+ePWrbtq1+/vlnTZo0yaldWlqabr75ZmVmZmrcuHE6fPiwNm/erMTERMXExGj//v0aO3ZsuWIDAAAAAFQdt0y6p0yZoi+//FJPPvmkrr76avsUw7J66aWXlJ2drYEDB2rixIn2G7w3a9ZM8+fPlyS99dZbOn78uEO7N954Q3/99Zeio6M1c+ZMeXt7S5Lq16+vDz74QF5eXlq2bJm2bNlSrvgAAAAAAFXDLZPuimSappYuXSpJLkele/XqpXbt2ik3N1dffPGFw7YlS5ZIkkaPHi1PT0+HbZGRkRowYICkc0vpAwAAAABqHpLuckpMTNTRo0clSTExMS7r2Mo3btxoL8vLy9PmzZtL3Q4AAAAAUHOQdJfTnj17JEm+vr5q1KiRyzotWrRwqCuduw48NzfXYXtJ2gEAAAAAag63XL28Ip0+fVqSFBoaar+W++/q1q3rUPfvz23bS9Lu77Kzs5WdnW1/nZqaWsLIAQAAAABWY6S7nLKysiRJPj4+hdbx9fWVJGVmZjq1K6qtq3Z/9/zzzyskJMT+aNq0acmDBwAAAABYiqS7nGw3TM/JySm0jm0k2t/f36ldUW1dtfu7yZMn68yZM/ZHUlJSyYMHAAAAAFiK6eXlZJsCnpKSItM0XU4xt00PP38a+fnPT58+rYYNG5ao3d/5+vraR8QBAAAAANULI93l1Lp1a0nnRqWPHDniss7+/fsd6kpSVFSU/b7ctu0laQcAAAAAqDlIusspMjJSF1xwgSRp3bp1LuvYynv06GEv8/LyUpcuXUrdDgAAAABQc5B0l5NhGBo2bJgkad68eU7b169fr127dsnb21vXXnutw7bhw4dLkhYsWKD8/HyHbYmJiVqxYoUk6frrr7cidAAAAACAxUi6S2jWrFmKiopSbGys07aJEyfKx8dH3377rV566SWZpilJOnTokMaMGSNJuvPOO+0j4jb33nuvwsLClJCQoPHjx9vv252cnKyRI0cqLy9PgwYNUteuXS0+OgAAAACAFdwy6V63bp3CwsLsjw8//FDSudtvnV9+/krgKSkpOnTokI4dO+bUX/PmzfX222/Lw8NDkyZNUtOmTdWlSxe1bt1au3fvVteuXfXSSy85tQsODtaHH34oPz8/zZ49W40bN9Yll1yiyMhIrVu3TlFRUZo/f751PwgAAAAAgKXcMunOzc1VcnKy/WG7NdfZs2cdyv8+5bsoo0aN0po1azRkyBBlZmZq586datGiheLi4rR27VoFBAS4bNe/f3/98ssvio2NlWEY2r59uyIiIjR+/Hht2bLFaXQcAAAAAFBzGKZtLjRqhdTUVIWEhOjMmTMKDg6u6nCASpWRkaHAwEBJUnp6eqFfdqHmK++55ncFAGq3rKwsHThwQM2bN5efn19Vh4MapDS/OyXNvdxypBsAAABA1cnIyJBhGDIMQxkZGVUdDipRZmamli5dqsmTJ6t///4KCQmRYRhq1apVVYdmGa+qDgAAAAAAqpW4kKqOoHTizlR1BCW2e/du+12c3AVJNwAAAACgUnh7e6tnz57q1q2bunfvrtzcXPsdn2orkm4AAAAAQKXo0KGDNmzYYH+9evXqqgumknBNNwAAAADAzna9vSR99tln6tu3r0JDQ2UYhg4ePChJ6tevnwzD0OrVq7Vp0yYNHjxY9erVU0BAgHr16qXPP/+86g6gmiHpBgAAAAA4eeGFF3TDDTfojz/+UJs2bdSgQQOnOmvWrFGfPn30448/qmXLlgoJCdGGDRs0bNgwzZw5swqirn5IugEAAAAATqZOnaq33npLR48e1aZNm3TkyBE1adLEoc4zzzyj4cOH69ixY/r55591+PBhzZ49W5L06KOPatu2bVURerVC0g0AAAAAcHLPPfforrvusk819/LykpeX47Jg9erV0zvvvKOAgABJ56amP/DAAxo+fLjy8vIY7RZJNwCginCPVgAAqrdRo0YVW2fs2LHy8/NzKr/vvvskSd98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afDgwYWOhBW1ANPJkyd13333qXHjxvLz81Pbtm01bdo05ebmFvuzq8kOHTqke+65Ry1atJCvr6+CgoLUokULDRs2TB9++KFT/cOHD2v8+PFq3769AgICFBISoo4dO2rChAnas2ePU/2zZ8/qhRde0CWXXKLg4GDVqVNHnTp10ksvvaTs7Gyn+ue/R8+cOaOHHnpIkZGR8vX1VatWrTRt2jTl5eU5tStuIbUffvhBAwYMUHBwsEJCQnT55Zfru+++K/0PrIZztZCaFe+38xeoM01Tr776qjp27Kg6deooPDxct912mxITEx3a2M69bQHMO+64w/6ePX8RJd7Hju68804ZhqErr7xSpmk6bZ86daoMw1DHjh1dvueKk5ycrAkTJqhdu3by8/NTQECAoqKidPXVV2vOnDku25w6dUpPPfWUOnfurODgYAUGBio6Olr33nuvtm7d6lB3x44deuqpp3TppZeqYcOG8vHxUcOGDTV8+HCtX7++1PFKpf/cqQl2794twzAUFhamnJycQut17NhRhmFo2bJlpd4H57rmKennZmmU5mf67LPPyjAMXXjhhcrKynLqa/78+TIMQ40aNVJycrK9/Pz/dzZt2qTBgwerXr16CggIUK9evfT555+XKfYqZwIVQJIpyZw9e7YpyWzSpIl58cUXm76+vqYks3379mZmZqY5btw4U5LZokULs0OHDqaXl5cpybzsssvMgoICp37nzJljGoZhSjLDw8PNSy65xAwNDTUlmX5+fuZXX33l1CY9Pd3s3r27Kck0DMO88MILzfbt25uGYZhdunQxY2NjTUnmO++849DuqaeeMiWZTz31lFOfL7zwgv0YGzZsaHbt2tUMDAw0fX19zWnTptmPobay6vyuXr3aDAkJMSWZ/v7+ZseOHc2mTZva9/fII484tbnssstMSeb06dNNf39/MzQ01Ozatau9n6CgIHPHjh3mxx9/bHp5eZnh4eFmly5dzDp16piSzAYNGpjHjh0r9Bj/7ujRo2aLFi1MSaaXl5fZqVMns3Xr1qYkc8iQIWbfvn1NSeaqVasq5GddXRw4cMAMCwszJZl16tQxO3bsaHbq1MmsV6+eKcm8+OKLHeqvWLHCDA4ONiWZ3t7e5kUXXWReeOGF9p/7399Xf/75p9m+fXv7z7VVq1ZmdHS0/Xemd+/e5tmzZx3a2N6jDz30kL1up06dzKioKPv5u/POO52O5Z133jElmbfffrvTtsWLF5seHh6mJLN+/frmJZdcYtarV8/08PAwp0+fbkoymzVrVs6fZs3QrFkzU5J54MABe5kV77cDBw7Yf67//Oc/TUlmZGSk2bVrV9PPz8/ebteuXfY28+bNM2NiYszw8HBTktm6dWszJibGjImJMe+//357Pd7HjtLS0uzH/Z///Mdh208//WR6enqaPj4+5q+//lrqvlNSUsyWLVuakkwfHx+zffv2ZpcuXczw8HDTMAwzJCTEqc2vv/5qNmrUyJRkenh4mO3btzc7depk/+z4+3u0f//+piQzNDTUjI6ONrt06WL/XPL09DQXLVrktI9Vq1YV+n9yWT53aopLL73UlGR+9tlnLrf/8ssvpiTzggsuMPPy8krVN+e6Zirp52ZJlfZnmpeXZ/+9fPDBBx36OnDggBkUFGRKMr/++muHbbb/d5555hnTx8fHDAwMNC+55BKzYcOG9s/4GTNmlOlnUpVIulEhbG+CgIAA84MPPrCXJyUlma1atTIlmdddd50ZEhJirlixwr79t99+s/8R//c33datW+1v5BdffNHMz883TdM0s7KyzPvuu8+UZIaEhJhHjhxxaPfwww/b/6DbsWOHvfzXX381GzdubHp7e5cq6d6yZYvp6elpGoZhvvbaa/bkMS0tzbz55pvt/blD0l2R5/fw4cNmvXr1TMMwzH//+99mVlaWfdu6devMxo0bm5LML7/80qGd7cPY29vbHD9+vJmdnW2a5rnfi6FDh5qSzH79+pmhoaHmjBkz7L83p0+ftn8ZM2nSpEKP8e+GDRtmSjK7dOliJiYm2su///57MygoyH7+a9sf6/fff7/9D6O0tDSHbQkJCeabb75pf33o0CF7EjZq1CgzOTnZvi0/P9/86quvzPj4eIeyXr16mZLM2NhYh6QsKSnJ7NOnjynJnDBhgsN+be9Rb29vs2/fvubhw4ft2+Lj401PT09TkpmQkODQrrCk+88//zQDAwNNSeZjjz1m5ubmmqZpmjk5OebDDz9sP7ck3RX7frMl3V5eXqa3t7e5ePFi+7aTJ0+aAwYMMCWZ3bt3d/qy7vbbb3f5+W3D+9jZunXrTE9PT9PPz8/+f2JGRob9S4cXXnihTP2+/PLLpiRz4MCBDu950zz3mfD3JP/MmTNmZGSkKcm8+uqrzaSkJIftP/74o/n+++87lH3yySfmb7/95lBWUFBgfv7552ZgYKAZHBxspqamOmwvLBEr6+dOTfH222+bksxrr73W5fYHHnigzMfHua7ZivvcLImy/kz37t1rBgQEmIZhmN999529L1v9f/7zn077sv2/4+XlZcbGxprp6emmaZ77fbAN/nh5eZXpy8KqRNKNCmH7Q+fv32SZpmm++eab9u1//2A2TdN87LHHTEnmuHHjHMpvueUWU5I5dOhQpzYFBQVmhw4dTEnmk08+aS9PTU21j7AsW7bMqd2SJUvssZQ06b711ltNSeaNN97o1F9mZqb9G0R3SLor8vyOHz/elGQ+/PDDLvf55ZdfmpLMK664wqHc9mHcuXNnpz/Id+/ebY/F1e/N8uXLTUnmRRddVOgxnm/Pnj32mRbnf4FjM3PmTHu72vbH+lVXXWVKMrdt21ZsXduXYP3793c5o+Hv4uPjTUlmt27d7Inu+Y4cOWIGBgaagYGBDt+a296j/v7+Tn/EmaZpDh8+3JRkzpw506G8sKR7ypQp9jhcueiii0i6LXi/2ZJuV58Lpmmax48ft494r1y50mFbWZJud34f20yePNmUZHbq1MnMzs4277nnHlOS2bdvX/sXJaVl6+OLL74oUf0XX3zRlGRGR0c7fMlaVrb3799HQAtLxMr6uVNTpKammgEBAaa3t7d54sQJh205OTn2UWNX74HicK5rtopIusvzM7X9ndi4cWPz1KlT5vPPP29KMtu0aWNmZGQ49WX7fyc8PNzMzMx02m77v37UqFFlPp6qwDXdqFBjx451KuvUqZP9+ZgxY5y2d+7cWZK0f/9+h/Jvv/1WkvTAAw84tTEMQ+PGjXOoJ527pvDs2bNq1qyZBg0a5NRu6NChaty4cQmOxDmOf/7zn07b/Pz8XB5TbVWR53fJkiWSzl1z6MrVV18tHx8frV+/3uV1urZrk87Xpk0b1alTp9BYC4ulMN9++61M01Tfvn3VoUMHp+133nmnfHx8StRXTdO0aVNJ0qeffuryWtDzffHFF5KkiRMnFno97fls53706NHy8nK+iUbDhg3VrVs3paena/PmzU7br776ajVp0sSpvFu3bpJKfn6/+eYbSa7f25J03333lagfd2DV++1f//qXU1l4eLhuuOEGSf93jsrDnd/HNk8//bQ6d+6sX3/9VUOGDNGbb76p4OBgvfvuu2Vezdj2GbF06VKXn9F/Z/ucePDBB+Xr61vi/SQmJmr69Om66aabdMUVV6h3797q3bu3PvroI0nStm3bStRPeT93qrugoCDdcMMNys3N1QcffOCwbdmyZTp58qQuueQSl++B4nCuUZ6f6d13360hQ4bo8OHDGjZsmJ566il5eXnp/ffft/8f4srYsWPl5+fnVG77v7ki/n+oTNwyDBWqZcuWTmUNGjSw/xscHFzo9vMXOUtJSdFff/0lSWrfvr3Lfdn+4/jjjz/sZbbn7dq1c/nHv4eHh9q0aaPDhw+X6HhSUlJ04sQJSVJ0dLTLOoWV10YVdX7T09PtizXdfffdRe4zKytLycnJioiIKDYW6dz91hMTE4uMtagF9c5n+30q7BwHBQWpcePGOnDgQIn6q0n+9a9/aeHChZo2bZreffddXX311erTp48uv/xyNWrUyF4vLS3N/n7q2bNnifrevn27JOn11193+uPQxvazd/VeLezch4eHS6q48+tO7+3iWPF+8/b2VqtWrVxus/3sz/98Lyt3fh/beHt76/3331fXrl3tiwTOnj1bzZo1K3Ofd9xxh1566SUtWLBA//vf/xw+I1q0aOFU37b4aUk/JyRp4cKFuvfee10uwmRz6tSpEvVV3s+dmmDMmDFauHChFi5cqAcffNBevnDhQkkqdDHJ4nCuUd6f6dy5c9WxY0f98MMPks4t8mb7orwwxf3ffPz4caWmprr827M6IulGhXL1jZUt+S3s2yzb9vNH087/I832h/Tf2ZKwtLQ0p3a2P/aKalcS58dRWJ+l6a+mq6jze/5q5uvWrSt2v7bbXRQXS3HxlGQU9nwl/X2qjX+sd+rUST/++KOeeuoprVy5Um+++abefPNN+0rIs2bNUnR0tFJTU+1tQkJCStS37fzv2LGj2Lquzn1AQIDLurYRu+JG5m2KO7/u9N4ujhXvt/r16xc6yurq872s3Pl9fL5WrVopMjJSf/zxh0JCQnT99deXq79GjRppw4YNevLJJ7Vs2TJ7siedS7ZmzpypSy+91F7f9lkRGhpaov737dunu+66S7m5uXrkkUd06623qmXLlgoMDJRhGJo7d659e0mU93OnJujbt69at26trVu3avv27erYsaNOnjypZcuWycfHRyNGjChTv5xrlPdnGhERoQ4dOmj16tXy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2dvb44cffkBsbKzBmBkzZuj0dMfGxqKgoEDabm5uRnJysixGoVB0+Zvj3/zmN7Ltu3fvIioqStoeMmSI3qHgxrC3t8emTZuwadMmvfutrKzwl7/8RdoOCQmBm5ub7DfdGzZswIYNG6Ttfv36wdHREfX19b2qW3uRkZFYs2aNtH3u3Dk8//zzshhPT89eTUZmKvb29li/fj2mT58u/cygrq4O6enpSE9P73Y+Tz/9NKysrNDc3CylZWZmIjMzU9quqqqCl5eXycokIiLjsaebiIioh6KiojpdLik4OBjr16/XSZ8zZw4mTZpk8Lhp06Zh5syZXZY/depUnSXLTG3btm0YOHCg3n1KpRK5ubnw9/eX0uzs7LBx40ZYWVnpPcbOzg67du2Ci4uLSeuZmZmJUaNGGdw/a9ash2ppq/DwcOTn5xu8th05OjrqTNjm4uKCpKSk+1omEREZj41uIiKiHlIoFPj444+xZ88eqNVqODs7w87ODr6+vli1ahWKiorg5OSkc5ylpSUOHjyIrKwseHt7w8bGBk5OTggNDcW2bduQn58PW1vbLstXKpU4duwYUlNT8dRTT+ksg2YKAQEBqKysxIIFCzB06FBYW1vDzc0NM2bMwL/+9S+9vfwRERE4deoUoqKi4ObmBisrKwwaNAjx8fE4ffq0WYaXu7i44NSpU3jrrbcwcuRIWFtbw9nZGSEhIdi6dSs2b97c5Szy91t4eDguXbqENWvWICwsDIMGDYKtrS2srKzg5uaG4OBgzJ8/H3v37sXVq1dlX260ee+99/C3v/0NgYGB6Nev330pk4iIjKMQ3Vkvg4iIiKBWq1FUVCRtz549G7m5uQ+uQiZWWFio0wPfNjyZiIiIeoY93URERERERERmwkY3ERERERERkZmw0U1ERERERERkJmx0ExEREREREZkJJ1IjIiIiIiIiMhP2dBMRERERERGZCRvdRERERERERGbCRjcRERERERGRmbDRTURERERERGQmbHQTERERERERmQkb3URERERERERmwkY3ERERERERkZmw0U1ERERERERkJmx0ExEREREREZnJ/wFWQ42slMcPAwAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "##Plots EU\n", + "#select and crop data\n", + "output_imp_cropped = cp.deepcopy(res_dict['EU'])\n", + "output_imp_cropped = calc_imp.sensitivity(output_imp_cropped)\n", + "keep = ['rp1','rp15','rp30']\n", + "output_imp_cropped.freq_curve_unc_df = output_imp_cropped.freq_curve_unc_df[keep]\n", + "output_imp_cropped.freq_curve_sens_df = output_imp_cropped.freq_curve_sens_df[['si','param','param2']+keep]\n", + "\n", + "\n", + "saving = False\n", + "salib_si = 'S1'\n", + "metrics = ['aai_agg','rp1','rp15','rp30']\n", + "params = output_imp_cropped.param_labels\n", + "#params_sel = ['modid','memid','scenid','impfid']\n", + "params_sel = ['modid','memid','scenid','impfid','x_scale','y_scale','f_exp']\n", + "#params_sel = ['modid','scenid','impfid','x_scale','y_scale','f_exp']\n", + "\n", + "\n", + "cols = ['tab:blue','tab:orange','tab:green','tab:red']\n", + "\n", + "salib_si_conf = 'S1_conf'\n", + "fig = plt.figure(figsize=(10,7))\n", + "ax = fig.subplots(nrows=1,ncols=1)\n", + "\n", + "df_S = output_imp_cropped.get_sensitivity(salib_si).set_index(\"param\")\n", + "df_S = df_S.loc[params_sel,metrics]\n", + "df_S.columns = ['AAD','rp1', 'rp15', 'rp30']\n", + "\n", + "df_S_conf = output_imp_cropped.get_sensitivity(salib_si_conf).set_index(\"param\")\n", + "df_S_conf = df_S_conf.loc[params_sel,metrics]\n", + "df_S_conf.columns = ['AAD','rp1', 'rp15', 'rp30']\n", + "\n", + "#if df_S_conf.empty:\n", + "\n", + "# df_S.plot(ax=ax, kind='bar', **kwargs)\n", + "df_S.plot(ax=ax,kind='bar', yerr=df_S_conf)\n", + "ax.set_xticklabels(params_sel, rotation=0)\n", + "ax.set_xlabel('Input parameter')\n", + "ax.set_ylabel(salib_si)\n", + "#title = 'a) '+salib_si + ' indices for EU'\n", + "title = '(b)'\n", + "ax.set_title(title,loc='left')\n", + "ax.legend(title='Risk metric',loc='upper right',fontsize=SMALL_SIZE,frameon=True,title_fontsize=SMALL_SIZE)\n", + "plt.tight_layout()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f4bd0672", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "6b9ce337", + "metadata": {}, + "source": [ + "## Plots sensitivity regional level" + ] + }, { "cell_type": "code", - "execution_count": 68, + "execution_count": 13, "id": "3789ffa6-3735-4a08-9ba1-70be6e0f7eb3", "metadata": { "execution": { @@ -1227,20 +820,12 @@ }, "tags": [] }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 20.8 ms (started: 2023-01-09 10:09:59 +01:00)\n" - ] - } - ], + "outputs": [], "source": [ "metrics = ['aai_agg','rp15']\n", "si_met = 'S1'\n", "idx = pd.IndexSlice\n", - " \n", + "\n", "ss_df = reg_sens_df.loc[:,idx[:,metrics]].query(\"si==@si_met\")\n", "ss_conf_df = reg_sens_df.loc[:,idx[:,metrics]].query(\"si==@si_met+'_conf'\")\n", "\n", @@ -1251,16 +836,20 @@ "#ss_df[ss_df<0] = 0\n", "\n", "#drop useless params\n", - "params = ['modid','scenid','memid','impfid','f_exp','x_scale','y_scale']\n", + "params = ['modid','memid','scenid','impfid','f_exp','x_scale','y_scale']\n", "keep = ['modid','memid','scenid','impfid']\n", "keep = params\n", "ss_df = ss_df.loc[keep].T\n", - "ss_conf_df = ss_conf_df.loc[keep].T" + "ss_conf_df = ss_conf_df.loc[keep].T\n", + "\n", + "##Rename aai_agg to AAD\n", + "ss_df.index = ss_df.index.set_levels([\"AAD\",'rp1', 'rp15', 'rp30'],level=1)\n", + "ss_conf_df.index = ss_conf_df.index.set_levels([\"AAD\",'rp1', 'rp15', 'rp30'],level=1)" ] }, { "cell_type": "code", - "execution_count": 69, + "execution_count": 14, "id": "4b5b67ba-4d96-4251-8d93-550785617cc1", "metadata": { "execution": { @@ -1273,62 +862,25 @@ "tags": [] }, "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n", - "/tmp/ipykernel_7674/1763842682.py:37: MatplotlibDeprecationWarning: \n", - "The is_first_col function was deprecated in Matplotlib 3.4 and will be removed two minor releases later. Use ax.get_subplotspec().is_first_col() instead.\n", - " if ax.is_first_col():\n" - ] - }, { "data": { "text/plain": [ "Text(0.0, 1.0, '(a)')" ] }, - "execution_count": 69, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" }, { "data": { - "image/png": "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T5+u119/Xb///rtCQkKUlJSkYsWKafLkydq3b58+//xzSdLUqVOVnJysKVOmGNezZ88effzxx5owYYJee+01bdu2Tc8//7yldhUAAAAwi11fjnj58mU9++yzqlWrlsLCwnTo0CGFhYXJyclJISEhWbaLiopS1apVNX36dJPySpUqGX8eNmyYoqOjNXnyZN28eVPTp0/XpUuX9MEHH1hsfwqTevXqqWTJkvrnn3/UqFGjHLVZvny5EhMTtWTJEpUsWVKS1LBhQz300EP69ttv9fjjj6tDhw7q0qWL3n//fXl6emrNmjWaMWOGypYta1xPfHy8Pv30U9WsWVOS5OXlpcGDB2vXrl1q3rx5nu8rAAAAYA67TsJWrlyplJQULViwQB4eHgoKClJSUpLCw8PVt29fubi4ZNouKipK9evXz/LD/44dO7Rz506tXr1afn5+kqT77rtP/fv316FDh+ToaPcDhAXSzp071ahRIxUvXlwpKSmSpPLly+v+++/X9u3b9fjjj0uSJkyYoIcfflgjR47UQw89pEceecRkPT4+PsYETJKCgoLk4uKi3bt3k4QBAADA5uw629i2bZsCAgLk4eFhLOvYsaNiY2N14MCBLNtFRUXJx8cny+Xbt29XqVKljAmYJLVo0UKenp7aunVr3nQeZouNjdXWrVtVv359k39//vmnLl68aKxXsmRJPfDAA0pLS1NQUFCG9ZQpU8bktYODg7y8vHT16lWL7wMAAABwN3Y9Enby5Em1aNHCpKxy5crGZY0bN87Q5vr16zpz5owOHz6shx56SNHR0apRo4ZGjx5t/MB+4sQJValSxaSdo6OjKlasqJMnT2b6wR6W5+npqcDAQA0fPjzDsqJFixp/3r17t7755hv5+PjovffeU/v27eXt7W1cfuckHGlpabpy5YpKlSplsb4DAAAAOWWzJCw5OVmnTp3Kcnnp0qUVHx9v8uFb+u/DeFaTaERFRclgMCg6OlqvvPKKnJyc9PHHH2vIkCFaunSpWrZsqevXr2dYb/q6czI5R0JCglJTU+9aL68Us9qWMnft2rVctUtOTlZqamqO2zds2FBbtmxRhQoV5OrqKklKTEzUyy+/rLZt26pMmTJKTEzU+PHj1bx5c7399tvq2bOnXn/9dePEHMnJyTpy5Ij++usvlStXTpK0ZcsWpaSkyNfXN9f7Ys9u3ryp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ihW67777JEkjRozQsWPHMt1esWLFVKdOHb355psZlrm6upqz2wAAAECWmJgDFrNjxw599tlnevnllzV27Fh98cUX2rZtW47abtmyRQEBAYqJiZGrq6sCAgI0YcIESdI///yjhg0bytnZWRs3bjRpN3HiRC1evFiHDx9WcnKyBg0aZEzAEhIStGfPHhkMhky32bhxY0VHR6tixYry9fWVr6+vGjRooGXLlmnTpk25PxAAAADAbRgJg0XcuHFDEyZMUPPmzfXYY49Jkj777DNNmDBBX331lYoUKZJt+4YNG8pgMCg0NFQDBw6Ui4uLli9fruLFi6tFixYqWbKknnrqKS1YsEDOzs5q0KCBvvvuO0VGRmrixIny9PSUk5OT3n33Xf3f//2frly5oiVLlujSpUtZjmo98cQTioiI0IABAzRo0CB5eXlp1apV+vHHH437AAAonG6/5xgA7hVJWD7QrXV1W3fBbLNmzdLZs2e1cOFCY9mkSZPUvXt3zZw5U6+++mq27b28vPThhx9qxowZGjt2rJKTk9WwYUMtXbrUeB/Y+PHj5e3trZUrV+rKlSuqVauWFi1aJF9fX0nSO++8o7lz52rQoEEqU6aMAgMD1bNnT73xxhs6f/68yWWM0q370FauXKnp06dr8uTJSkpKUq1atTR//nwFBQXl8RECAABAYeVgyOrarEIsMjJSdevWtXU3gBzJ6vc1ODhYEt/eAgAA2BtGwmBVBoNBqampd63n7MyvJgAAAAomPunCqnbt2qW+ffvetd7PP/+sSpUqWaFHAAAAgHWRhMGq6tevr88+++yu9cqWLWuF3gAAAADWRxIGq/L09DROnAEAAAAURjwnDAAAAACsiCQMAAAAAKyIJAwAAAAArIgkDAAAAACsiCQMAAAAAKyIJAwAAAAArIgp6vODIw623X4dg223b0E+Pj4aO3asQkJCbN0VAAAAFBKMhAEAAACAFZGEAQAAAIAVkYTBIqZNm6bmzZsrKSnJpHzAgAEaPnx4jtaxf/9+Pf300/L391fz5s01fPhwnTlzxrg8NTVVCxcuVMeOHeXn56du3bpp/fr1xuXx8fF688031a5dOzVo0EAtW7bUyy+/rLi4uCy3efnyZY0dO1bNmzeXv7+/hgwZotOnT5u59wAAAEDWSMJgEY8//riuXr2qX375xVh28eJF7dixQ4899thd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\n", + "image/png": "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DhzQihUrtP/vP9W6aRMtnT5NPTpeI0l6+r57tHT6NNufIbfcZNt/xG39tX7eHB1ft1Kbf5ur1T/NUMLff+qNN95QYGCgHnnhJaWkppbonO07dEgfff2t5n75qXYtXaR/587WrqWL1KxZMx04cEBvvPGGbdshQ4Zo6dKlttdLly61+1OlShU1aNBAsbGxSk5OdjibMCsrS9OmTZOkQmHxeXvdt09fffuDvvzoTW1ZuUh/zv9RW1fFqVP7q3Q0+ZiGPzhaVqvVbp+hd96qvxfO1t4tK7R6yS9a+usM7drwlyZ/8p4CAwM1fvx4paY6flDL7LkLZLGkaWXcz1q95BctWzBD33/5kW396Ifv1Yblvylp099asegn/fvvv7bPQlZWloYOHarc3FyHtSdOnKgaNWpoz549Wr16tfbu3avx48fn1R09Wnfeeac6d+6sgwcPatWqVTp06JDuuece5eTk6JlnnilU7/nnn9f06dPVsmVLrV27Vvv27bP1c++99+rA4SMa+PBjtu2fvm+Epn/4riSpSuXKdp+5pdOn2bZbvyVedz76pHwMH30wbqwWLVqkb775Rol//ak5n01UeFioHh73qtZtjnf4Pp9761298OB9OrzqL62Y/YOSlsXpypYtHW7rqXgoEFB2BQYGOhwDAAAArkagiSJ16tBFo+59xDbrz9/fX++8844CAwP1zz//6Pjx47Zt9+/frw8//FCSNGPGDHXv3t2uVtWqVTVmzBi7Zc8884ysVqs+//zzQrMwhw4dqgcffFApKSmaNGmSw/7uuece3X333bbLtv38/OTnV/xJxzf17K6mjewvBzYMQx06dFD//v11KjVVPy1cXOx6kpSdna0XRt2vHh3PXLZUpXJljRs3TpI0b968EtWT8oJP6cxMzIJ+/vlnJScnq3Xr1rrssstK3OuwO/vr5ht62ZZVrHCJPv/wdQUFBWrV2vX64y/7y5lv7N1dTRoXPmc9ruus/v37y2Kx6NeFcQ6Pl5OToy8/elON6te1LQsKOvMD720336CYWjXs9vHz89PQoUPVv39/JSQk6O+//3ZY28/PT19//bUiIyNtyx577DFVr15dBw4c0J49e/T5558rPDxckuTj46Px48crKChIK1as0LFjx2z7HTlyRG+//bYiIiI0Z84ctWjRwrYuODhY77//vi5v0VSr1m/Ugn9XyhJo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fP6NAAAATIwZmh5o5PAH5O/vrz+XLdF7771nd5+/rKwsffTpe/r+x28lSaPufcQlx4yOjtb9998vSerXr58WLFhgt37//v168cUX7ZZNmDBBhmHovvvu06RJkwrdezEhIUEvv/yyZsyYUeJ+YmrmPZ162d8r7e6PmO/Ktq0kSZO+mqb1G7fYlu9M2KXRo0fL39+/xMe8UHXq1JEkLVmy5JzbRUdHq3v37jp48KA+/PBDSRd+ubkk+fn5adKkSZo5c6Zt2bFjxzRs2DClp6erZcuWuuaaa2zrrrzySkl5Iej69etty7dv365hw4Y5dc7ya7/11lvatWuXbfnKlSs1ZMiQi/pwiapVq+qhhx5SVlaWunXrpri4OLv1VqtVK+L368HnXtfOIxnKDauq3LCqqliricLDw3XkaLK27EuxLS/455kx4xQYGKjX3v1Yb3/2re3vZnZQReWGVdX+VB99MGWWPvt+nt1+8sn73VNuSJTDunbbAmcJ9PdxOAZcreD3GyW5xzAAAABQUvxk44EubXSZ3hr/vvz9/TV16lR16dJF3a7vpK59OqhRyxiNfeU5SdJTjz+nzh27uOy4r776qvr27avDhw+rW7duqlatmtq2basaNWqoevXqeuGFF+y279mzp95//31lZGTo7rvvVoUKFdS6dWu1adNGVapUUd26dfXss886nLV3Pn16XKeAAH/9MHuuLrviWnW98XZ1/98d+vr7vHC0T/cuant5cx0/cVLte9ykyzv0UtvOfXRVlz46efKkhgwZ4pJzUhy33nqrJKl3795q1aqVOnbsqI4dO+rgwYOFts3vKzs7W61bt7Zd6n8hqlWrpjvuuEN33XWXmjRpog4dOqhx48ZatGiRKlSooE8//dTuMurevXurTZs2OnHihDp06KA2bdqoXbt2at26tY4dO+bUORs0aJBq166txMREtW7dWldeeaUaNWqktm3bqly5crr33os7m/Hll1/W7bffrsTERHXq1EnR0dG64oor1KJFC5UrV06dO3fW559/bveQIsMwdMMNN0iS2rdvrw4dOqhnz57q2bOnbZtmzZrpiy++UGBgoF5++WV16dJFAwcOVI8ePXTppZeqQYMGGj16tO3yfgAAAAAAUBiBpoe65X8DtOCnON1www2KjIzUjp07FL91iy4pd4n+d8Mt+vnH3/TQfY+59JiBgYGa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43UfKzy5nPNFO8Q5XwMAgAvADE3ABGrUqCFJ+uGHH857KcLs2bMlSY8//rhdmFmUGTNmSJIGDRpkF2bmi46OVps2bZSamqrVq1cXWt+9e3dVr1690PI2bfKCpoSEhPP2IEm//vqrJGnkyJEO1xechQqg+AiZAHgavq4BAABmaAImcN999+mrr77SSy+9pClTpqh79+5q3769OnXqZDczMiUlRfv27ZMktWvXrli1N2zYIEmaOHGivv32W4fbbNu2TZJstQuqW7euw30iIyMlSampqcXqI/8YjRs3dri+qOUAAMC7cK85AABAoAmYQIsWLfTHH3/ohRde0KJFi/TJJ5/ok08+kWEYuu666/TOO++ocePGOnXqlG2fcuWKdxnRyZN5lx9t3LjxvNuePn260LKiZkb4+ORNAC/uDxz5wWflypUdro+KiipWHQAAAAAA4Nm45BwwiXbt2unXX3/V8ePHNX/+fD355JOqXr26FixYoOuuu04nTpxQeHi4bfv8oPJ88u/J+dtvv9luqFzUn0GDBpXGW7Pr48iRIw7XHz58uNSODXgyLs0EAAAA4GkINAGTCQsLU7du3TR+/HjFx8erbt262rdvn+bNm6eIiAjb/Sz//vvvYtW79NJLJRVvhmZpatCggSQV+VT0LVu2XMx2AAAAAABAGUWgCZhYSEiImjZtKknav3+/JOmGG26QJL355pvFqtGvXz9J0ieffKL09HTXN1lMXbt2lZT3tHNHJk6ceDHbAQCUUP59Da1WK7OBAQAAUKoINAETGDlypL7//nulpaXZLf/jjz+0cOFCSVKrVq0k5T3dvFy5cvrtt980dOhQHT9+3LZ9bm6u5s6dq59//tm27MYbb1S7du0UHx+vPn36aMeOHXbHyMjI0C+//KIhQ4aU1tuTJI0YMUKhoaH6559/9Nxzzyk7O1uSlJWVpccff1ybNm0q1eMDAAAAAABzINAETGD58uXq37+/ypUrp0svvVRXXHGFateurQ4dOiglJUW33367OnXqJEmqWbOmfvjhB4WHh+uLL75QVFSUWrRooWbNmikiIkK9evXSqlWrbLV9fHw0Y8YMtWzZUr///rvq16+v+vXrq127drrssssUERGh3r17a+7cuaX6HqtXr2570NG4ceMUHR2ttm3bqkqVKnrrrbf00ksvlerxAQAAAACAORBoAibw9ttv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", "text/plain": [ - "
" + "
" ] }, "metadata": {}, "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "time: 1.29 s (started: 2023-01-09 10:10:00 +01:00)\n" - ] } ], "source": [ @@ -1340,7 +892,7 @@ "zones = df.index.levels[0]\n", "nplots = zones.size\n", "plots_width_ratios = [df.xs(zone).index.size for zone in zones]\n", - "fig, axes = plt.subplots(nrows=1, ncols=nplots, sharey=True, figsize=(14, 8),\n", + "fig, axes = plt.subplots(nrows=1, ncols=nplots, sharey=True, figsize=(16, 8),\n", " gridspec_kw = dict(width_ratios=plots_width_ratios, wspace=0))\n", "\n", "# Loop through array of axes to create grouped bar chart for each factory zone\n", @@ -1352,26 +904,27 @@ " for spine in ['top', 'left', 'right']:\n", " ax.spines[spine].set_visible(False)\n", " ax.spines['bottom'].set_alpha(alpha)\n", - " \n", + "\n", " # Set and place x labels for factory zones\n", " ax.set_xlabel(zone)\n", " ax.xaxis.set_label_coords(x=0.5, y=-0.2)\n", - " \n", + "\n", " # Format major tick labels for factory names: note that because this figure is\n", " # only about 10 inches wide, I choose to rewrite the long names on two lines.\n", " ticklabels = [name.replace(' ', '\\n') if len(name) > 10 else name\n", " for name in df.xs(zone).index]\n", " ax.set_xticklabels(ticklabels, rotation=0, ha='center')\n", " ax.tick_params(axis='both', length=0, pad=7)\n", - " \n", + "\n", " # Set and format minor tick marks for separation lines between zones: note\n", " # that except for the first subplot, only the right tick mark is drawn to avoid\n", " # duplicate overlapping lines so that when an alpha different from 1 is chosen\n", " # (like in this example) all the lines look the same\n", - " if ax.is_first_col():\n", + " if ax.get_subplotspec().is_first_col():\n", " ax.set_xticks([*ax.get_xlim()], minor=True)\n", " else:\n", " ax.set_xticks([ax.get_xlim()[1]], minor=True)\n", + "\n", " ax.tick_params(which='minor', length=55, width=0.8, color=[0, 0, 0, alpha])\n", " ax.set_ylabel(si_met)\n", "#fig.supxlabel('Regions')\n", @@ -1386,9 +939,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python [conda env:.conda-climada_env]", + "display_name": "climada_env", "language": "python", - "name": "conda-env-.conda-climada_env-py" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -1400,7 +953,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.12" + "version": "3.9.18" } }, "nbformat": 4, From aeacd3c3ee2258e2235de50b04a2416c69c05a54 Mon Sep 17 00:00:00 2001 From: luseverin <91593121+luseverin@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:52:09 +0200 Subject: [PATCH 5/5] Move function definition out of first notebook --- .../functions_projUncWS.py | 149 +++++++++++++++--- 1 file changed, 127 insertions(+), 22 deletions(-) diff --git a/202403_winterstorms_projections_Europe/functions_projUncWS.py b/202403_winterstorms_projections_Europe/functions_projUncWS.py index 6769512..3191344 100644 --- a/202403_winterstorms_projections_Europe/functions_projUncWS.py +++ b/202403_winterstorms_projections_Europe/functions_projUncWS.py @@ -5,15 +5,135 @@ import pandas as pd from scipy import sparse import cartopy.crs as ccrs -##from timeit import default_timer as timer -#from os import# mkdir, remove, rmdir - -#from climada.engine import Impact, ImpactCalc -#from climada.entity import ImpactFunc,ImpactFuncSet from climada.hazard import Hazard,Centroids +def read_sfc(filepath, datestart, dateend): + """Read in a time slice of a surface field from datestart to dateend. + Try using datetime64 and if that doesn't work decode times manually. + Args: + filepath (string) = directory where files are located + datestart (string) = start date for time slice + dateend (string) = end date for time slice + """ + + #First try opening and doing the select assuming everything is working ok with the time axis + try: + dat = \ + xr.open_mfdataset\ + (filepath, coords="minimal", join="override", decode_times=True, use_cftime=True).\ + sel(time=slice(datestart, dateend)) + try: + dat=dat.rename({"longitude":"lon", "latitude":"lat"}) #problematic coord names + print("changing longitude --> lon, latitude --> lat") + except: pass + + except: + dat = xr.open_mfdataset(filepath, coords="minimal", join="override", decode_times = False) + try: + dat=dat.rename({"longitude":"lon", "latitude":"lat"}) #problematic coord names + except: pass + + dat = xr.decode_cf(dat, use_cftime = True) + dat = dat.sel(time=slice(datestart, dateend)) + datetimeindex = dat.indexes['time'].to_datetimeindex() + dat['time'] = datetimeindex + print("Something's wierd about the time axis, decoding manually") + + return dat + +def read_field(filepath, datestart, dateend,latmin,latmax,lonmin,lonmax,plev): + """Read in a time slice from datestart to dateend and calculate the zonal mean. + Try using datetime64 and if that doesn't work decode times manually. + Args: + filepath (string) = path to files e.g., "/path/to/files/*.nc" + datestart (string) = start date for time slice + dateend (string) = end date for time slice + """ + + try: + dat = xr.open_mfdataset(filepath, coords="minimal", join="override", + decode_times=True, use_cftime=True).\ + sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax)) + + if len(plev) == 1: + dat = dat.sel(plev=plev,method="nearest", tolerance=1) #avoid issue for models with inaccurate plevs + else: + dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method="nearest" is not implemented for slices + + except: + print("Something's wierd about the time axis, decoding manually") + dat = xr.open_mfdataset(filepath, coords="minimal", join="override", + decode_times=False) + + dat=xr.decode_cf(dat, use_cftime=True) + + dat=dat.sel(time=slice(datestart, dateend),lat=slice(latmin,latmax),lon=slice(lonmin,lonmax)) + if len(plev) == 1: + dat = dat.sel(plev=plev,method="nearest", tolerance=1) #avoid issue for models with inaccurate plevs + else: + dat = dat.sel(plev=slice(plev[0]+1,plev[1]-1)) #manual tolerance of 1 because method="nearest" is not implemented for slices + + datetimeindex=dat.indexes['time'].to_datetimeindex() + dat['time'] = datetimeindex + + return dat + +def get_lat_lon_res(ds): + """Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. + Args: + ds (xr.dataset or xr.dataarry) = input dataset from which average lat and lon resolutions must be calculated + Ouputs: + latres, lonres = average latitudinal and longitudinal resolutions + """ + lat = ds.coords['lat'] + lon = ds.coords['lon'] + difflat = lat - lat.shift(lat=1) + latres = difflat.mean().to_numpy() + difflon = lon - lon.shift(lon=1) + lonres = difflon.mean().to_numpy() + return latres, lonres + +def def_domain(ds,min_lat,max_lat,min_lon,max_lon): + """Function that takes xr.dataset or xr.dataarry and box coordinates from a domain and crops the dataset or datarray to + the domain defined by the box coordinates. + Args: + ds (xr.dataset or xr.dataarry) = input dataset which lat and lon needs to be cropped + min_lat, max_lat = minimum and maximum latitudinal coordinates + min_lon, max_lon = minimum and maximum longitudinal coordinates + Ouputs: + ds = xr.dataset or xr.dataarry cropped to the input domain + """ + LatIndexer, LonIndexer = 'lat', 'lon' + ds = ds.loc[{LatIndexer: slice(min_lat, max_lat), + LonIndexer: slice(min_lon, max_lon)}] + return ds + +def norm_lon(ds): + """Function that takes xr.dataset or xr.dataarry and normalizes its longitude coordinate + Args: + ds (xr.dataset or xr.dataarry) = input dataset which lon coordinates needs to be normalized + + Ouputs: + ds = xr.dataset or xr.dataarry with normalized lon coordinates + """ + ds.coords['lon'] = (ds.coords['lon'] + 180) % 360 - 180 + return ds.sortby(ds.lon) + +def get_ONDJFM_day(ds, months=[1,2,3,10,11,12],timedim="day"): + """Function that takes xr.dataset or xr.dataarry and months of the year and returns a dataset corresponding to + the specified months + Args: + ds (xr.dataset or xr.dataarry) = input dataset from which monthly data needs to be selected + months = months which are requested, in ordinal format (1=January, 2=February, ...,12=December) + timedim = name of the temporal coordinate of the dataset + + Ouputs: + ds = xr.dataset or xr.dataarry corresponding to the months selected + """ + return ds.isel({timedim:ds[timedim].dt.month.isin(months)}) + ## Define functions -def set_centroids(da,stack=True,haztype='WS',timeres="day",plot=False, printout=False): +def set_centroids(da,stack=True,haztype='WS',timeres="day",plot=False): '''Function which takes a xarray.DataArray as an input and returns a climada.hazard object, with centroids corresponding to latitude and longitude of the DataArray.''' @@ -56,13 +176,8 @@ def set_centroids(da,stack=True,haztype='WS',timeres="day",plot=False, printout= haz.fraction = haz.intensity.copy() haz.fraction.data.fill(1) haz.centroids.set_meta_to_lat_lon() - haz.centroids.set_geometry_points() + #haz.centroids.set_geometry_points() haz.check() - if printout: - print('Lat resolution original: '+str(-latreso)+' ,rounded: '+str(-latres)+ - '\nLon resolution original: '+str(lonreso)+' ,rounded: '+str(lonres)) - print('lat: '+str(n_lat)+', lon: '+str(n_lon)) - print('Check centroids borders:', haz.centroids.total_bounds) if plot: haz.centroids.plot() @@ -75,16 +190,6 @@ def sel_reg_exp(reg_ids,exp): sel_exp.gdf = sel_exp.gdf.where(sel_exp.gdf['region_id'].isin(reg_ids)).dropna() return sel_exp -def get_lat_lon_res(ds): - '''Function to obtain the average lat and lon gridspacing from a dataset of a non regular model grid. ''' - lat = ds.coords['lat'] - lon = ds.coords['lon'] - difflat = lat - lat.shift(lat=1) - latres = difflat.mean().to_numpy() - difflon = lon - lon.shift(lon=1) - lonres = difflon.mean().to_numpy() - return latres, lonres - def make_fn(addlist,basename="",sep="_",filetype=''): """Function to facilitate the creation of file names that takes a list of strings addlist, a string basename, a string sep and a string filetype